/* ============================================================
   LAFTR — styles.css
   ============================================================ */

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

:root {
  --bg:        #080808;
  --bg-alt:    #0f0f0f;
  --text:      #efefef;
  --text-muted:#666666;
  --accent:    #00e5cc;
  --border:    #1e1e1e;
  --max-w:     1160px;
  --nav-h:     72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- Layout ---- */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ---- Typography ---- */

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

/* ---- Button ---- */

.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--accent);
  color: #000;
}

/* ============================================================
   NAV
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.55) 55%,
    rgba(8,8,8,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-logo {
  width: clamp(200px, 38vw, 320px);
  height: auto;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: lowercase;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */

#about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 55%;
  height: 55%;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  pointer-events: none;
}

/* ============================================================
   GALLERY
   ============================================================ */

#gallery {
  padding: 0;
  background: var(--bg);
}

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

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(25%);
  transition: filter 0.4s;
}

.gallery-item:hover img {
  filter: grayscale(0%);
}

.gallery-wide {
  position: relative;
  overflow: hidden;
}

.gallery-wide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 60%;
  filter: grayscale(15%);
}

.gallery-wide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.05) 0%,
    rgba(8,8,8,0.45) 100%
  );
}

/* ============================================================
   MIXES
   ============================================================ */

#mixes {
  background: var(--bg-alt);
}

.mixes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mix-embed {
  border: 1px solid var(--border);
  overflow: hidden;
  background: #111;
}

/* ============================================================
   GIGS
   ============================================================ */

#gigs {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.gigs-list {
  border-top: 1px solid var(--border);
}

.gig-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.gig-item:hover {
  background: rgba(255,255,255,0.02);
}

.gig-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.gig-venue {
  font-size: 1rem;
  font-weight: 500;
}

.gig-city {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gigs-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}

/* ============================================================
   PRESS KIT
   ============================================================ */

#press {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.press-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.press-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */

#contact {
  background: var(--bg);
}

.contact-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: -0.75rem;
  margin-bottom: 2.5rem;
}

.contact-form {
  max-width: 700px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-form > .form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.social-links {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-item i {
  font-size: 1.15rem;
}

.social-item span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-item:hover {
  color: var(--accent);
}

.copyright {
  font-size: 0.72rem;
  color: #2e2e2e;
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 420px;
  }

  .press-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:last-child {
    grid-column: 1 / -1;
  }

  .gallery-item:last-child img {
    height: 300px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:last-child {
    grid-column: auto;
  }

  .gallery-item img {
    height: 280px;
  }

  .gallery-wide img {
    height: 300px;
  }

  .gig-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .social-links {
    gap: 1.75rem;
  }
}
