/* =============================================================
   Natalie Holzner – Original Wolf/Tune Theme Nachbildung
   Font: Montserrat (all weights)
   Accent: #1e73be | Events: #4bb5d8 | Social BG: #1f408d
   ============================================================= */

:root {
  --font-base: 'Montserrat', sans-serif;
  --font-headings: 'Montserrat', sans-serif;
  --accent: #1e73be;
  --accent-hover: #155a96;
  --text: #444;
  --strong: #0d0d0d;
  --event-cyan: #4bb5d8;
  --social-bg: rgb(31, 64, 141);
  --lightergrey: #f5f5f5;
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--strong);
  line-height: 1.3;
  margin-bottom: 12px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover { opacity: 0.8; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

.row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.row.align-center { align-items: center; }

.col-6 { flex: 1 1 calc(50% - 15px); min-width: 280px; }

/* === Buttons (Original: font-weight 400, accent bg) === */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  opacity: 1;
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
}

.btn-text:hover { opacity: 0.7; }

/* =============================================================
   NAVIGATION (menu-layout-top-justify-left, solid, sticky hard)
   Height: 80px → 55px scrolled
   ============================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#nav-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

#nav-bar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  transition: height 0.3s;
}

#nav-bar.scrolled .nav-inner {
  height: 55px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.logo-img {
  max-width: 160px;
  height: auto;
  transition: max-width 0.3s;
}

#nav-bar.scrolled .logo-img {
  max-width: 120px;
}

/* Desktop Nav */
.menu-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  height: 80px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

#nav-bar.scrolled .nav-links li a {
  height: 55px;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  opacity: 1;
}

/* Header CTA (social icons) */
.header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: auto;
}

.header-icon {
  color: var(--text);
  font-size: 15px;
}

.header-icon:hover {
  color: var(--accent);
  opacity: 1;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 28px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Panel */
.mobile-panel {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #000;
  z-index: 999;
  overflow-y: auto;
}

.mobile-panel.open { display: block; }

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li a {
  display: block;
  padding: 15px 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links li a:hover { color: var(--accent); opacity: 1; }

.mobile-social {
  display: flex;
  gap: 20px;
  padding: 20px 30px;
}

.mobile-social a { color: #fff; font-size: 18px; }

/* =============================================================
   HERO SLIDER (1400x600, 6s autoplay, horizontal, easeOutQuad)
   ============================================================= */
.hero-slider {
  margin-top: 80px;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 1400 / 500;
  overflow: hidden;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.4s;
}

.slider-container:hover .slider-arrow { opacity: 1; }

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
  padding: 5px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.67);
  border: 1px solid rgba(62, 62, 62, 1);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: rgba(29, 129, 249, 1);
}

/* =============================================================
   HOME BIO (below slider, white bg, padding-top: 25px)
   ============================================================= */
.home-bio {
  background: #fff;
  padding: 25px 0 40px;
}

.home-bio p {
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 15px;
}

.home-bio-cta {
  margin-top: 25px;
  text-align: center;
}

/* =============================================================
   FANSHOP
   ============================================================= */
#fanshop {
  padding: 60px 0;
  background: #fff;
}

.shop-slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.shop-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.shop-slide.active {
  opacity: 1;
}

.shop-slider-link:hover .shop-slider {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

#fanshop h2 {
  margin-bottom: 15px;
}

#fanshop p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* =============================================================
   ALBUM SECTION
   ============================================================= */
.section-album {
  padding: 60px 0;
  background: #fff;
}

