/*
Theme Name: Love Vibes Fest
Theme URI: https://www.lovevibesfest.com
Description: Love Vibes Fest official one-pager
Version: 1.0
Author: Laz
*/

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

:root {
  --purple: #7B4BC7;
  --blue: #4B9FE1;
  --pink: #E91E9C;
  --dark: #0D0D14;
  --white: #FFFFFF;
  --grad: linear-gradient(135deg, #7B4BC7 0%, #4B9FE1 50%, #E91E9C 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── HERO ── */
.hero {
  min-height: auto;
  background: var(--grad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 40px 24px 50px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-date {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(20px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-venue {
  font-size: clamp(14px, 3.5vw, 18px);
  opacity: 0.85;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.hero-time {
  font-size: clamp(13px, 3vw, 16px);
  opacity: 0.7;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.btn-white {
  background: var(--white);
  color: var(--purple);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

/* ── SECTION BASE ── */
section { padding: 72px 24px; }

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-text {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 600px;
}

/* ── INTRO ── */
.intro {
  background: var(--dark);
  text-align: center;
}

.intro .section-text { margin: 0 auto; }

/* ── ARENAS ── */
.arenas {
  background: #111118;
}

.arenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.arena-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.arena-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.15;
}

.arena-rnb { background: #1A1A1A; border: 1px solid #1A6FE8; }
.arena-rnb .arena-icon { color: #1A6FE8; }

.arena-ash { background: #1A1A1A; border: 1px solid #B8860B; }
.arena-ash .arena-icon { color: #B8860B; }

.arena-glitter { background: #1A1A1A; border: 1px solid #E91E9C; }
.arena-glitter .arena-icon { color: #E91E9C; }

.arena-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.arena-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.arena-desc {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
}

/* ── WHATSAPP ── */
.whatsapp-section {
  background: var(--dark);
  text-align: center;
}

.whatsapp-section .section-text { margin: 0 auto 36px; }

.wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  max-width: 340px;
  justify-content: flex-start;
  transition: transform 0.2s, opacity 0.2s;
}

.wa-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.wa-rnb { background: #1A6FE8; color: #fff; }
.wa-ash { background: #B8860B; color: #fff; }
.wa-glitter { background: #E91E9C; color: #fff; }

.wa-icon { font-size: 20px; }

.discount-badge {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--grad);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── TICKETS ── */
.tickets-section {
  background: #111118;
  text-align: center;
}

.ticket-price {
  font-size: clamp(48px, 12vw, 96px);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.ticket-note {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 32px;
}

.coming-soon {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  background: #080810;
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid #1a1a2a;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.3;
}

/* ── LINE-UP TEASER ── */
.lineup-section { background: var(--dark); }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.lineup-card {
  background: #111118;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.lineup-brand { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.lineup-sub { font-size: 14px; opacity: 0.62; margin-bottom: 18px; line-height: 1.5; max-width: 32ch; }
.lineup-status { font-size: 15px; font-weight: 700; opacity: 0.88; margin: 0 auto 20px; line-height: 1.38; max-width: 34ch; }

.lineup-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  min-height: 44px;
  width: min(100%, 340px);
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
  transition: filter 0.2s, transform 0.2s;
}
.lineup-alert:hover { filter: brightness(1.08); transform: translateY(-1px); }

.lineup-exp { list-style: none; margin: 8px auto 20px; text-align: left; display: inline-block; max-width: 100%; }
.lineup-exp li { font-size: 14px; opacity: 0.8; padding: 4px 0; }
.lineup-card--ash {
  background: linear-gradient(180deg, rgba(245,166,35,0.08), #111118 58%);
  border-color: rgba(245,166,35,0.9);
}
.lineup-card--rnb {
  background: linear-gradient(180deg, rgba(37,99,235,0.1), #111118 58%);
  border-color: rgba(37,99,235,0.9);
}
.lineup-card--glitter {
  background: linear-gradient(180deg, rgba(233,30,140,0.1), #111118 58%);
  border-color: rgba(233,30,156,0.9);
}
.lineup-card--ash .lineup-alert { background: linear-gradient(135deg, #F5A623, #E91E8C); }
.lineup-card--rnb .lineup-alert { background: linear-gradient(135deg, #2563EB, #8B5CF6); }
.lineup-card--glitter .lineup-alert { background: linear-gradient(135deg, #E91E8C, #8B5CF6); }
.lineup-card--glitter .lineup-sub { margin-bottom: 20px; }

/* ── WHAT'S INCLUDED ── */
.included-section { background: #111118; text-align: center; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.included-item {
  background: var(--dark);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}

.included-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.included-label { font-size: 13px; font-weight: 600; line-height: 1.4; opacity: 0.85; }

.indoors-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(123,75,199,0.15);
  border: 1px solid rgba(123,75,199,0.4);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.indoors-icon { font-size: 28px; flex-shrink: 0; }
.indoors-banner strong { display: block; font-size: 16px; margin-bottom: 6px; }
.indoors-banner p { font-size: 14px; opacity: 0.75; line-height: 1.6; margin: 0; }

/* ── TRAVEL ── */
.travel-section { background: var(--dark); text-align: center; }

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}

.travel-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
}

.travel-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.travel-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.travel-desc { font-size: 14px; line-height: 1.65; opacity: 0.7; }
.travel-desc a { color: #a78bda; text-decoration: underline; }

/* ── EVENT GUIDANCE ── */
.guidance-section { background: #111118; text-align: center; }

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.guidance-card { border-radius: 16px; padding: 24px 20px; }
.guidance-card--yes { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); }
.guidance-card--no { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); }
.guidance-heading { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.guidance-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.guidance-list li { font-size: 14px; opacity: 0.8; line-height: 1.5; }

.guidance-rules {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.guidance-rule {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.guidance-rule:last-child { border-bottom: none; }
.rule-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.guidance-rule strong { display: block; font-size: 15px; margin-bottom: 4px; }
.guidance-rule p { font-size: 14px; opacity: 0.65; line-height: 1.6; margin: 0; }

/* ── FAQs ── */
.faq-section { background: var(--dark); text-align: center; }

.faq-list {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-question {
  font-size: 15px;
  font-weight: 600;
  padding: 20px 36px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--white);
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  opacity: 0.5;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 15px; line-height: 1.7; opacity: 0.7; }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #0d0d14;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  transition: transform 0.3s;
}
.sticky-bar--hidden { transform: translateY(100%); }

.sticky-bar-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-info { display: flex; flex-direction: column; gap: 2px; }
.sticky-bar-info strong { font-size: 14px; font-weight: 700; }
.sticky-bar-info span { font-size: 12px; opacity: 0.55; }

.sticky-bar-btn {
  background: var(--grad);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.sticky-bar-btn:hover { opacity: 0.85; }

/* ── MOBILE ── */
@media (max-width: 600px) {
  .hero { padding-bottom: 18px; }
  .hero::after { height: 42px; }
  .hero-logo { width: 140px; height: 140px; }
  .hero-time { margin-bottom: 8px; }
  .intro { padding-top: 25px; }
  .arenas-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; gap: 18px; }
  .lineup-card { min-height: auto; padding: 30px 20px; }
  .lineup-status { font-size: 14px; max-width: 29ch; }
  .lineup-alert { width: 100%; padding-left: 16px; padding-right: 16px; }
  .lineup-card--glitter .lineup-exp { width: min(280px, 100%); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-grid { grid-template-columns: 1fr; }
  .guidance-grid { grid-template-columns: 1fr; }
}

body { padding-bottom: 70px; }



/* === FOLLOW LOVE VIBES FEST === */
.follow-section { padding: 76px 20px; text-align: center; }
.follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.follow-links--single {
  max-width: 640px;
  margin: 0 auto;
}
.follow-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.follow-links .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}
.social-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}
.social-icon--instagram {
  background: radial-gradient(circle at 30% 105%, #fdf497 0%, #fdf497 12%, #fd5949 34%, #d6249f 58%, #285AEB 100%);
}
.social-icon--tiktok {
  background: #050505;
  box-shadow: inset 2px 0 0 #25f4ee, inset -2px 0 0 #fe2c55;
}
.social-icon--youtube { background: #ff0033; }
.social-icon--facebook { background: #1877f2; }
.social-icon--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

@media (max-width: 600px) {
  .follow-section { padding: 60px 20px; }
  .follow-links--single { max-width: 320px; }
  .follow-links .social-icon { width: 52px; height: 52px; }
}


/* === HERO VIDEO === */
.hero-video-section {
  padding: 0 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-wrap {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  aspect-ratio: 9 / 16;
  position: relative;
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}
@media (max-width: 480px) {
  .hero-video-wrap { max-width: 320px; border-radius: 14px; }
}
