/* ==========================================================================
   1. RESET & DEFINIRE VARIABILE
   ========================================================================== */
:root {
    --primary-green: #2ecc71;
    --primary-green-hover: #27ae60;
    --dark-bg: #0f172a;
    --dark-overlay: rgba(15, 23, 42, 0.65);
    --text-color: #334155;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ==========================================================================
   2. NAVBAR & HEADER
   ========================================================================== */
.navbar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Landing page: logo mare, iar denumirea este mutată vizual în hero. */
.navbar-header .logo img {
    height: 120px;
}

.navbar-header .logo h3 {
    display: none;
}

.hero-content::before {
    content: 'Balta Boldești Grădiștea';
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Meniu mobil */
body.menu-open { overflow: hidden; }
@media (max-width: 992px) {
    .navbar-header .nav-toggle {
        display: flex !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        z-index: 1002 !important;
        width: 48px !important;
        height: 48px !important;
        padding: 8px !important;
        border: 0 !important;
        border-radius: 6px;
        background: rgba(15, 23, 42, .65) !important;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    .navbar-header .nav-toggle span { display: block; width: 26px; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
    .navbar-header .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .navbar-header .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .navbar-header .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .navbar-header .nav-menu { display: block !important; position: fixed !important; top: 0 !important; right: -320px !important; z-index: 1001 !important; width: min(300px, 85vw) !important; height: 100vh !important; padding: 105px 24px 30px !important; background: #0f172a !important; box-shadow: -10px 0 30px rgba(0,0,0,.35); transition: right .3s ease; }
    .navbar-header .nav-menu.active { right: 0 !important; }
    .navbar-header .nav-menu ul { display: flex !important; flex-direction: column !important; gap: 6px !important; }
    .navbar-header .nav-menu a { display: block; padding: 14px 12px; color: #fff; border-radius: 6px; }
    .navbar-header .nav-menu a:hover, .navbar-header .nav-menu a.active { color: var(--primary-green); background: rgba(255,255,255,.08); }
    .nav-overlay { position: fixed; inset: 0; z-index: 1000; visibility: hidden; opacity: 0; background: rgba(0,0,0,.6); transition: opacity .3s ease, visibility .3s ease; }
    .nav-overlay.active { visibility: visible; opacity: 1; }
}
@media (min-width: 993px) { .navbar-header .nav-toggle, .nav-overlay { display: none !important; } }

/* Adresa afișată în cardul de contact de pe landing page. */
.contact-info-card .contact-detail-item:first-of-type p {
    font-size: 0;
}
.contact-info-card .contact-detail-item:first-of-type p::after {
    content: 'Str. Pescărușului nr. 1, Comuna Boldești-Grădiștea';
    font-size: .94rem;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Button Styles */
.btn {
    display: inline-block;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-green-sm {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 14px;
    font-size: 0.8rem;
}

.btn-green-sm:hover {
    background-color: var(--primary-green-hover);
}

.btn-outline-sm {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 8px 14px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-sm:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.btn-green-lg {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-green-lg:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-outline-green {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.lang-select {
    color: var(--white);
    font-size: 0.8rem;
    margin-left: 10px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 4px;
}

/* ==========================================================================
   3. HERO SECTION + TYPING ANIMATION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Typing Effect Implementation */
.typing-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--primary-green);
    margin-left: auto;
    margin-right: auto;
    width: 0;
    animation: typing 4s steps(50, end) forwards, blink 0.75s infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-green) }
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   4. TITLURI SECTIUNI
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

.section-title p {
    color: #64748b;
    margin-top: 10px;
}

/* ==========================================================================
   5. SPECII PEȘTI
   ========================================================================== */
.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.species-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.species-card:hover {
    transform: translateY(-5px);
}

.species-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.species-card h3 {
    padding: 20px 20px 10px;
    color: var(--dark-bg);
}

.species-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #64748b;
}

/* Variantele fără imagini de pe pagina principală */
.species-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 38px 0 20px;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.species-group-title > i {
    color: var(--primary-green);
}

.species-group-title.warning-title,
.species-group-title.warning-title > i {
    color: #b45309;
}

.species-grid-no-img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.species-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.species-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.species-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.14);
    color: var(--primary-green-hover);
    font-size: 1.25rem;
}

.species-info h4 {
    margin-bottom: 6px;
    color: var(--dark-bg);
    font-size: 1.08rem;
}

.species-info p {
    color: #64748b;
    font-size: 0.94rem;
}

.species-box.protected {
    border-color: #fcd34d;
    background: #fffbeb;
}

.species-icon.protected-icon {
    background: #fef3c7;
    color: #b45309;
}

/* ==========================================================================
   5.1 CONTACT & LOCAȚIE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: stretch;
}

.contact-info-card,
.contact-map-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.contact-info-card {
    padding: 34px;
}

.contact-info-card > h3 {
    margin-bottom: 6px;
    color: var(--dark-bg);
    font-size: 1.45rem;
}

.contact-subtitle {
    margin-bottom: 26px;
    color: #64748b;
}

.contact-detail-item {
    display: flex;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid var(--border-color);
}

.contact-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.14);
    color: var(--primary-green-hover);
}

.contact-detail-item h4 {
    margin-bottom: 3px;
    color: var(--dark-bg);
    font-size: 1rem;
}

.contact-detail-item p {
    color: #64748b;
    font-size: 0.94rem;
}

.contact-detail-item a {
    color: var(--primary-green-hover);
    font-weight: 600;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
}

/* ==========================================================================
   6. TARIFE PREVIEW
   ========================================================================== */
.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    width: 100%;
    max-width: 360px;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

.pricing-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e2e8f0;
    color: var(--dark-bg);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-card.featured .badge {
    background: var(--primary-green);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-card li i {
    color: var(--primary-green);
    margin-right: 8px;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.link-more {
    color: var(--primary-green-hover);
    font-weight: 600;
}

/* ==========================================================================
   7. GALERIE PREVIEW
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark-bg);
    color: #94a3b8;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e293b;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.company-info {
    margin-top: 15px;
    font-size: 0.85rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary-green);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   9. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none; /* Aici se poate adăuga un burger menu ulterior */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-card iframe {
        min-height: 440px;
    }

    .typing-title {
        font-size: 1.8rem;
        white-space: normal;
        border-right: none;
        animation: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: auto;
        padding: 120px 20px 60px;
    }
    
    .nav-actions {
        display: none;
    }

    .section-padding {
        padding: 60px 0;
    }

    .species-group-title {
        align-items: flex-start;
        font-size: 1.05rem;
    }

    .species-box,
    .contact-info-card {
        padding: 20px;
    }

    .contact-map-card iframe {
        min-height: 360px;
    }
}

.legal-links {
    margin-top: 8px;
}

.legal-links a {
    color: #cbd5e1;
}

.legal-links a:hover {
    color: var(--primary-green);
}

.rules-list { max-width: 950px; margin: 0 auto 45px; }
.rules-list li { margin: 14px 0; padding: 14px 18px; background: #f8fafc; border-left: 3px solid var(--primary-green); border-radius: 4px; }
.rules-list i { margin-right: 8px; }

/* Pagini interne: aceste stiluri erau anterior definite doar în fișierele HTML. */
.page-hero {
    position: relative;
    min-height: 280px;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--white);
    text-align: center;
    background: url('images/hero-bg.jpg') center / cover no-repeat;
}
.page-hero h1 { margin-bottom: 10px; font-size: 2.2rem; font-weight: 700; }
.page-hero p { color: #e2e8f0; font-size: 1.1rem; }
.pricing-desc { margin-bottom: 20px; color: #64748b; font-size: .88rem; }
.pricing-features { margin-bottom: 25px; padding-top: 15px; border-top: 1px solid #e2e8f0; text-align: left; }
.info-box-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin: 50px 0; }
.info-box { display: flex; gap: 20px; align-items: flex-start; padding: 25px; border: 1px solid #e2e8f0; border-radius: 8px; background: #f8fafc; }
.info-icon { display: grid; flex: 0 0 50px; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--white); background: var(--primary-green); font-size: 1.3rem; }
.info-box h4 { margin-bottom: 8px; color: var(--dark-bg); font-size: 1.1rem; }
.info-box p { color: #64748b; font-size: .9rem; }

/* Design regulament */
.rules-intro-card { display: flex; gap: 20px; align-items: center; margin-bottom: 40px; padding: 25px; border: 1px solid #fef08a; border-left: 5px solid #eab308; border-radius: 8px; background: #fefce8; }
.intro-icon { color: #ca8a04; font-size: 2rem; }
.rules-intro-card h3 { margin-bottom: 5px; color: #854d0e; }
.rules-intro-card p { color: #713f12; font-size: .95rem; }
.rules-category { overflow: hidden; margin-bottom: 30px; border: 1px solid #e2e8f0; border-radius: 10px; background: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,.03); }
.rules-category.border-danger { border-color: #fecaca; }
.rules-header { display: flex; gap: 15px; align-items: center; padding: 15px 25px; color: var(--white); background: var(--dark-bg); }
.rules-header.bg-danger { background: #991b1b; }.rules-header i { color: var(--primary-green); font-size: 1.3rem; }.rules-header.bg-danger i { color: #fca5a5; }.rules-header h2 { font-size: 1.25rem; font-weight: 600; }
.rules-category .rules-list { max-width: none; margin: 0; padding: 25px; }.rules-category .rules-list li { position: relative; margin: 0 0 15px; padding: 0 0 0 25px; border: 0; border-radius: 0; background: transparent; color: #334155; font-size: .95rem; line-height: 1.6; }.rules-category .rules-list li:last-child { margin-bottom: 0; }.rules-category .rules-list li i { position: absolute; top: 4px; left: 0; color: var(--primary-green); }.rules-category .rules-list .text-danger { color: #dc2626; }.rule-prohibition { color: #991b1b; font-weight: 600; }
@media (max-width: 600px) { .rules-intro-card { flex-direction: column; align-items: flex-start; } }
/* Containerul principal pe 2 coloane */
.media-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% video, 50% imagini */
    gap: 20px;
    align-items: stretch; /* Le obligă să aibă aceeași înălțime totală */
}

/* Coloana Dreapta - Cele 4 imagini una sub alta */
.media-images-col {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Spațiu între poze */
}

.gallery-card {
    width: 100%;
    aspect-ratio: 16 / 9; /* Păstrează proporția ideală/naturală a pozelor landscape */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

/* Coloana Stânga - Video (se adaptează la înălțimea grupului de poze) */
.media-video-col {
    width: 100%;
    height: 100%; /* Ocupă fix înălțimea dictated de cele 4 poze + gap-uri */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Umple cadrul perfect pe înălțime fără să deformeze clipul */
    display: block;
    border-radius: 12px;
}

/* Responsivitate (Mobil / Tablete) */
@media (max-width: 992px) {
    .media-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .media-video-col {
        height: 400px;
    }

    .media-images-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Pe mobil le pune 2x2 */
        gap: 10px;
    }

    .gallery-card {
        aspect-ratio: 16 / 9;
    }
}
/* =========================================================
   NAVBAR - MOBILE
   ========================================================= */

.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002;

    width: 44px;
    height: 44px;

    padding: 8px;
    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;

    width: 26px;
    height: 2px;

    background: var(--white);
    border-radius: 2px;

    transition: all 0.3s ease;
}


/* Overlay-ul din spatele meniului */

.nav-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 1000;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   TABLETĂ + TELEFON
   ========================================================= */

@media (max-width: 992px) {

    /* Hamburger vizibil */

    .nav-toggle {
        display: flex;
    }


    /* Meniul devine lateral */

    .nav-menu {
        position: fixed;

        top: 0;
        right: -320px;

        width: 300px;
        max-width: 85vw;
        height: 100vh;

        background: var(--dark-bg);

        padding: 100px 25px 30px;

        z-index: 1001;

        transition: right 0.35s ease;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
    }


    /* Meniul deschis */

    .nav-menu.active {
        right: 0;
    }


    /* Lista verticală */

    .nav-menu ul {
        display: flex;

        flex-direction: column;

        gap: 5px;

        margin: 0;
        padding: 0;

        list-style: none;
    }


    /* Linkurile */

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;

        width: 100%;

        padding: 15px 12px;

        color: var(--white);

        font-size: 0.95rem;

        border-radius: 6px;

        transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.07);

        color: var(--primary-green);
    }


    /* =====================================================
       HAMBURGER -> X
       ===================================================== */

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* Logo */

    .logo h3 {
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
    }
}


/* =========================================================
   TELEFON MIC
   ========================================================= */

@media (max-width: 480px) {

    .navbar-header {
        padding: 10px 0;
    }

    .logo {
        gap: 7px;
    }

    .logo img {
        height: 36px;
    }

    .logo h3 {
        font-size: 0.75rem;
    }

    .nav-menu {
        width: 280px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
.nav-toggle {
    display: flex !important;
    background: red !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 999999 !important;
}

/* Panoul de navigare trebuie să fie deasupra overlay-ului mobil. */
@media (max-width: 992px) {
    .nav-overlay { z-index: 999 !important; }
    .navbar-header { z-index: 1000 !important; }
    .navbar-header .nav-menu { visibility: visible !important; opacity: 1 !important; }
    .navbar-header .nav-menu li, .navbar-header .nav-menu a { visibility: visible !important; opacity: 1 !important; }
}
