/* ========================================
   TURTLE SMASH – LIVE BAND EMO NIGHT
   ======================================== */

:root {
  --pink: #e84393;
  --pink-dark: #b5307a;
  --pink-glow: #fd79a8;
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-800: #262626;
  --gray-700: #333333;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #f5f5f5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--pink-glow);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--gray-300);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-logo {
  max-width: 350px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(232, 67, 147, 0.4));
  border-radius: 12px;
}
.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  color: var(--white);
  box-shadow: 0 0 30px rgba(232, 67, 147, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-700);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--dark);
}
.section-black {
  background: var(--black);
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-300);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--gray-300);
  line-height: 1.7;
}
.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ---- BANDSINTOWN WIDGET ---- */
.bandsintown-widget {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--gray-800);
}

/* ---- VIDEOS ---- */
.video-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}
.video-grid:last-child {
  margin-bottom: 0;
}
.video-grid-portrait {
  grid-template-columns: repeat(3, 1fr);
}
.video-grid-landscape {
  grid-template-columns: repeat(2, 1fr);
}
.video-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
}
.video-card video {
  width: 100%;
  display: block;
  background: var(--darker);
}

/* ---- PHOTOS ---- */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photos-grid img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s;
  cursor: pointer;
}
.photos-grid img:hover {
  transform: scale(1.03);
}

/* ---- STORE ---- */
.store-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  background: #fff;
}
.store-embed iframe {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}
.store-fallback {
  text-align: center;
  margin-top: 24px;
}
.store-fallback .btn {
  font-size: 0.8rem;
}

/* ---- SOCIAL ---- */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  color: var(--gray-300) !important;
  transition: all 0.3s;
  min-width: 120px;
}
.social-link:hover {
  border-color: var(--pink);
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 67, 147, 0.15);
}
.social-link svg {
  width: 28px;
  height: 28px;
}
.social-link span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--darker);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-800);
}

/* ---- ANIMATIONS ---- */
.animate-in {
  opacity: 0.01;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-tagline {
    font-size: 1.8rem;
  }
  .hero-logo {
    max-width: 250px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .photos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-grid-portrait {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
  .video-grid-landscape {
    grid-template-columns: 1fr;
  }
  .bandsintown-widget {
    padding: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .photos-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    gap: 12px;
  }
  .social-link {
    padding: 16px 20px;
    min-width: 100px;
  }
}
