/* --- RESET A ZÁKLAD --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-green: #0d2e1d;       /* Tmavě zelená z předlohy */
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-white: #ffffff;
    --text-gray: #a3b8ac;
    --brand-orange: #ff5e14;   /* Výrazná oranžová */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-green);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVIGACE --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13,46,29,0.9), rgba(13,46,29,0));
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
}

.logo span { color: var(--brand-orange); }

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--text-white); }

.auth-zone {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 9px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-primary:hover { background-color: rgba(255,255,255,0.2); }
.btn-secondary { color: var(--text-white); }

/* --- HERO SEKCE --- */
.hero-section {
    min-height: 100vh;
    padding: 140px 5% 50px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Horní nadpis */
.hero-top-headline {
    text-align: center;
    margin-bottom: -35px; 
    z-index: 10;
    position: relative;
}

.main-title {
    font-family: var(--font-serif);
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
}

.inline-switch {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 80px;
    height: 38px;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 0 6px;
    vertical-align: middle;
    margin: 0 10px;
}

.switch-dot {
    width: 26px;
    height: 26px;
    background-color: var(--brand-orange);
    border-radius: 50%;
}

.switch-arrow {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-right: 8px;
    font-weight: bold;
}

/* 2. Layout mřížky */
.hero-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1350px;
    align-items: center;
    margin-top: 20px;
}

/* LEVÝ SLOUPEC: Funnel text */
.column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bait-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.3;
}

.divider-line {
    width: 60px;
    height: 2px;
    background-color: var(--brand-orange);
    margin: 20px 0;
}

.bait-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
    max-width: 320px;
}

.bait-text b, .bait-text strong {
    color: var(--text-white);
}

/* STŘEDOVÝ SLOUPEC */
.column-center {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 40px; /* mezera nad oválem */
}

/* OVÁL */
.oval-container {
    width: 100%;
    max-width: 360px;
    height: 480px;
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

/* FOTO */
.oval-image {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    z-index: 1;

    transform: translate(-50%, -50%);
    animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
    0%,100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-18px);
    }
}

/* WORLD */
.oval-world-text {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 600;
    color: #0d2e1d;
    white-space: nowrap;
    z-index: 20;
    pointer-events: none;
}

/* SWAP IKONKA */
.swap-icon,
.swap-button,
.swap-circle {
    position: absolute;
    z-index: 10000 !important;
}

/* BADGE */
.floating-price-badge {
    position: absolute;
    left: calc(50% - 215px);
    top: 42%;
    transform: translateY(-50%);

    width: 86px;
    height: 86px;

    border-radius: 50%;
    background: #092215;
    border: 1px solid rgba(255,255,255,.12);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 10px;

    box-shadow: 0 12px 30px rgba(0,0,0,.35);

    z-index: 9999;
}

.price-lbl {
    font-size: .65rem;
    line-height: 1;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-val {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}
.floating-all-swaps-btn {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 18px 34px;
    min-width: 230px;

    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ff5a00);

    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;

    box-shadow: 0 16px 40px rgba(255,110,0,.35);

    z-index: 9999;

    transition: all .35s ease;
}

.floating-all-swaps-btn i,
.floating-all-swaps-btn .btn-arrow {
    transition: transform .35s ease;
}

.floating-all-swaps-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 22px 50px rgba(255,110,0,.45);
}

.floating-all-swaps-btn:hover i,
.floating-all-swaps-btn:hover .btn-arrow {
    transform: translateX(5px);
}
.floating-buy-btn {
    position: absolute;
    left: -30px; /* Více vlevo ven z kapsle */
    bottom: 18%;
    background-color: var(--brand-orange);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
    transition: transform 0.2s ease;
}

.floating-buy-btn:hover {
    transform: scale(1.05);
}

/* PRAVÝ SLOUPEC: Vyšší rámečky pro swapy */
.column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: -5px;
}

.swap-item-row {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 22px 18px; /* Výrazně zvětšené (vyšší) rámečky */
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.swap-item-row:hover {
    transform: translateX(-5px);
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
}

.swap-item-row img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    object-fit: cover;
}