.album-cover-image {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.album-cover-image:hover {
  transform: scale(1.03);
}

.section-album .col-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-album p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* =============================================================
   SOCIAL MEDIA / NEWS (Flow-Flow: masonry, bg #1f408d)
   Card: 260px, gap 20px, border-radius 15px
   ============================================================= */
.social-stream {
  background: var(--social-bg);
  padding: 50px 20px;
}

.social-heading {
  text-align: center;
  color: rgb(240, 240, 240);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.social-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(240, 237, 231, 0.4);
}

.social-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

/* LightWidget iframe */
.lightwidget-widget {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 600px;
}

/* CTA under grid */
.social-cta {
  text-align: center;
  margin-top: 30px;
}

.social-cta .btn .fa-instagram {
  margin-right: 6px;
}

/* =============================================================
   SECTION HEADERS (Parallax banners)
   ============================================================= */
.section-header-parallax {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay {
  position: absolute;
  inset: 0;
}

.overlay-black { background: #000; }
.overlay-darkgrey { background: #333; }

.section-heading-xl {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.section-heading-xl.color-greyblue {
  color: #6b8fa3;
}

/* =============================================================
   EVENTS (EventON style: cyan #4bb5d8, month grouping)
   ============================================================= */
.events-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.event-month-header {
  font-size: 16px;
  font-weight: 700;
  color: var(--strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 0 10px;
  margin-top: 10px;
  border-bottom: 2px solid #eee;
}

.event-month-header:first-child { margin-top: 0; }

/* Event row wrapper (accordion container) */
.event-row {
  border-bottom: 1px solid #f0f0f0;
}

.event-item {
  display: flex;
  align-items: center;
  padding: 14px 10px;
  transition: background 0.15s;
}

.event-item:hover { background: #f0f7ff; }

.event-item--clickable { cursor: pointer; }

/* Chevron indicator */
.event-chevron {
  font-size: 12px;
  color: #bbb;
  transition: transform 0.3s;
  margin-left: 8px;
}

.event-row.open .event-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Accordion detail panel */
.event-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.event-row.open .event-detail {
  max-height: 800px;
}

.event-detail-inner {
  display: flex;
  gap: 24px;
  padding: 20px 15px 25px;
  border-top: 1px solid #e0e8f0;
  background: linear-gradient(180deg, #f5f8fc 0%, #fafcff 100%);
}

/* Poster only (no description) — center it */
.event-detail-poster:only-child {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.event-detail-poster {
  flex-shrink: 0;
  width: 220px;
}

.event-detail-poster img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.event-detail-poster img:hover {
  transform: scale(1.03);
}

.event-detail-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-detail-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.event-detail-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-ticket-maps {
  background: #eee;
  color: #555;
}

.btn-ticket-maps:hover {
  background: #ddd;
  color: #333;
  opacity: 1;
}

/* Zebra striping */
.event-odd { background: #fff; }
.event-even { background: #f8f8f8; }

/* Type-specific left border */
.event-type-tv .event-dayblock { border-left-color: #4bb5d8; }
.event-type-live .event-dayblock { border-left-color: #4bb5d8; }
.event-type-award .event-dayblock { border-left-color: #f0c040; }

.event-dayblock {
  min-width: 72px;
  text-align: center;
  padding: 10px 14px;
  border-left: 4px solid var(--event-cyan);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.event-dayblock .day {
  font-size: 26px;
  font-weight: 800;
  color: var(--strong);
  line-height: 1;
}

.event-dayblock .month {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.event-dayblock .time {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
}

.event-title {
  flex: 1;
  padding: 0 20px;
  min-width: 0;
}

.event-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-title .event-subtitle {
  font-style: italic;
  font-weight: 400;
  color: #666;
}

.event-title .location {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}

.event-title .location a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.event-title .location a:hover {
  color: var(--accent);
  opacity: 1;
}

.event-title .location .fa-map-marker {
  margin-right: 2px;
}

/* Event Actions */
.event-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 10px;
}

/* Ticket Button */
.btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-ticket:hover {
  background: var(--accent-hover);
  color: #fff;
  opacity: 1;
}

/* Poster Button */
.btn-poster {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #999;
  cursor: pointer;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-poster:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  flex-shrink: 0;
  margin-right: 10px;
}

.type-tv { background: var(--event-cyan); color: #fff; }
.type-live { background: #eee; color: #555; }
.type-award { background: #f0c040; color: #333; }

/* =============================================================
   PRESSE (lightergrey bg)
   ============================================================= */
.section-presse {
  padding: 70px 0;
  background: var(--lightergrey);
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.press-item {
  overflow: hidden;
}

.press-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.4s;
  cursor: pointer;
}

.press-item img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.press-credit {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 25px;
  font-style: italic;
}

/* =============================================================
   VIDEOS (overlay grid, lightergrey bg, lightbox)
   ============================================================= */
.section-lightergrey {
  background: var(--lightergrey);
  padding: 50px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-item {
  position: relative;
  overflow: hidden;
  background: var(--bg, #333);
}

.video-link {
  display: block;
  position: relative;
}

.video-link img {
  width: 100%;
  aspect-ratio: 475 / 280;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.video-link:hover img { transform: scale(1.05); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.44);
  transition: background 0.3s;
}

.video-link:hover .video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.video-overlay i {
  color: #fff;
  opacity: 0.9;
}

.video-title {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* =============================================================
   ABOUT (parallax, teal bg, overlay)
   ============================================================= */
.section-about-bg {
  min-height: auto;
  padding: 80px 20px;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-more {
  display: none;
  margin-top: 15px;
}

.about-more.open { display: block; }

.about-more p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-expand {
  margin-top: 20px;
}

.about-expand .btn-text {
  color: #5ee0d0;
  border-bottom: 1px solid rgba(94, 224, 208, 0.5);
}

.about-expand .btn-text:hover {
  color: #8af0e4;
  opacity: 1;
}

/* =============================================================
   FANCLUB & KONTAKT
   ============================================================= */
.section-content {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.address {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}

.contact-block {
  margin-bottom: 30px;
}

.contact-block h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--strong);
}

.contact-block p {
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-block a {
  color: var(--accent);
}

.contact-block a:hover { opacity: 0.7; }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 20px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-right: none;
  font-family: var(--font-base);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter-form .btn {
  border-radius: 0;
}

.newsletter-success {
  color: var(--accent);
  font-weight: 600;
  padding: 12px 0;
}

/* =============================================================
   PARTNER LOGOS (social proof strip)
   ============================================================= */
.partner-logos {
  padding: 40px 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.partner-logos-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 25px;
  font-weight: 600;
}

.partner-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-logos-row img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.partner-logos-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .partner-logos-row {
    gap: 30px;
  }

  .partner-logos-row img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .partner-logos-row {
    gap: 25px;
  }

  .partner-logos-row img {
    height: 30px;
  }
}

/* =============================================================
   NEWSLETTER CTA (fullwidth banner)
   ============================================================= */
.newsletter-cta {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 50%, #0d1b2a 100%);
  color: #fff;
  overflow: hidden;
}

.newsletter-cta-inner {
  padding: 60px 0;
  position: relative;
}

.newsletter-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 129, 249, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-cta-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.newsletter-cta-text {
  flex: 1;
}

.newsletter-cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: #fff;
}

.newsletter-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 400px;
}

.newsletter-cta-form {
  flex: 1;
  max-width: 450px;
}

.newsletter-cta-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.newsletter-cta-input-wrap:focus-within {
  border-color: var(--accent);
}

.newsletter-cta-input-wrap input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.newsletter-cta-input-wrap input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-cta-input-wrap .btn {
  border-radius: 0 6px 6px 0;
  padding: 14px 28px;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-cta-hint {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .newsletter-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .newsletter-cta-text p {
    max-width: none;
  }

  .newsletter-cta-form {
    width: 100%;
    max-width: none;
  }

  .newsletter-cta-input-wrap {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-cta-input-wrap .btn {
    border-radius: 0 0 6px 6px;
    width: 100%;
  }

  .newsletter-cta-inner {
    padding: 45px 0;
  }
}

/* =============================================================
   FOOTER (Bottom bar only – like original)
   ============================================================= */
.footer-dark {
  background: #1a1a1a;
}

.bottom-bar {
  padding: 25px 0;
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-social {
  display: flex;
  gap: 18px;
}

.bottom-social a {
  color: #999;
  font-size: 15px;
  transition: opacity 0.3s;
}

.bottom-social a:hover { color: #ccc; opacity: 1; }

.copyright {
  font-size: 13px;
  color: #666;
}

/* =============================================================
   VIDEO LIGHTBOX
   ============================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}

.lightbox-close:hover { opacity: 0.7; }

.lightbox-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.lightbox-content iframe {
  width: 100%;
  height: 100%;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
  .social-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; }
}

@media (max-width: 1024px) {
  .nav-links li a { padding: 0 10px; font-size: 12px; }
}

@media (max-width: 991px) {
  .menu-container { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .social-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .press-gallery { grid-template-columns: repeat(2, 1fr); }
  .section-heading-xl { font-size: 36px; }
}

@media (max-width: 768px) {
  .hero-slider { margin-top: 70px; }
  .slider-container { aspect-ratio: 16 / 9; }
  .slide img { object-position: center 20%; }
  .slider-arrow { display: none; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-grid { grid-template-columns: 1fr; }
  .press-gallery { grid-template-columns: 1fr; }

  .row { flex-direction: column; gap: 20px; }
  .col-6 { flex: 1 1 100%; min-width: 0; }

  .section-header-parallax {
    min-height: 200px;
    background-attachment: scroll;
  }

  .section-heading-xl { font-size: 28px; }

  /* Events responsive */
  .event-item {
    flex-wrap: wrap;
    padding: 12px 8px;
  }

  .event-actions {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-top: 8px;
    justify-content: flex-start;
    gap: 8px;
  }

  .btn-ticket {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
  }

  /* Event detail accordion mobile */
  .event-detail-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .event-detail-poster,
  .event-detail-poster:only-child {
    width: 100%;
    max-width: 280px;
  }

  .event-detail-info {
    text-align: center;
  }

  .event-detail-links {
    flex-direction: column;
    width: 100%;
  }

  .event-detail-links .btn-ticket {
    text-align: center;
  }

  .bottom-bar-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .newsletter-form input[type="email"] { border-right: 1px solid #ddd; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form .btn { width: 100%; }
}

@media (max-width: 480px) {
  .social-grid { grid-template-columns: 1fr; gap: 15px; }
  .nav-inner { height: 65px; }
  .mobile-panel { top: 65px; height: calc(100vh - 65px); }
  .hero-slider { margin-top: 65px; }
  .slider-container { aspect-ratio: 4 / 3; }
  .slide img { object-position: center 15%; }
}

/* =============================================================
   TIKTOK SVG ICON
   ============================================================= */
.icon-tiktok {
  display: inline-block;
  vertical-align: middle;
}

.header-icon .icon-tiktok {
  width: 15px;
  height: 15px;
}

.mobile-social .icon-tiktok {
  width: 18px;
  height: 18px;
}

.bottom-social .icon-tiktok {
  width: 15px;
  height: 15px;
}

/* =============================================================
   SUBPAGE LAYOUT (shared by EPK, Fanclub)
   ============================================================= */
.subpage-main {
  margin-top: 80px;
  padding-bottom: 60px;
}

/* =============================================================
   EPK PAGE
   ============================================================= */
.epk-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 2px solid #eee;
  margin-bottom: 40px;
}

.epk-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.epk-subtitle {
  font-size: 16px;
  color: #888;
}

.epk-section {
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}

.epk-section:last-child {
  border-bottom: none;
}

.epk-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--strong);
}

.epk-section p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.epk-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.epk-facts li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
}

.epk-links {
  list-style: none;
}

.epk-links li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.epk-links li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.epk-links li a i {
  width: 20px;
  text-align: center;
  color: var(--accent);
}

.epk-downloads {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.epk-downloads .btn i {
  margin-right: 6px;
}

.epk-gallery {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .epk-facts { grid-template-columns: 1fr; }
  .epk-downloads { flex-direction: column; }
  .epk-downloads .btn { width: 100%; text-align: center; }
}

/* =============================================================
   FANCLUB PAGE
   ============================================================= */
.fanclub-section {
  padding: 50px 0;
  border-bottom: 1px solid #f0f0f0;
}

.fanclub-section:last-child {
  border-bottom: none;
}

.fanclub-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--strong);
}

.fanclub-section p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Fanclub Form */
.fanclub-form {
  max-width: 500px;
  margin-top: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--strong);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-base);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: var(--accent);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.benefit-card {
  padding: 30px;
  background: var(--lightergrey);
  text-align: center;
}

.benefit-card i {
  color: var(--accent);
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* Social Link Cards */
.fanclub-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 25px 35px;
  background: var(--lightergrey);
  color: var(--text);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  min-width: 120px;
}

.social-link-card:hover {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}

.social-link-card:hover .icon-tiktok {
  fill: #fff;
}

.social-link-card span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .fanclub-social { justify-content: center; }
  .subpage-main { margin-top: 70px; }
}

@media (max-width: 480px) {
  .subpage-main { margin-top: 65px; }
}
