/*
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: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.social-links a:hover { opacity: 1; }

.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: 20px;
  margin-top: 40px;
}

.lineup-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.lineup-brand { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.lineup-sub { font-size: 13px; opacity: 0.55; margin-bottom: 16px; line-height: 1.5; }
.lineup-status { font-size: 14px; font-weight: 600; opacity: 0.8; margin-bottom: 16px; }

.lineup-alert {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.lineup-alert:hover { background: rgba(255,255,255,0.14); }

.lineup-exp { list-style: none; margin-top: 12px; text-align: left; display: inline-block; }
.lineup-exp li { font-size: 14px; opacity: 0.8; padding: 4px 0; }
.lineup-card--glitter { border-color: rgba(233,30,156,0.3); }

/* ── 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-logo { width: 140px; height: 140px; }
  .arenas-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-grid { grid-template-columns: 1fr; }
  .guidance-grid { grid-template-columns: 1fr; }
}

body { padding-bottom: 70px; }