.item-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.item-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    line-height: 1.4;
}

.item-meta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-orange);
}

/* RESPONSIVITA */
@media (max-width: 1024px) {
    .hero-top-headline { margin-bottom: 20px; }
    .main-title { font-size: 3rem; }
    .hero-layout-grid { grid-template-columns: 1fr; gap: 40px; }
    .column-left { align-items: center; text-align: center; }
    .floating-price-badge { left: 15%; }
    .floating-buy-btn { left: 18%; }
}
/* --- PLANT TINDER SEKCE STYLY (Světlý moderní styl z obrázku) --- */
.tinder-info-section {
    background-color: #f4f6f5; /* Světlé čisté pozadí z ukázky */
    color: #0d2e1d;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tinder-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tinder-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #0d2e1d;
    margin-bottom: 10px;
}

.tinder-subtitle {
    font-size: 1.05rem;
    color: #627a6d;
    font-weight: 500;
}

/* Třísloupcová symetrická mřížka */
.tinder-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1300px;
    align-items: center;
}

/* Karty s kytkami po stranách */
.tinder-plant-showcase {
    display: flex;
    justify-content: center;
    width: 100%;
}

.plant-card-bg {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 290px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.plant-card-bg img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.plant-card-meta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2e1d;
    margin-bottom: 4px;
}

.plant-card-loc {
    font-size: 0.85rem;
    color: #627a6d;
    font-weight: 600;
}

/* Středové menu s kroky a filtry */
.tinder-steps-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.step-pill {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 28px;
    border-radius: 40px;
    width: 100%;
    max-width: 440px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-icon { font-size: 1.2rem; }
.step-text { font-size: 0.9rem; font-weight: 600; color: #0d2e1d; }

/* Hlavní zářící oranžové tlačítko přesně podle předlohy */
.btn-orange-tinder {
    background-color: #ff5e14;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 0;
    width: 100%;
    max-width: 440px;
    border-radius: 40px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 94, 20, 0.35);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
    margin: 4px 0;
}

.btn-orange-tinder:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 35px rgba(255, 94, 20, 0.45);
}

.text-muted-pill {
    background-color: transparent;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: none;
}

.text-muted-pill .step-text { color: #627a6d; }

/* Responsivita pro menší obrazovky */
@media (max-width: 1024px) {
    .tinder-layout-grid { grid-template-columns: 1fr; gap: 40px; }
    .tinder-main-title { font-size: 2.6rem; }
    .left-plant { order: 2; }
    .tinder-steps-center { order: 1; }
    .right-plant { order: 3; }
}
/* --- AI CHATBOT BANNER STYLY (Verze bez fotky napravo) --- */
.ai-banner-section {
    width: 100%;
    padding: 60px 5%;
    background-color: #f4f6f5; 
    display: flex;
    justify-content: center;
}

.ai-banner-container {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(13, 46, 29, 0.95), rgba(24, 74, 49, 0.9)), 
                url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 32px; 
    padding: 60px;
    /* Změna na čistý dvousloupcový layout (50/50 rozložení) */
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden; /* Už nic nepřesahuje ven, čistý minimalistický box */
    box-shadow: 0 20px 50px rgba(13, 46, 29, 0.15);
}

/* Levá textová část */
.ai-banner-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
    z-index: 2;
}

.ai-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #ff5e14; 
}

.ai-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.ai-description {
    font-size: 0.95rem;
    color: #a3b8ac;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 360px;
}

.btn-ai-chat {
    background-color: #ffffff;
    color: #0d2e1d;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background-color 0.2s;
}

.btn-ai-chat:hover {
    transform: translateY(-2px);
    background-color: #f4f6f5;
}

/* Pravá strana: Karty vedle sebe */
.ai-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 2;
}

.ai-feature-card {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 35px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Stylování nových profi SVG ikon */
.ai-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 46, 29, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff5e14; /* Oranžová barva linek v ikonách */
}

