:root {
  --accent:       #e44d26;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --red:          #c0272d;
  --red-light:    #e8474e;
  --red-pale:     #f5dada;
  --dark:         #0f0206;
  --dark2:        #1a0508;
  --dark3:        #240a0d;
  --text-light:   #f5ede6;
  --text-muted:   #a07878;
  --border:       rgba(192,39,45,0.2);
  --border-gold:  rgba(201,168,76,0.22);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
}

*, *::before, *::after { 
  box-sizing: border-box; 
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body { 
  font-family: var(--font-body); 
  color: var(--text-light); 
  background: var(--dark); 
}

/* 🔧 FIX GLOBAL IMAGINI - niciodata sa nu se turtesca */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 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(15,2,6,.97); 
  backdrop-filter: blur(14px); 
  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(--red-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(--red-pale); 
  background: rgba(192,39,45,.1); 
}

.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-gold); 
  background: rgba(201,168,76,.08); 
}

.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(15,2,6,.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; 
}

/* HERO BANNER */
#banner { 
  position: relative; 
  min-height: 82vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  overflow: hidden; 
}

.banner-img-bg { 
  position: absolute; 
  inset: 0; 
  background-image: url('images/targul-de-craciun-1.jpg'); 
  background-size: cover; 
  background-position: center top; 
  z-index: 0; 
}

.banner-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(170deg, rgba(15,2,6,.08) 0%, rgba(15,2,6,.5) 45%, rgba(15,2,6,.95) 100%); 
  z-index: 1; 
}

.banner-lights { 
  position: absolute; 
  inset: 0; 
  z-index: 1; 
  overflow: hidden; 
  pointer-events: none; 
}

.light-dot { 
  position: absolute; 
  border-radius: 50%; 
  animation: twinkle 2.5s ease-in-out infinite; 
}

@keyframes twinkle { 
  0%,100% { opacity: .15; transform: scale(1); } 
  50% { opacity: .9; transform: scale(1.4); } 
}

.banner-content { 
  position: relative; 
  z-index: 2; 
  max-width: 800px; 
  padding: 110px 24px 64px; 
}

.banner-award { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(192,39,45,.2); 
  border: 1px solid rgba(192,39,45,.4); 
  border-radius: 30px; 
  padding: 6px 16px; 
  margin-bottom: 18px; 
}

.banner-award-text { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  color: #f5a0a2; 
}

.banner-award-icon { 
  font-size: 16px; 
}

.banner-eyebrow { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 14px; 
}

.banner-content h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2.2rem, 5.5vw, 4.2rem); 
  font-weight: 700; 
  line-height: 1.1; 
  color: #fff; 
  margin: 0 0 18px; 
  text-shadow: 0 2px 30px rgba(0,0,0,.7); 
}

.banner-content h1 em { 
  font-style: normal; 
  color: var(--gold-light); 
}

.banner-content p { 
  font-size: clamp(.95rem, 2.3vw, 1.15rem); 
  color: rgba(255,255,255,.82); 
  max-width: 560px; 
  margin: 0 auto 32px; 
  line-height: 1.7; 
}

.banner-cta-group { 
  display: flex; 
  gap: 14px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* BUTTONS */
.btn-primary { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: var(--red); 
  color: #fff; 
  padding: 13px 28px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 15px; 
  transition: background .2s, transform .15s; 
}

.btn-primary:hover { 
  background: var(--red-light); 
  transform: translateY(-1px); 
}

.btn-outline { 
  background: transparent; 
  color: var(--gold-light); 
  padding: 13px 28px; 
  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); 
}

.btn-card { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  background: transparent; 
  color: var(--gold); 
  border: 1px solid rgba(201,168,76,.35); 
  padding: 8px 18px; 
  border-radius: 8px; 
  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); 
}

.btn-card svg { 
  width: 14px; 
  height: 14px; 
}

/* 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(--red-light); 
  text-decoration: none; 
}

.breadcrumb a:hover { 
  text-decoration: underline; 
}

/* AWARD BAND */
.award-band { 
  background: linear-gradient(90deg, var(--dark3) 0%, rgba(192,39,45,.08) 50%, var(--dark3) 100%); 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border); 
  padding: 28px 0; 
}

.award-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap; 
  text-align: center; 
}

.award-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
}

.award-icon { 
  font-size: 2rem; 
  line-height: 1; 
}

.award-number { 
  font-family: var(--font-display); 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
}

.award-label { 
  font-size: 12px; 
  color: var(--text-muted); 
}

.award-divider { 
  width: 1px; 
  height: 44px; 
  background: var(--border); 
}

/* LAYOUT GENERAL */
.section { 
  padding: 76px 0; 
}

