:root {
  --accent:        #e44d26;
  --gold:          #c9a84c;
  --gold-light:    #f0d080;
  --purple:        #7c3aed;
  --purple-light:  #a78bfa;
  --purple-pale:   #ede9fe;
  --cyan:          #06b6d4;
  --cyan-light:    #67e8f9;
  --dark:          #0c0614;
  --dark2:         #130c1e;
  --dark3:         #1a1028;
  --text-light:    #f0ebff;
  --text-muted:    #8872b0;
  --border:        rgba(124,58,237,0.18);
  --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 */
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(12,6,20,.97); 
  backdrop-filter: blur(16px); 
  box-shadow: 0 2px 28px 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(--purple-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(--purple-pale); 
  background: rgba(124,58,237,.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(12,6,20,.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 { 
  position: relative; 
  min-height: 84vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  overflow: hidden; 
}

.banner-img-bg { 
  position: absolute; 
  inset: 0; 
  background-image: url('images/intencity-festival-cover.jpg'); 
  background-size: cover; 
  background-position: center; 
  z-index: 0; 
}

.banner-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(170deg, rgba(12,6,20,.05) 0%, rgba(12,6,20,.5) 40%, rgba(12,6,20,.96) 100%); 
  z-index: 1; 
}

/* Pulse rings animation */
.pulse-ring { 
  position: absolute; 
  border-radius: 50%; 
  border: 1px solid rgba(167,139,250,.2); 
  animation: pulse-out 4s ease-out infinite; 
  z-index: 1; 
  pointer-events: none; 
}

@keyframes pulse-out { 
  0% { transform: scale(.5); opacity: .8; } 
  100% { transform: scale(2.5); opacity: 0; } 
}

.banner-content { 
  position: relative; 
  z-index: 2; 
  max-width: 820px; 
  padding: 110px 24px 64px; 
}

.banner-eyebrow { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: var(--purple-light); 
  margin-bottom: 14px; 
}

.banner-content h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2.4rem, 6vw, 4.4rem); 
  font-weight: 700; 
  line-height: 1.08; 
  color: #fff; 
  margin: 0 0 18px; 
  text-shadow: 0 2px 40px 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: 580px; 
  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(--purple); 
  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(--purple-light); 
  color: var(--dark); 
  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(--purple-light); 
  border: 1px solid rgba(124,58,237,.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(--purple-light); 
  color: var(--dark); 
  border-color: var(--purple-light); 
}

.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(--purple-light); 
  text-decoration: none; 
}

.breadcrumb a:hover { 
  text-decoration: underline; 
}

/* STATS BAND */
.stats-band { 
  background: var(--dark3); 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border); 
  padding: 30px 0; 
}

.stats-grid { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
}

.stat-item { 
  text-align: center; 
  padding: 0 16px; 
  border-right: 1px solid var(--border); 
}

.stat-item:last-child { 
  border-right: none; 
}

.stat-number { 
  font-family: var(--font-display); 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
  margin-bottom: 4px; 
}

.stat-label { 
  font-size: 11px; 
  color: var(--text-muted); 
}

/* LAYOUT */
.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(--purple-light); 
  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(--purple-light); 
  margin: 14px auto 0; 
  border-radius: 2px; 
}

/* FESTIVAL HERO CARD (IntenCity) */
.fest-hero { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid var(--border); 
  margin-bottom: 40px; 
  background: var(--dark2); 
}

.fest-hero-img { 
  position: relative; 
  min-height: 460px; 
}

/* FIX: Imaginea ocupă tot spațiul fără deformare */
.fest-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fest-hero-edition { 
  position: absolute; 
  top: 16px; 
  left: 16px; 
  background: rgba(124,58,237,.88); 
  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); 
}

.fest-hero-body { 
  padding: 38px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

.fest-hero-tag { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--purple-light); 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  margin-bottom: 12px; 
}

.fest-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; 
}

.fest-hero-body p { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.75; 
  margin: 0 0 12px; 
}

.fest-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(124,58,237,.12); 
  border: 1px solid var(--border); 
  color: var(--purple-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); 
}

.chip-cyan { 
  background: rgba(6,182,212,.1); 
  border-color: rgba(6,182,212,.25); 
  color: var(--cyan-light); 
}

