/* ============================================
   OPTION 3: BOLD/COLORFUL — "ELECTRIC ENERGY"
   Redesigned with intentional typographic hierarchy
   and refined atmospheric effects.

   Fonts:
   - Artist Name: 'Benton Mod Display' (self-hosted, Black weight)
   - Body/Nav:    'Syne' (Google Fonts — contemporary grotesque)

   Color Palette:
   - Deep base:   #0c0a1a (near-black violet)
   - Gradient:    #8B5CF6 (purple) → #EC4899 (pink) → #F97316 (orange)
   - Surface:     rgba(255,255,255,0.04)–0.08 (glass tints)
   - Text:        #f0eef5 (warm white), #a09cb5 (muted lavender)

   CUSTOMIZE: Search for "CUSTOMIZE:" to find all tunable values
   ============================================ */

/* ---- Self-hosted Benton Mod Display Black ----
   The .woff2 file lives in ../fonts/
   UPDATE: If you add more weights, add more @font-face blocks */
@font-face {
  font-family: 'Benton Mod Display';
  src: url('../fonts/BentonModDisp-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Custom Properties ----
   CUSTOMIZE: Change these to re-skin the entire site */
:root {
  /* Background tones */
  --bg-deep: #0c0a1a;
  --bg-surface: #100e22;
  --bg-elevated: rgba(255, 255, 255, 0.04);

  /* Gradient palette — the purple→pink→orange you liked */
  --gradient-start: #8B5CF6;
  --gradient-mid: #EC4899;
  --gradient-end: #F97316;

  /* Glass / borders */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --line-subtle: rgba(255, 255, 255, 0.06);

  /* Text */
  --text-primary: #f0eef5;
  --text-secondary: #a09cb5;
  --text-muted: #5c5878;

  /* Fonts */
  --font-display: 'Benton Mod Display', 'Georgia', serif;
  --font-body: 'Syne', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   SHARED LABEL COMPONENT
   The "About" / "Gallery" / "Connect" section labels
   — uppercase monospace-esque with a gradient line
   ============================================ */
.label-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.label-line {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--gradient-start), transparent);
  margin-left: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease,
              backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(12, 10, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---- Mobile Hamburger ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle.active .hamburger { background-color: transparent; }
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---- Background photo with Ken Burns slow zoom ----
   UPDATE: Change the image path if you rename the file.
   CUSTOMIZE: Adjust animation-duration (30s) for faster/slower zoom.
   Longer = more subtle. Shorter = more noticeable. */
.hero-photo {
  position: absolute;
  inset: -8%;          /* slightly oversized so the zoom never reveals edges */
  background-image: url('../images/larimer-lounge-april-2026-landing.jpg');
  background-size: cover;
  background-position: center 30%;  /* keeps Sprouted in frame */
  animation: ken-burns 30s ease-in-out infinite alternate;
  will-change: transform;
}

/* Smooth, continuous zoom — no start/end jerk
   Alternate direction means it eases in and out naturally */
@keyframes ken-burns {
  from { transform: scale(1);    }
  to   { transform: scale(1.08); }
}

/* ---- Layered overlay ----
   Three layers working together:
   1. Colour tint — deepens the existing magentas/purples in the photo
   2. Vignette — darkens edges so text pops at all viewport sizes
   3. Bottom gradient — hard fade to page background colour for smooth section transition */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* 1. Colour tint — amplifies the photo's own palette */
    linear-gradient(
      135deg,
      rgba(80, 20, 120, 0.45) 0%,
      rgba(180, 30, 120, 0.25) 50%,
      rgba(30, 10, 60, 0.50) 100%
    ),
    /* 2. Radial vignette — pulls focus to centre */
    radial-gradient(
      ellipse at center,
      transparent 40%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    /* 3. Bottom fade — smooth transition into the page background */
    linear-gradient(
      to bottom,
      transparent 50%,
      rgba(12, 10, 26, 0.85) 85%,
      var(--bg-deep) 100%
    );
}

/* ---- Hero Content ---- */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-md);
}

.hero-super {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fade-down 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-family: var(--font-display);
  /* CUSTOMIZE: Adjust clamp values for different sizes */
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  /* Gradient text */
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--gradient-start) 40%,
    var(--gradient-mid) 70%,
    var(--gradient-end) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Entrance animation */
  opacity: 0;
  animation: title-reveal 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  opacity: 0;
  animation: fade-up 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-accent {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gradient-mid), transparent);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

.hero-cta {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: 0.85rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, color 0.4s ease;
  opacity: 0;
  animation: fade-up 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-cta:hover {
  border-color: transparent;
}

.hero-cta:hover::before {
  opacity: 1;
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fade-up 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gradient-mid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---- Hero entrance animations ---- */
@keyframes title-reveal {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-deep);
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-label {
  display: flex;
  align-items: center;
  padding-top: 0.6rem;
}

.about-content {
  max-width: 640px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  border: none;
  padding: 0;
  margin: 0;
}

.about-body {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================================
   SHOWS TIMELINE
   ============================================ */
.shows {
  padding: var(--space-xl) 0 var(--space-2xl);
  background-color: var(--bg-deep);
  position: relative;
}

.shows::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-subtle), transparent);
}

.shows-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

/* Timeline container — vertical line on the left */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

/* The continuous vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--gradient-start),
    var(--gradient-mid) 50%,
    transparent 100%
  );
}

/* Each show entry */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Dot on the line */
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gradient-mid);
  flex-shrink: 0;
  z-index: 1;
}

/* Text block */
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.timeline-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.timeline-venue {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.timeline-city {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--space-xl) 0 var(--space-2xl);
  background-color: var(--bg-deep);
  position: relative;
}

/* Subtle top border gradient */
.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-subtle), transparent);
}

.gallery-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

/* Gallery group titles */
.gallery-group-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.gallery-group-title.first {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* 4:3 aspect ratios — horizontal and vertical */
.gallery-horizontal {
  aspect-ratio: 4 / 3;
}

.gallery-vertical {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Gradient overlay — visible on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.35),
    rgba(236, 72, 153, 0.25),
    rgba(249, 115, 22, 0.15)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}



/* ============================================
   CONNECT / SOCIAL LINKS SECTION
   ============================================ */
.connect {
  padding: var(--space-xl) 0 var(--space-2xl);
  background-color: var(--bg-deep);
  position: relative;
}

.connect::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-subtle), transparent);
}

.connect-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  position: relative;
  transition: color 0.35s ease;
}

.social-link i {
  font-size: 1.3rem;
  transition: color 0.35s ease;
}

.social-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
  color: var(--text-primary);
}

.social-link:hover i {
  color: var(--gradient-mid);
}

.social-link:hover::after {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-md) 0;
  background-color: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
}

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

.footer-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger gallery items */
.gallery-item.fade-in:nth-child(1) { transition-delay: 0.0s; }
.gallery-item.fade-in:nth-child(2) { transition-delay: 0.08s; }
.gallery-item.fade-in:nth-child(3) { transition-delay: 0.16s; }
.gallery-item.fade-in:nth-child(4) { transition-delay: 0.24s; }
.gallery-item.fade-in:nth-child(5) { transition-delay: 0.32s; }
.gallery-item.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  :root {
    --space-xl: 5rem;
    --space-2xl: 7rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: rgba(12, 10, 26, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  /* Stack about layout */
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    gap: var(--space-md);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .social-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .social-link::after {
    display: none;
  }

  .hero-line-accent {
    width: 30px;
  }

  .hero-cta {
    margin-top: var(--space-md);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