.section-alt { 
  background: var(--dark2); 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

.section-header { 
  text-align: center; 
  margin-bottom: 48px; 
}

.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.7rem, 3.5vw, 2.5rem); 
  font-weight: 700; 
  color: var(--text-light); 
  margin: 0 0 12px; 
  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: 44px; 
  height: 2px; 
  background: var(--gold); 
  margin: 14px auto 0; 
  border-radius: 2px; 
}

/* HERO CARD TÂRG (cel mare) */
.fair-hero { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid var(--border); 
  margin-bottom: 40px; 
  background: var(--dark2); 
}

.fair-hero-img { 
  position: relative; 
  min-height: 460px; 
}

/* 🔧 FIX IMAGINE HERO - proporții fixe, niciodată turtită */
.fair-hero-img img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center;
}

.fair-hero-award { 
  position: absolute; 
  top: 16px; 
  left: 16px; 
  background: rgba(192,39,45,.9); 
  color: #fff; 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  padding: 6px 14px; 
  border-radius: 20px; 
  z-index: 2; 
  backdrop-filter: blur(4px); 
  border: 1px solid rgba(255,255,255,.2); 
}

.fair-hero-body { 
  padding: 40px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

.fair-hero-tag { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  margin-bottom: 12px; 
}

.fair-hero-body h2 { 
  font-family: var(--font-display); 
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); 
  color: var(--text-light); 
  margin: 0 0 14px; 
  line-height: 1.2; 
}

.fair-hero-body p { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.75; 
  margin: 0 0 12px; 
}

.fair-hero-body p strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

/* CHIPS */
.info-chips { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin: 16px 0 24px; 
}

.chip { 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  background: rgba(192,39,45,.1); 
  border: 1px solid var(--border); 
  color: var(--red-pale); 
  font-size: 12px; 
  font-weight: 600; 
  padding: 5px 11px; 
  border-radius: 20px; 
  white-space: nowrap; 
}

.chip-gold { 
  background: rgba(201,168,76,.1); 
  border-color: var(--border-gold); 
  color: var(--gold-light); 
}

/* ZONE TEMATICE */
.zones-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 16px; 
  margin-top: 28px; 
}

.zone-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 20px 20px 22px; 
  position: relative; 
  overflow: hidden; 
  transition: border-color .2s, transform .2s; 
}

.zone-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px; 
  background: var(--gold); 
}

.zone-card:hover { 
  border-color: rgba(201,168,76,.45); 
  transform: translateY(-3px); 
}

.zone-emoji { 
  font-size: 2rem; 
  margin-bottom: 10px; 
  display: block; 
  line-height: 1; 
}

.zone-location { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  margin-bottom: 6px; 
}

.zone-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.05rem; 
  color: var(--text-light); 
  margin: 0 0 8px; 
}

.zone-card p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.6; 
}

/* PREȚURI */
.prices-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
  gap: 14px; 
}

.price-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 18px 16px; 
  text-align: center; 
  transition: border-color .2s; 
}

.price-card:hover { 
  border-color: rgba(201,168,76,.4); 
}

.price-icon { 
  font-size: 1.8rem; 
  margin-bottom: 8px; 
  display: block; 
  line-height: 1; 
}

.price-amount { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
  margin-bottom: 4px; 
}

.price-label { 
  font-size: 13px; 
  color: var(--text-light); 
  font-weight: 600; 
  margin-bottom: 3px; 
}

.price-note { 
  font-size: 11px; 
  color: var(--text-muted); 
}

/* CARDURI TÂRGURI SECUNDARE */
.fairs-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
  gap: 22px; 
}

.fair-card { 
  background: var(--dark2); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  overflow: hidden; 
  transition: transform .25s, box-shadow .25s, border-color .25s; 
}

.fair-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 14px 44px rgba(0,0,0,.5); 
  border-color: rgba(201,168,76,.4); 
}

.fair-card-img-wrap { 
  position: relative; 
  overflow: hidden; 
}

/* 🔧 FIX IMAGINI CARDURI - aspect ratio fix, niciodată turtite */
.fair-card-img { 
  display: block; 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  object-fit: cover; 
  transition: transform .4s; 
}

.fair-card:hover .fair-card-img { 
  transform: scale(1.05); 
}

.fair-card-tag { 
  position: absolute; 
  top: 12px; 
  left: 12px; 
  background: rgba(15,2,6,.82); 
  color: var(--gold); 
  font-size: 10px; 
  font-weight: 600; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  padding: 4px 10px; 
  border-radius: 20px; 
  border: 1px solid var(--border-gold); 
  backdrop-filter: blur(4px); 
}

.fair-card-period { 
  position: absolute; 
  bottom: 12px; 
  left: 12px; 
  background: rgba(15,2,6,.88); 
  color: var(--text-light); 
  font-size: 11px; 
  font-weight: 600; 
  padding: 4px 10px; 
  border-radius: 6px; 
  backdrop-filter: blur(4px); 
}

