/* ── Variabile de culoare ── */
:root {
  --accent:       #e44d26;
  --accent-dark:  #b83a1a;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --dark:         #0f0702;
  --dark2:        #1c1008;
  --dark3:        #2a1a0d;
  --text-light:   #f5ede0;
  --text-muted:   #a89070;
  --border:       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;
}
/* ── STICKY HEADER (NOU) ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 7, 2, 0);
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(15, 7, 2, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  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: 20px;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-logo span { color: var(--accent); }
/* ── MENIU PRINCIPAL (NOU) ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.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(--gold-light);
  background: rgba(201,168,76,.1);
}
/* ── SELECTOR LIMBĂ (ÎMBUNĂTĂȚIT) ── */
.lang-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lang-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all .2s;
}
.lang-nav a.active,
.lang-nav a:hover {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201,168,76,.08);
}
.lang-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
/* ── HAMBURGER MOBILE ── */
.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;
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(15,7,2,.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; }
/* ── BANNER (păstrat din original, rafinat) ── */
#banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,0,.3) 0%,
    rgba(10,5,0,.55) 50%,
    rgba(10,5,0,.85) 100%
  );
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 60px;
}
.banner-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.banner-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.banner-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.banner-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-outline:hover { background: rgba(201,168,76,.12); transform: translateY(-1px); }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }
@keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
/* ── LAYOUT GENERAL ── */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--dark2); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 14px;
  line-height: 1.2;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
/* ── STATS BAND (NOU) ── */
.stats-band {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
/* ── CARDURI CATEGORII (păstrat + rafinat) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  border-color: rgba(201,168,76,.5);
}
.card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9; /* Menține formatul cinematic */
  object-fit: cover;   /* Umple spațiul fără să se lungească, tăind discret din margini */
  height: auto !important; /* REPARAȚIA PRINCIPALĂ: Nu mai forțează înălțimea */
  transition: transform .4s;
}
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrap {
  overflow: hidden;
  position: relative;
}
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,7,2,.85);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}
.card-body { padding: 20px 22px 22px; }
.card-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.btn-card {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-card:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
/* ── INTRO TEXT (EXTINS) ── */
.intro-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro-text p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(245,237,224,.75);
  margin-bottom: 16px;
}
.intro-text strong { color: var(--gold-light); font-weight: 600; }
/* ── ITINERARE (NOU) ── */
.itinerary-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.itin-tab {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}
.itin-tab.active, .itin-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.itin-panel { display: none; }
.itin-panel.active { display: block; }
.itin-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.itin-step {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
}
.itin-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.itin-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0 0 6px;
}
.itin-step p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.itin-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
/* ── CALENDAR EVENIMENTE (NOU) ── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color .2s;
}
.event-item:hover { border-color: rgba(201,168,76,.5); }
.event-date {
  text-align: center;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 6px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.event-mon {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.event-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 4px;
}
.event-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.event-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.eb-festival { background: rgba(228,77,38,.15); color: #f07050; border: 1px solid rgba(228,77,38,.3); }
.eb-targ     { background: rgba(201,168,76,.15); color: var(--gold-light); border: 1px solid var(--border); }
.eb-cultura  { background: rgba(100,180,200,.1); color: #7cc; border: 1px solid rgba(100,180,200,.2); }
/* ── TRANSPORT (NOU) ── */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.transport-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.transport-card:hover {
  border-color: rgba(201,168,76,.5);
  transform: translateY(-2px);
}
.transport-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.transport-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 6px;
}
.transport-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.transport-detail {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
/* ── CAZARE (NOU) ── */
.cazare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.cazare-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.cazare-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.5);
}
.cazare-header {
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cazare-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.cazare-body { padding: 16px 22px 20px; }
.cazare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.cazare-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.6;
}
.cazare-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
}
.cazare-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
/* ── GASTRONOMIE (NOU) ── */
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.gastro-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .2s;
}
.gastro-item:hover { border-color: rgba(201,168,76,.45); }
.gastro-emoji { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.gastro-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 4px;
}
.gastro-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
/* ── TESTIMONIALE (NOU) ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(245,237,224,.8);
  line-height: 1.7;
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); }
.testimonial-text::after  { content: '\201D'; color: var(--gold); }
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
}
.testimonial-source {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
/* ── FAQ (NOU) ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }
/* ── SOCIAL SHARE (EXTINS) ── */
.share-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.share-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
  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;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-fb   { background: #1877f2; color: #fff; }
.share-wa   { background: #25d366; color: #fff; }
.share-pin  { background: #e60023; color: #fff; }
.share-copy { background: var(--dark3); color: var(--gold-light); border: 1px solid var(--border); }
/* ── FOOTER (EXTINS) ── */
#footer {
  background: #080401;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  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: 15px;
  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(--gold);
  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(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 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 (NOU) ── */
#gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(15,7,2,.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(--gold); text-decoration: none; }
.gdpr-text a:hover { text-decoration: underline; }
.gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; }
.gdpr-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s;
}
.gdpr-accept:hover { background: var(--accent-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);
  transition: color .2s;
}
.gdpr-reject:hover { color: var(--text-light); }
/* ── BUTON AI (RAFINAT) ── */
#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, box-shadow .25s;
  font-size: 22px;
}
#ai-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(228,77,38,.6);
}
#ai-tooltip {
  position: fixed;
  bottom: 32px;
  right: 90px;
  z-index: 997;
  background: var(--dark2);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
#ai-btn:hover ~ #ai-tooltip,
#ai-tooltip:hover { opacity: 1; transform: translateX(0); }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 60px 1fr; }
  .event-badge { display: none; }
  .lang-nav { display: none; }
  #ai-tooltip { display: none; }
}

 /* REPARAȚII FINALE MOBIL */
@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Asigurăm proporții naturale pentru orice imagine landscape */
    .attraction-img, .main-img, .card-img, .cazare-card img {
        width: 100% !important;
        height: auto !important; /* Previne turtirea laterală */
        object-fit: cover; 
    }

    .header-inner {
        padding: 0 15px !important;
    }

    /* Logo-ul se micșorează puțin ca să lase loc meniului de limbi */
    .header-logo {
        font-size: 16px !important;
    }

    /* Meniul de limbi - forțat pe mobil */
    .lang-nav {
        display: flex !important;
        gap: 5px !important;
    }

    .lang-nav a {
        padding: 4px 6px !important;
        font-size: 11px !important;
    }
}