/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0d0d;
  color: #f0ece4;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* ─── NAVBAR ─────────────────────────────── */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  padding: 18px 40px;
  z-index: 1000;
  border-bottom: 1px solid #1e1e1e;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

nav .nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #f0ece4;
  transform: skewX(-10deg);
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f0ece4;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0ece4;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so text stays readable over any photo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  display: var(--hero-overlay-display, none);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(6rem, 22vw, 18rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: #f0ece4;
  margin-bottom: 30px;
  transform: skewX(-10deg);
  display: inline-block;
}

.bio {
  max-width: 520px;
  line-height: 1.7;
  color: #888;
  font-size: 0.95rem;
  margin: 0 auto 40px;
}

.cta-btn {
  display: inline-block;
  border: 1px solid #f0ece4;
  color: #f0ece4;
  text-decoration: none;
  padding: 12px 32px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: #f0ece4;
  color: #0d0d0d;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 236, 228, 0.3);
  color: #f0ece4;
  transition: border-color 0.2s, color 0.2s;
}

.hero-social-btn svg {
  width: 20px;
  height: 20px;
}

.hero-social-btn:hover {
  border-color: #f0ece4;
  color: #f0ece4;
}

/* ─── SECTIONS ───────────────────────────── */
section {
  padding: 100px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #f0ece4;
}

.section-sub {
  color: #555;
  font-size: 0.85rem;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

/* ─── GIGS ───────────────────────────────── */
.gig {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #1e1e1e;
  gap: 20px;
}

.gig-info {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.gig-date {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: crimson;
  letter-spacing: 0.05em;
  min-width: 60px;
}

.gig-details {
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

button {
  background: transparent;
  border: 1px solid crimson;
  padding: 8px 20px;
  color: crimson;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

button:hover {
  background: crimson;
  color: #f0ece4;
}

/* ─── GALLERY ────────────────────────────── */
#gallery {
  max-width: 1100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: transform 0.5s ease, filter 0.4s;
}

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

/* Grid placement for varied sizes */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ─── SOCIALS ────────────────────────────── */
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 1px solid #222;
  padding: 24px 28px;
  text-decoration: none;
  color: #f0ece4;
  min-width: 180px;
  transition: border-color 0.2s, background 0.2s;
  background: #111;
}

.social-card:hover {
  border-color: crimson;
  background: #1a0000;
}

.social-icon {
  width: 28px;
  height: 28px;
  color: crimson;
  margin-bottom: 6px;
}

.social-name {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.social-handle {
  font-size: 0.78rem;
  color: #555;
  letter-spacing: 0.04em;
}

/* ─── CONTACT ────────────────────────────── */
.email {
  display: inline-block;
  margin-top: 14px;
  color: #f0ece4;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid crimson;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.email:hover {
  color: crimson;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 700px) {
  header {
    padding: 15px 20px;
  }

  #hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: clamp(5rem, 24vw, 8rem);
    width: 100%;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid #1e1e1e;
  }

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

  .hamburger {
    display: flex;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gig-info {
    flex-direction: column;
    gap: 4px;
  }

  .social-card {
    min-width: 140px;
    padding: 18px 20px;
  }
}

/* Full-width landscape gallery item */
.gallery-item.full {
  grid-column: span 3;
}

@media (max-width: 700px) {
  .gallery-item.full {
    grid-column: span 2;
  }
}