.ai-card-icon svg {
    width: 24px;
    height: 24px;
}

.ai-feature-card h4 {
    color: #0d2e1d;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-feature-card p {
    color: #627a6d;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mobilní optimalizace */
@media (max-width: 992px) {
    .ai-banner-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .ai-title { font-size: 2.2rem; }
    .ai-cards-grid { grid-template-columns: 1fr; }
    .ai-description { max-width: 100%; }
}
/* --- TOP NABÍDKY SEKCE STYLY (Podle image_25e181.jpg) --- */
.products-swap-section {
    width: 100%;
    padding: 80px 5%;
    background-color: #f4f6f5; /* Světlý podklad sekce */
    display: flex;
    justify-content: center;
}

.products-container {
    width: 100%;
    max-width: 1200px;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #0d2e1d;
    margin-bottom: 10px;
}

.products-subtitle {
    font-size: 1.05rem;
    color: #627a6d;
    font-weight: 500;
}

/* Filtrační lišta */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.filter-pills {
    display: flex;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #627a6d;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn.active {
    background-color: #0d2e1d; /* Tmavé aktivní tlačítko z předlohy */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 46, 29, 0.15);
}

/* Dropdown pro výběr druhu */
.filter-select {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d2e1d;
    padding: 12px 24px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: border-color 0.2s;
}

.filter-select:focus {
    border-color: #ff5e14;
}

/* Grid s kartami */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Základní karta produktu */
.swap-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.swap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13, 46, 29, 0.07);
}

/* Zvýrazněná zelená karta (featured) přesně podle makety */
.swap-card.featured-card {
    background-color: #72b68c; /* Příjemný zelený tón pozadí z obrázku */
    border: none;
}

.swap-card.featured-card h3,
.swap-card.featured-card .card-loc,
.swap-card.featured-card .swap-demand {
    color: #ffffff;
}

.swap-card.featured-card .demand-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Vnitřní prvky karet */
.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ff5e14;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #627a6d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, color 0.2s;
    z-index: 2;
}

.wishlist-btn svg { width: 18px; height: 18px; fill: none; }
.wishlist-btn:hover { transform: scale(1.1); color: #ff5e14; }

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d2e1d;
    margin-bottom: 6px;
}

.card-loc {
    font-size: 0.85rem;
    color: #627a6d;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Spodní řádek akce */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.swap-demand {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d2e1d;
}