/* LINEUP GRID */
.lineup-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
  gap: 10px; 
  margin-top: 20px; 
}

.lineup-item { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 10px 12px; 
  text-align: center; 
}

.lineup-item-name { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--text-light); 
}

.lineup-item-type { 
  font-size: 11px; 
  color: var(--text-muted); 
  margin-top: 2px; 
}

/* EFECT STRĂLUCITOR PENTRU HEADLINERI */
.lineup-headliner {
  border-color: rgba(201, 168, 76, 0.6) !important;
  background: rgba(201, 168, 76, 0.12) !important;
  position: relative;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}

.lineup-headliner:hover {
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
  border-color: var(--gold-light) !important;
}

.lineup-headliner::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-light);
}

.lineup-headliner .lineup-item-name { 
  color: var(--gold-light); 
}

/* FESTIVAL CARDS GRID */
.festivals-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
  gap: 22px; 
}

.fest-card { 
  background: var(--dark2); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  overflow: hidden; 
  transition: transform .25s, box-shadow .25s, border-color .25s; 
}

.fest-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 16px 48px rgba(0,0,0,.5); 
  border-color: rgba(124,58,237,.4); 
}

/* FIX: Aspect ratio 16:9 pentru carduri */
.fest-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.fest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.fest-card:hover .fest-card-img { 
  transform: scale(1.05); 
}

.fest-card-tag { 
  position: absolute; 
  top: 12px; 
  left: 12px; 
  background: rgba(12,6,20,.85); 
  color: var(--purple-light); 
  font-size: 10px; 
  font-weight: 600; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  padding: 4px 10px; 
  border-radius: 20px; 
  border: 1px solid var(--border); 
  backdrop-filter: blur(4px); 
}

.fest-card-period { 
  position: absolute; 
  bottom: 12px; 
  left: 12px; 
  background: rgba(12,6,20,.88); 
  color: var(--text-light); 
  font-size: 11px; 
  font-weight: 600; 
  padding: 4px 10px; 
  border-radius: 6px; 
  backdrop-filter: blur(4px); 
}

.fest-card-record { 
  position: absolute; 
  top: 12px; 
  right: 12px; 
  background: rgba(201,168,76,.9); 
  color: var(--dark); 
  font-size: 10px; 
  font-weight: 700; 
  padding: 4px 10px; 
  border-radius: 20px; 
  white-space: nowrap; 
}

.fest-card-body { 
  padding: 22px 24px 26px; 
}

.fest-card-body h2 { 
  font-family: var(--font-display); 
  font-size: 1.25rem; 
  font-weight: 700; 
  color: var(--text-light); 
  margin: 0 0 10px; 
}

.fest-card-body p { 
  font-size: 14px; 
  color: var(--text-muted); 
  margin: 0 0 16px; 
  line-height: 1.65; 
}

.fest-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(--purple-light); 
  flex-shrink: 0; 
}

/* TIP BOX */
.tip-box { 
  background: rgba(124,58,237,.07); 
  border: 1px solid rgba(124,58,237,.2); 
  border-left: 3px solid var(--purple-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-color: var(--gold); 
}

.tip-box-label { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--purple-light); 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  margin-bottom: 8px; 
}

.tip-box-gold .tip-box-label { 
  color: var(--gold); 
}

.tip-box p { 
  font-size: 14px; 
  color: rgba(240,235,255,.75); 
  margin: 0; 
  line-height: 1.65; 
}

/* RECORD BADGE */
.record-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  background: rgba(201,168,76,.1); 
  border: 1px solid var(--border-gold); 
  border-radius: 12px; 
  padding: 14px 20px; 
  margin-bottom: 20px; 
}

.record-badge-icon { 
  font-size: 1.6rem; 
  flex-shrink: 0; 
}

.record-badge-text { 
  font-size: 13px; 
  color: var(--gold-light); 
  font-weight: 600; 
  line-height: 1.4; 
}

.record-badge-text span { 
  display: block; 
  font-size: 11px; 
  font-weight: 400; 
  color: var(--text-muted); 
}

