/* ============================================
   VIBES ON THE ROCK — Main Stylesheet
   vibesontherock.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: #F6F3EC;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #071D3A;
  overflow-x: hidden;
}

/* ---- BRAND TOKENS ---- */
:root {
  --navy:   #071D3A;
  --ivory:  #F6F3EC;
  --coral:  #E98970;
  --gold:   #D5B56F;
  --sage:   #BBC0A8;
  --sky:    #AFC8E4;
  --board-bg: #0d1f3c;
}

/* ---- HERITAGE STRIPE ---- */
.stripe {
  height: 6px;
  background: linear-gradient(to right,
    var(--gold)  0%,  var(--gold)  25%,
    var(--coral) 25%, var(--coral) 50%,
    var(--sage)  50%, var(--sage)  75%,
    var(--sky)   75%, var(--sky)   100%
  );
}

/* COUNTDOWN TIMER */
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(7,29,58,0.5);
  border: 1px solid rgba(213,181,111,0.3);
  padding: 12px 18px;
  min-width: 72px;
  backdrop-filter: blur(4px);
}
.countdown-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 32px;
  color: #F6F3EC;
  line-height: 1;
  letter-spacing: 2px;
}
.countdown-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #D5B56F;
  text-transform: uppercase;
  margin-top: 6px;
}
.countdown-sep {
  font-family: 'Share Tech Mono', monospace;
  font-size: 28px;
  color: rgba(213,181,111,0.5);
  line-height: 1;
  margin-bottom: 14px;
}

@media (max-width: 480px) {
  .countdown { gap: 4px; }
  .countdown-item { min-width: 56px; padding: 10px 10px; }
  .countdown-num { font-size: 22px; }
  .countdown-sep { font-size: 20px; }
}
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 236, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  border-bottom: 1px solid rgba(7, 29, 58, 0.08);
}
.nav-logo img {
  width: 180px;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  background: var(--navy);
  color: var(--ivory) !important;
  padding: 10px 22px;
}
.nav-cta:hover {
  background: var(--coral) !important;
  color: var(--navy) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 29, 58, 0.75) 0%,
    rgba(7, 29, 58, 0.3) 55%,
    rgba(7, 29, 58, 0.05) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 60px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-headline strong {
  font-style: normal;
  font-weight: 600;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.hero-sub {
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 400;
  line-height: 1.9;
  color: rgba(244, 240, 232, 0.75);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-block;
  background: var(--coral);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  align-self: flex-start;
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--gold); }
.hero-coords {
  position: absolute;
  bottom: 36px;
  right: 48px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(244, 240, 232, 0.5);
  letter-spacing: 3px;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(213, 181, 111, 0.3);
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 48px auto;
}

/* ============================================
   INTRO SPLIT
   ============================================ */
#about .intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 60px;
  max-width: 1140px;
  margin: 0 auto;
}
.intro-left h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.2;
}
.intro-left h2 strong { font-style: normal; font-weight: 600; }
.intro-right p {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(7, 29, 58, 0.68);
  margin-bottom: 20px;
}
.intro-right p:last-child { margin-bottom: 0; }
.intro-right strong { color: var(--navy); }

/* ============================================
   POETIC BAND
   ============================================ */
.poetic-band {
  background: var(--navy);
  padding: 100px 60px;
  text-align: center;
}
.poetic-band p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 2.6;
  color: rgba(244, 240, 232, 0.4);
}
.poetic-band .climax {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-top: 28px;
  line-height: 1.15;
}
.poetic-band .climax strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  display: block;
}

/* ============================================
   AIRPORT BOARD SECTION
   ============================================ */
#lineup .board-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 60px;
  max-width: 1140px;
  margin: 0 auto;
}
.board-left h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.board-left p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(7, 29, 58, 0.65);
  margin-bottom: 16px;
}
.board-left strong { color: var(--navy); }

/* Board widget */
.airport-board {
  background: var(--board-bg);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.airport-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.board-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.board-live {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.15} }

.board-cols {
  display: grid;
  grid-template-columns: 40px 1fr 110px;
  gap: 8px;
  padding: 0 8px;
  margin-bottom: 8px;
}
.col-head {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}
.board-row {
  display: grid;
  grid-template-columns: 40px 1fr 110px;
  gap: 8px;
  align-items: center;
  padding: 11px 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
  margin-bottom: 6px;
}
.board-row:last-of-type { margin-bottom: 0; }
.board-now {
  display: grid;
  grid-template-columns: 40px 1fr 110px;
  gap: 8px;
  align-items: center;
  padding: 13px 10px;
  border: 1px solid rgba(233,137,112,0.35);
  background: rgba(233,137,112,0.07);
  margin-bottom: 6px;
}
.bc { font-family: 'Share Tech Mono', monospace; font-size: 13px; color: #F4F0E8; letter-spacing: 1px; }
.bc.dim { color: rgba(244,240,232,0.4); font-size: 11px; }
.bc.on { color: var(--sage); font-size: 11px; letter-spacing: 2px; text-align: right; }
.bc.boarding { color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-align: right; }

.board-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  margin-top: 14px;
}
.board-coords { font-family: 'Share Tech Mono', monospace; font-size: 14px; color: var(--gold); letter-spacing: 4px; }
.board-tag { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-style: italic; color: rgba(244,240,232,0.4); }