.demand-tag {
    background-color: rgba(13, 46, 29, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    color: #ff5e14;
    font-weight: 700;
}

/* Oranžové akční tlačítko pro ulovení */
.btn-hunt {
    background-color: #ff5e14;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hunt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.3);
}

/* Změna chování tlačítka na zelené kartě pro lepší kontrast */
.featured-card .btn-hunt {
    background-color: #ffffff;
    color: #0d2e1d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.featured-card .btn-hunt:hover {
    background-color: #f4f6f5;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responzivní zobrazení */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-main-title { font-size: 2.6rem; }
}

@media (max-width: 680px) {
    .products-grid { grid-template-columns: 1fr; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-pills { justify-content: center; }
    .filter-select { width: 100%; text-align: center; }
}
/* --- BLOG FUNNEL SEKCE STYLY (Podle image_25e980.jpg s výrazným zaoblením) --- */
.blog-funnel-section {
    width: 100%;
    padding: 80px 5%;
    background-color: #f4f6f5; /* Světlý podklad zachovávající kontinuitu */
    display: flex;
    justify-content: center;
}

.blog-container {
    width: 100%;
    max-width: 1200px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #0d2e1d;
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 1.05rem;
    color: #627a6d;
    font-weight: 500;
}

/* Grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Zaoblená karta s obrázkovým pozadím */
.blog-card {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 32px; /* Výrazné stylové zaoblení podle zadání */
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 46, 29, 0.08);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(13, 46, 29, 0.15);
}

/* Gradient překrytí zespodu pro skvělou čitelnost textu */
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 46, 29, 0.95) 20%, rgba(13, 46, 29, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

/* Štítky na kartách */
.blog-card-badge, .blog-card-badge-orange {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card-badge-orange {
    background-color: #ff5e14;
    color: #ffffff;
}

/* Obsah uvnitř karty */
.blog-card-content {
    color: #ffffff;
    width: 100%;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-card-content p {
    font-size: 0.85rem;
    color: #a3b8ac;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Elegantní zaoblené tlačítko */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0d2e1d;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-read-more:hover {
    background-color: #f4f6f5;
}

.btn-read-more .arrow {
    transition: transform 0.2s;
}

.btn-read-more:hover .arrow {
    transform: translateX(4px);
}

/* Responzivní zobrazení */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-main-title { font-size: 2.6rem; }
}

@media (max-width: 680px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { height: 380px; }
}
/* --- ZELENÁ SÍŤ / COMMUNITY GRID STYLY --- */
.social-grid-section {
    width: 100%;
    padding: 80px 5%;
    background-color: #f4f6f5; /* Kontinuita podkladu */
    display: flex;
    justify-content: center;
}

.social-container {
    width: 100%;
    max-width: 1200px;
}

/* Hlavička a texty sekce */
.social-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-badge {
    background-color: rgba(13, 46, 29, 0.05);
    color: #ff5e14;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.social-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #0d2e1d;
    margin-bottom: 15px;
    line-height: 1.2;
}

.social-subtitle {
    font-size: 1.05rem;
    color: #627a6d;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-join-network {
    background-color: #0d2e1d;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(13, 46, 29, 0.15);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-join-network:hover {
    transform: translateY(-2px);
    background-color: #14442a;
}

/* Asymetrický Masonry Grid přes Flexbox sloupce */
.social-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.social-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Jednotlivé karty / posty */
.social-item {
    position: relative;
    border-radius: 32px; /* Výrazné plynulé zaoblení z makety */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Různé výšky pro asymetrii (jako na image_25ece4.png) */
.post-tall { height: 480px; }
.post-medium { height: 380px; }
.post-short { height: 280px; }

/* Hover efekty */
.social-item:hover {
    transform: scale(1.02);
}

.social-item:hover img {
    transform: scale(1.05);
}

/* Overlay s informacemi o zájmu, ceně a řízcích */
.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 46, 29, 0.9) 0%, rgba(13, 46, 29, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0; /* Schované, ukáže se při hoveru */
    transition: opacity 0.3s ease;
}

.social-item:hover final, 
.social-item:hover .post-overlay {
    opacity: 1;
}

.post-user {
    font-size: 0.8rem;
    color: #ff5e14;
    font-weight: 700;
    margin-bottom: 4px;
}

.post-overlay h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.post-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.post-stats span {
    font-size: 0.85rem;
    color: #e2ebe6;
    font-weight: 600;
}

/* Mobilní responzivita */
@media (max-width: 992px) {
    .social-masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .social-main-title { font-size: 2.6rem; }
}

@media (max-width: 650px) {
    .social-masonry-grid { grid-template-columns: 1fr; }
    .post-tall, .post-medium, .post-short { height: 340px; } /* Na mobilu sjednotíme výšku pro lepší skrolování */
    .post-overlay { opacity: 1; background: linear-gradient(to top, rgba(13, 46, 29, 0.95) 30%, transparent 100%); } /* Na mobilu nechat overlay viditelný trvale */
}
/* --- SEKCE PROČ VYBRAT NÁS STYLY (Podle image_2646ba.jpg - TMÁVÁ VERZE) --- */
.why-us-section {
    width: 100%;
    padding: 100px 5%;
    background-color: #071b11; /* Temně zelené luxusní pozadí */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.why-us-container {
    width: 100%;
    max-width: 1200px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #ffffff; /* Zářivě bílá pro tmavý režim */
    margin-bottom: 12px;
}

.why-us-subtitle {
    font-size: 1.05rem;
    color: #a3b8ac; /* Jemná šalvějová pro perfektní čitelnost */
    font-weight: 500;
}

/* Třísloupcový symetrický layout */
.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-us-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Zarovnání textu: levý sloupec doprava k obrázku, pravý doleva k obrázku */
.left-column .benefit-item {
    text-align: right;
    align-items: flex-end;
}

.right-column .benefit-item {
    text-align: left;
    align-items: flex-start;
}

/* Blok jednotlivé výhody */
.benefit-item {
    display: flex;
    flex-direction: column;
    max-width: 340px;
    width: 100%;
}

/* Kruhové ikony upravené pro tmavé pozadí */
.benefit-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.05); /* Jemný průsvitný podklad */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Elegantní ohraničení */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ff5e14; /* Zářivá akcentová barva ze zbytku webu */
    transition: transform 0.3s ease, background-color 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15);
    background-color: #ff5e14;
    color: #ffffff;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff; /* Bílé nadpisy prvků */
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 0.88rem;
    color: #a3b8ac; /* Šalvějový čitelný text */
    line-height: 1.6;
}