.fair-card-body { 
  padding: 22px 22px 24px; 
}

.fair-card-body h2 { 
  font-family: var(--font-display); 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--text-light); 
  margin: 0 0 10px; 
}

.fair-card-body p { 
  font-size: 14px; 
  color: var(--text-muted); 
  margin: 0 0 16px; 
  line-height: 1.65; 
}

.fair-card-meta { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-bottom: 16px; 
}

.meta-item { 
  font-size: 12px; 
  color: var(--text-muted); 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.meta-dot { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--gold); 
  flex-shrink: 0; 
}

/* TIP BOX */
.tip-box { 
  background: rgba(192,39,45,.07); 
  border: 1px solid rgba(192,39,45,.25); 
  border-left: 3px solid var(--red-light); 
  border-radius: 10px; 
  padding: 18px 22px; 
  margin-top: 28px; 
}

.tip-box-gold { 
  background: rgba(201,168,76,.07); 
  border: 1px solid rgba(201,168,76,.2); 
  border-left: 3px solid var(--gold); 
}

.tip-box-label { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  margin-bottom: 8px; 
}

.tip-box p { 
  font-size: 14px; 
  color: rgba(245,237,230,.75); 
  margin: 0; 
  line-height: 1.65; 
}

/* TRANSPORT */
.transport-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
  gap: 14px; 
}

.transport-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 18px; 
  text-align: center; 
  transition: border-color .2s; 
}

.transport-card:hover { 
  border-color: rgba(201,168,76,.4); 
}

.transport-icon { 
  font-size: 1.8rem; 
  margin-bottom: 8px; 
  display: block; 
}

.transport-card h4 { 
  font-size: 14px; 
  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.5; 
}

.transport-detail { 
  display: inline-block; 
  margin-top: 8px; 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--gold); 
}

/* FAQ */
.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: 18px 0; 
  font-family: var(--font-body); 
  font-size: 15px; 
  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; 
}

.faq-answer-inner { 
  padding: 0 0 18px; 
  font-size: 14px; 
  color: var(--text-muted); 
  line-height: 1.75; 
}

.faq-item.open .faq-answer { 
  max-height: 320px; 
}

/* CAZARE CTA */
.cazare-cta { 
  background: var(--dark3); 
  border: 1px solid var(--border-gold); 
  border-radius: 14px; 
  padding: 32px 36px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  flex-wrap: wrap; 
}

.cazare-cta-text h3 { 
  font-family: var(--font-display); 
  font-size: 1.4rem; 
  color: var(--text-light); 
  margin: 0 0 8px; 
}

.cazare-cta-text p { 
  font-size: 14px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.6; 
}

.cazare-cta-text strong { 
  color: var(--gold-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-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-gold); }

/* FOOTER */
#footer { 
  background: #060002; 
  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(--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: 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(15,2,6,.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-actions { 
  display: flex; 
  gap: 10px; 
  flex-shrink: 0; 
}

.gdpr-accept { 
  background: var(--red); 
  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(--red-light); 
}

.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 BUTTON */
#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); 
}

#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 { 
  opacity: 1; 
  transform: translateX(0); 
}

/* ==================== RESPONSIVE ==================== */

/* TABLET ȘI MAI MIC */
@media (max-width: 900px) {
  .main-nav { 
    display: none; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  /* 🔧 FIX: Hero card devine coloană, imaginea păstrează proporții 16:9 */
  .fair-hero { 
    grid-template-columns: 1fr; 
  }
  
  .fair-hero-img { 
    min-height: auto; 
    aspect-ratio: 16 / 9; /* Proporție fixă, niciodată turtită */
  }
  
  .fair-hero-body { 
    padding: 24px 22px; 
  }
  
  .award-divider { 
    display: none; 
  }
  
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .cazare-cta { 
    flex-direction: column; 
    text-align: center; 
  }
}

/* MOBIL MIC */
@media (max-width: 600px) {
  /* Spațiere compactă */
  .header-inner { 
    padding: 0 16px; 
  }
  
  .container { 
    padding: 0 16px; 
  }
  
  /* Navigare limbă vizibilă pe mobil */
  .lang-nav { 
    display: flex; 
    gap: 2px; 
  }
  
  .lang-nav a { 
    padding: 3px 6px; 
    font-size: 11px; 
  }
  
  /* Griduri pe o coloană */
  .fairs-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  .zones-grid { 
    grid-template-columns: 1fr; 
  }
  
  .prices-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .transport-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Banner mai mic pe mobil */
  #banner { 
    min-height: 70vh; 
  }
  
  .banner-content { 
    padding: 100px 16px 40px; 
  }
  
  /* Secțiuni mai compacte */
  .section { 
    padding: 50px 0; 
  }
  
  .section-header { 
    margin-bottom: 32px; 
  }
  
  /* Footer simplificat */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px; 
  }
}