/* ============================================
   DATE TILES
   ============================================ */
#dates.dates-section {
  background: var(--navy);
  padding: 100px 60px;
  text-align: center;
}
.dates-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(244,240,232,0.35);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dates-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(244,240,232,0.55);
  margin-bottom: 56px;
  line-height: 1.5;
}
.date-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 780px;
  margin: 0 auto 56px;
  gap: 2px;
}
.tile { padding: 44px 24px; text-align: center; }
.tile-day { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.tile-event { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; opacity: 0.65; }
.tile-month { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; line-height: 1; margin-bottom: 4px; }
.tile-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 72px; font-weight: 600; line-height: 1; }
.dates-location {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(244,240,232,0.3);
  letter-spacing: 4px;
}

/* ============================================
   FINAL TAGLINE
   ============================================ */
.final-section {
  padding: 100px 60px;
  text-align: center;
  background: var(--ivory);
}
.final-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}
.final-tagline strong {
  font-style: normal;
  font-weight: 600;
  display: block;
}
.more-coming {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--coral);
  text-transform: uppercase;
  margin: 36px 0 40px;
}
.final-cta {
  display: inline-block;
  background: var(--coral);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 52px;
  transition: background 0.2s;
}
.final-cta:hover { background: var(--gold); }

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-section {
  background: #F6F3EC;
  padding: 100px 60px;
  border-top: 1px solid rgba(7,29,58,0.08);
}
.instagram-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.instagram-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: #071D3A;
  margin-bottom: 10px;
}
.instagram-sub {
  font-size: 13px;
  color: rgba(7,29,58,0.5);
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.instagram-feed {
  margin: 0 auto 32px;
}
.instagram-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #071D3A;
  text-decoration: none;
  border-bottom: 1px solid #D5B56F;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.instagram-cta:hover { color: #E98970; }

@media (max-width: 900px) {
  .instagram-section { padding: 60px 24px; }
}
.social-strip {
  background: var(--ivory);
  padding: 52px 60px;
  border-top: 1px solid rgba(7,29,58,0.08);
  text-align: center;
}
.social-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: rgba(7,29,58,0.35); text-transform: uppercase; margin-bottom: 22px; }
.social-icons { display: flex; justify-content: center; align-items: center; gap: 32px; margin-bottom: 18px; }
.social-icons a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none; transition: color 0.2s;
}
.social-icons a span { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.social-icons a:hover { color: var(--navy); }
.social-handle { font-size: 13px; color: rgba(7,29,58,0.4); margin-bottom: 8px; }
.social-tags { font-size: 10px; color: rgba(7,29,58,0.28); }

/* ============================================
   EMAIL SIGNUP FORM
   ============================================ */
.signup-section {
  background: var(--navy);
  padding: 100px 60px;
}
.signup-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.signup-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}
.signup-sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(244,240,232,0.55);
}
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ivory);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(244,240,232,0.35); }
.form-input:focus { border-color: var(--gold); }
.form-input-full { width: 100%; }
.form-btn {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: var(--navy);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}
.form-btn:hover:not(:disabled) { background: var(--gold); }
.form-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message {
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.form-success { background: rgba(187,192,168,0.15); color: var(--sage); border-left: 3px solid var(--sage); }
.form-error { background: rgba(233,137,112,0.1); color: var(--coral); border-left: 3px solid var(--coral); }

@media (max-width: 900px) {
  .signup-section { padding: 60px 24px; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { flex-direction: column; gap: 10px; }
}
footer {
  background: var(--navy);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 10px; line-height: 1.8; color: rgba(244,240,232,0.28); }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-links a { color: rgba(244,240,232,0.45); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; }
.footer-links a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animated X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(246,243,236,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 13px;
    letter-spacing: 4px;
  }
  .nav-links .nav-cta {
    margin-top: 12px;
    padding: 14px 36px;
    font-size: 11px;
  }
}
  #about .intro-split { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .poetic-band { padding: 60px 24px; }
  #lineup .board-section { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  #dates.dates-section { padding: 60px 24px; }
  .final-section, .social-strip { padding: 60px 24px; }
  .date-tiles { gap: 1px; }
  .tile-num { font-size: 52px; }
  footer { flex-direction: column; text-align: center; padding: 24px; }
}