/* Prostřední obrázek kytky */
.why-us-center-plant {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-center-plant img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)); /* Temnější stín, aby kytka vystoupila */
}

/* Mobilní a tabletové zobrazení */
@media (max-width: 992px) {
    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-center-plant {
        order: -1; /* Na mobilech skočí kytka nahoru pod nadpis */
    }
    
    .left-column .benefit-item,
    .right-column .benefit-item {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .why-us-column {
        gap: 40px;
    }
    
    .why-us-main-title {
        font-size: 2.5rem;
    }
}
/* --- PATIČKA / FOOTER STYLY (Podle image_26559e.png) --- */
.main-footer {
    width: 100%;
    background-color: #071b11; /* Shodné prémiové tmavé pozadí */
    padding: 80px 5% 30px 5%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
}

/* --- Horní část: Newsletter form --- */
.footer-newsletter {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.footer-newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-newsletter p {
    font-size: 0.95rem;
    color: #a3b8ac;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Newsletter vstupní pole a tlačítko */
.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 24px;
    border-radius: 30px; /* Zaoblení odpovídající vizuální identitě */
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.newsletter-input::placeholder {
    color: #627a6d;
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-submit {
    background-color: #ff5e14; /* Výrazný akcentní prvek z image_26559e.png */
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    flex-shrink: 0;
}

.newsletter-submit:hover {
    background-color: #e04f0f;
    transform: scale(1.05);
}

.newsletter-submit svg {
    width: 20px;
    height: 20px;
    transform: translate(-1px, 1px);
}

/* Horizontální linky dělící sekce footeru */
.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* --- Spodní třísloupcová mřížka --- */
.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr; /* Prostřední sloupec širší pro zachování symetrie */
    gap: 40px;
    padding: 50px 0;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Levé kontakty */
.footer-contacts {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a3b8ac;
}

.contact-address {
    margin-bottom: 15px;
}

.contact-phone, .contact-email {
    font-weight: 600;
    color: #ffffff;
}

/* Prostřední sloupec: Brand */
.footer-brand {
    text-align: center;
    align-items: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.brand-desc {
    font-size: 0.88rem;
    color: #a3b8ac;
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 25px;
}

/* Ikony sociálních sítí */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3b8ac;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
    background-color: #ff5e14;
    color: #ffffff;
    border-color: #ff5e14;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Pravý sloupec: Odkazy */
.footer-links {
    align-items: flex-end;
}

.links-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-links a {
    color: #a3b8ac;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff5e14;
}

/* --- Spodní lišta: Copyright --- */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 0.82rem;
    color: #627a6d;
}

.footer-copyright a {
    color: #a3b8ac;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-copyright a:hover {
    color: #ff5e14;
}

/* --- Mobilní a tabletová responzivita --- */
@media (max-width: 850px) {
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    
    .footer-brand {
        order: -1; /* Logo a sociální sítě skočí na mobilu nahoru */
    }
    
    .footer-links, .footer-links ul {
        align-items: center;
    }
    
    .footer-newsletter h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
        box-sizing: border-box;
    }
}