/* CALENDAR */
.calendar-list { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.cal-item { 
  display: grid; 
  grid-template-columns: 80px 1fr; 
  gap: 16px; 
  align-items: center; 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 14px 18px; 
  transition: border-color .2s; 
}

.cal-item:hover { 
  border-color: rgba(124,58,237,.4); 
}

.cal-date { 
  text-align: center; 
}

.cal-month { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--purple-light); 
  text-transform: uppercase; 
  letter-spacing: .1em; 
}

.cal-period { 
  font-family: var(--font-display); 
  font-size: 1.3rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
}

.cal-info h4 { 
  font-size: 15px; 
  font-weight: 600; 
  color: var(--text-light); 
  margin: 0 0 3px; 
}

.cal-info p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
}

.cal-badge { 
  display: inline-block; 
  font-size: 10px; 
  font-weight: 600; 
  padding: 3px 8px; 
  border-radius: 12px; 
  margin-top: 4px; 
}

.cb-muzica { 
  background: rgba(124,58,237,.15); 
  color: var(--purple-pale); 
  border: 1px solid var(--border); 
}

.cb-teatru { 
  background: rgba(201,168,76,.12); 
  color: var(--gold-light); 
  border: 1px solid var(--border-gold); 
}

.cb-strada { 
  background: rgba(6,182,212,.1); 
  color: var(--cyan-light); 
  border: 1px solid rgba(6,182,212,.2); 
}

.cb-cultura { 
  background: rgba(228,77,38,.1); 
  color: #fca98a; 
  border: 1px solid rgba(228,77,38,.2); 
}

/* 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(--purple-pale); 
}

.faq-icon { 
  font-size: 20px; 
  color: var(--purple-light); 
  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; 
}

/* 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(--purple-pale); 
  border: 1px solid var(--border); 
}

/* FOOTER */
#footer { 
  background: #060310; 
  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(--purple-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(--purple-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 */
#gdpr-banner { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  z-index: 9998; 
  background: rgba(12,6,20,.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(--purple-light); 
  text-decoration: none; 
}

.gdpr-actions { 
  display: flex; 
  gap: 10px; 
  flex-shrink: 0; 
}

.gdpr-accept { 
  background: var(--purple); 
  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(--purple-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); 
}

#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 (pana la 900px) */
@media (max-width: 900px) {
  .main-nav { 
    display: none; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  /* Festival hero devine vertical */
  .fest-hero { 
    grid-template-columns: 1fr; 
  }
  
  .fest-hero-img { 
    min-height: 320px; 
  }
  
  .fest-hero-body { 
    padding: 30px 24px; 
  }
  
  /* Stats: 3 coloane */
  .stats-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .stat-item:nth-child(3) { 
    border-right: none; 
  }
  
  /* Lineup: 4 coloane */
  .lineup-grid { 
    grid-template-columns: repeat(4, 1fr); 
  }
  
  /* Footer pe 2 coloane */
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* MOBIL MIC (pana la 600px) */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }
  
  /* Spațiere compactă */
  .header-inner, 
  .container, 
  .breadcrumb-inner { 
    padding-left: 16px; 
    padding-right: 16px; 
  }
  
  /* 🔧 LANG NAV VIZIBIL PE MOBIL */
  .lang-nav { 
    display: flex; 
    gap: 2px; 
  }
  
  .lang-nav a { 
    padding: 3px 6px; 
    font-size: 10px; 
  }
  
  /* Header ordonat */
  .header-inner {
    gap: 8px;
  }
  
  .header-logo {
    font-size: 15px;
  }
  
  /* Stats: 2 coloane */
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  
  .stat-item { 
    border-right: none; 
    border-bottom: 1px solid var(--border); 
    padding: 10px 0; 
  }
  
  .stat-item:nth-child(even) {
    border-right: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .stat-item:last-child { 
    border-bottom: none; 
  }
  
  /* Lineup: 2 coloane */
  .lineup-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  /* Festival cards pe o coloană */
  .festivals-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  /* Calendar compact */
  .cal-item { 
    grid-template-columns: 60px 1fr; 
    gap: 12px; 
    padding: 12px; 
  }
  
  .cal-period { 
    font-size: 1.1rem; 
  }
  
  /* Footer pe o coloană */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  /* Imagini */
  .fest-hero-img {
    min-height: 280px;
  }
  
  /* Footer simplificat */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px; 
  }
}
