:root {
      --accent:        #e44d26;
      --gold:          #c9a84c;
      --gold-light:    #f0d080;
      --steel:         #4a90b8;
      --steel-light:   #7ab8d8;
      --steel-pale:    #dbeeff;
      --dark:          #0d1117;
      --dark2:         #161b22;
      --dark3:         #1e2530;
      --text-light:    #e8edf5;
      --text-muted:    #768899;
      --border:        rgba(74,144,184,0.15);
      --border-gold:   rgba(201,168,76,0.2);
      --font-display:  'Playfair Display', Georgia, serif;
      --font-body:     'Source Sans 3', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body { font-family: var(--font-body); color: var(--text-light); background: var(--dark); margin: 0; }

    /* HEADER */
    #site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: background .4s, backdrop-filter .4s, box-shadow .4s; border-bottom: 1px solid transparent; }
    #site-header.scrolled { background: rgba(13,17,23,.97); backdrop-filter: blur(16px); box-shadow: 0 2px 24px rgba(0,0,0,.6); border-bottom-color: var(--border); }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .header-logo { font-family: var(--font-display); font-size: 18px; color: var(--gold-light); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
    .header-logo span { color: var(--steel-light); }
    .main-nav { display: flex; align-items: center; gap: 4px; }
    .main-nav a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 10px; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
    .main-nav a:hover { color: var(--steel-pale); background: rgba(74,144,184,.1); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text-light); border-radius: 2px; }
    .mobile-menu { display: none; flex-direction: column; background: rgba(13,17,23,.98); border-top: 1px solid var(--border); padding: 16px 24px 20px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: var(--text-light); text-decoration: none; padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
    .mobile-menu a:last-child { border-bottom: none; }

    /* PAGE HERO */
    .page-hero {
      padding: 120px 0 56px;
      background: linear-gradient(160deg, var(--dark) 0%, var(--dark3) 100%);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(74,144,184,.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 1; max-width: 800px; padding: 0 24px; }
    .page-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 12px; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; color: var(--text-light); margin: 0 0 14px; line-height: 1.15; }
    .page-hero h1 em { font-style: normal; color: var(--gold-light); }
    .page-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
    .page-hero-meta span { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

    /* BREADCRUMB */
    .breadcrumb { background: var(--dark2); padding: 13px 0; border-bottom: 1px solid var(--border); }
    .breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
    .breadcrumb a { color: var(--steel-light); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }

    /* MAIN LAYOUT */
    .main-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 80px;
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 52px;
      align-items: start;
    }

    /* SIDEBAR NAV */
    .sidebar-nav {
      position: sticky;
      top: 88px;
    }
    .sidebar-nav-title {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }
    .sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
    .sidebar-nav ul li { margin-bottom: 4px; }
    .sidebar-nav ul li a {
      display: block;
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 6px;
      border-left: 2px solid transparent;
      transition: all .2s;
      line-height: 1.4;
    }
    .sidebar-nav ul li a:hover,
    .sidebar-nav ul li a.active {
      color: var(--steel-light);
      background: rgba(74,144,184,.08);
      border-left-color: var(--steel-light);
    }
    .sidebar-back {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .sidebar-back a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      transition: color .2s;
    }
    .sidebar-back a:hover { color: var(--gold-light); }

    /* DOCUMENT CONTENT */
    .doc-content { max-width: 760px; }

    /* GDPR BADGE */
    .gdpr-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(74,144,184,.1);
      border: 1px solid rgba(74,144,184,.3);
      border-radius: 10px;
      padding: 12px 18px;
      margin-bottom: 36px;
    }
    .gdpr-badge-icon { font-size: 1.4rem; }
    .gdpr-badge-text { font-size: 13px; color: var(--steel-pale); font-weight: 600; line-height: 1.4; }
    .gdpr-badge-text span { display: block; font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 1px; }

    /* SECTIONS */
    .doc-section { margin-bottom: 48px; scroll-margin-top: 90px; }
    .doc-section:last-child { margin-bottom: 0; }
    .doc-section-num {
      font-size: 11px;
      font-weight: 600;
      color: var(--steel-light);
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .doc-section h2 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-light);
      margin: 0 0 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .doc-section p {
      font-size: 15px;
      color: rgba(232,237,245,.8);
      line-height: 1.8;
      margin: 0 0 14px;
    }
    .doc-section p:last-child { margin-bottom: 0; }
    .doc-section strong { color: var(--gold-light); font-weight: 600; }
    .doc-section a { color: var(--steel-light); text-decoration: none; }
    .doc-section a:hover { text-decoration: underline; }

    /* LISTA */
    .doc-list {
      list-style: none;
      padding: 0;
      margin: 14px 0;
    }
    .doc-list li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      color: rgba(232,237,245,.75);
      line-height: 1.7;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(74,144,184,.08);
    }
    .doc-list li:last-child { border-bottom: none; margin-bottom: 0; }
    .doc-list-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--steel-light);
      flex-shrink: 0;
      margin-top: 8px;
    }

    /* INFO CARD */
    .info-card {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 22px;
      margin: 20px 0;
    }
    .info-card h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--steel-light);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin: 0 0 10px;
    }
    .info-card p {
      font-size: 14px !important;
      margin-bottom: 6px !important;
    }
    .info-card p:last-child { margin-bottom: 0 !important; }

    /* TIP BOX */
    .tip-box {
      background: rgba(74,144,184,.07);
      border: 1px solid rgba(74,144,184,.2);
      border-left: 3px solid var(--steel-light);
      border-radius: 10px;
      padding: 16px 20px;
      margin: 16px 0;
    }
    .tip-box p { font-size: 14px !important; margin: 0 !important; }

    /* RIGHTS GRID */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 12px;
      margin: 16px 0;
    }
    .right-item {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
    }
    .right-item h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-light);
      margin: 0 0 5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .right-item p {
      font-size: 12px !important;
      color: var(--text-muted) !important;
      margin: 0 !important;
      line-height: 1.55 !important;
    }

    /* COOKIES TABLE */
    .cookies-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: 13px;
    }
    .cookies-table th {
      background: var(--dark3);
      color: var(--steel-light);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      padding: 10px 14px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }
    .cookies-table td {
      padding: 10px 14px;
      border-bottom: 1px solid rgba(74,144,184,.08);
      color: rgba(232,237,245,.75);
      vertical-align: top;
      line-height: 1.55;
    }
    .cookies-table tr:last-child td { border-bottom: none; }
    .cookie-type {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 12px;
    }
    .ct-necesar { background: rgba(5,150,105,.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,.2); }
    .ct-analiza { background: rgba(74,144,184,.15); color: var(--steel-pale); border: 1px solid rgba(74,144,184,.2); }
    .ct-functional { background: rgba(201,168,76,.12); color: var(--gold-light); border: 1px solid var(--border-gold); }

    /* LAST UPDATED */
    .last-updated {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 48px;
    }
    .last-updated-icon { font-size: 1.4rem; }
    .last-updated-text { font-size: 13px; color: var(--text-muted); }
    .last-updated-text strong { color: var(--text-light); }

    /* SHARE */
    .share-section { padding: 36px 0; border-top: 1px solid var(--border); }
    .share-title { font-size: 13px; font-weight: 600; color: var(--text-muted); text-align: center; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .1em; }
    .share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: opacity .2s, transform .15s; font-family: var(--font-body); }
    .share-btn:hover { opacity: .88; transform: translateY(-1px); }
    .share-wa  { background: #25d366; color: #fff; }
    .share-copy { background: var(--dark3); color: var(--steel-pale); border: 1px solid var(--border); }

    /* FOOTER */
    #footer { background: #080c12; border-top: 1px solid var(--border); padding: 56px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
    .footer-brand h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-light); margin: 0 0 10px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 18px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: border-color .2s, color .2s; }
    .footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 { font-size: 12px; font-weight: 600; color: var(--steel-light); letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--steel-pale); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .footer-bottom p { font-size: 13px; color: var(--text-muted); margin: 0; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }
    .footer-bottom a:hover { text-decoration: underline; }

    /* GDPR BANNER */
    #gdpr-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: rgba(13,17,23,.97); border-top: 1px solid var(--border); backdrop-filter: blur(10px); padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s ease; }
    #gdpr-banner.show { transform: translateY(0); }
    .gdpr-text { flex: 1; font-size: 13px; color: var(--text-muted); line-height: 1.55; min-width: 260px; }
    .gdpr-text a { color: var(--steel-light); text-decoration: none; }
    .gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .gdpr-accept { background: var(--steel); color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
    .gdpr-accept:hover { background: var(--steel-light); color: var(--dark); }
    .gdpr-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 9px 16px; border-radius: 6px; font-size: 13px; cursor: pointer; font-family: var(--font-body); }

    /* AI BTN */
    #ai-btn { position: fixed; bottom: 24px; right: 24px; z-index: 997; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(228,77,38,.45); transition: transform .25s; font-size: 22px; }
    #ai-btn:hover { transform: scale(1.08); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .main-nav { display: none; }
      .hamburger { display: flex; }
      .main-layout { grid-template-columns: 1fr; gap: 32px; }
      .sidebar-nav { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .rights-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
      .cookies-table { display: block; overflow-x: auto; }
      .rights-grid { grid-template-columns: 1fr; }

           /* REPARATII FINALE MOBIL */
@media (max-width: 600px) {
    /* 1. Prevenim orice iesire accidentala in decor */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 2. Fortam containerele sa nu depaseasca latimea ecranului */
    .header-inner, .main-layout, .stats-grid, .breadcrumb-inner, .footer-grid {
        max-width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden; /* Taie ce depaseste */
    }

    /* 3. Reparam blocurile care intra/ies alandala */
    .stats-grid {
        grid-template-columns: 1fr 1fr; /* Maxim 2 pe rand pe mobil foarte mic */
        gap: 10px;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    /* 4. Imaginile sa nu forteze latimea */
    .attraction-img, .main-img {
        width: 100% !important;
        height: auto;
    }

    /* 5. Booking box-ul sa fie vertical pe mobil */
    .booking-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-booking {
        width: 100%; /* Butonul sa fie cat tot ecranul, e mai usor de apasat */
        justify-content: center;
    }

    /* 6. Reparam tabelele de tarife sa nu se sfarame */
    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* REPARAȚIE FORȚATĂ PENTRU MENIU LIMBI PE MOBIL */
@media (max-width: 600px) {
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 12px !important;
    }

    .lang-nav {
        display: flex !important; /* Forțăm afișarea chiar dacă e ascuns în altă parte */
        order: 2; /* Îl punem la mijloc, între Logo și Hamburger */
        gap: 2px !important;
    }

    .lang-nav a {
        padding: 3px 5px !important; /* Micșorăm butoanele să încapă */
        font-size: 10px !important;
    }

    .lang-label {
        display: none; /* Ascundem eticheta "Language:" ca să economisim spațiu */
    }

    .header-logo {
        order: 1;
        font-size: 15px !important;
    }

    .hamburger {
        order: 3;
    }
}

    } 