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

:root {
  --white:  #FFFFFF;
  --grey:   #F8F8F8;
  --black:  #111111;
  --gold:   #C9A96E;
  --border: #EEEEEE;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Fade-in on scroll ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  line-height: 1;
}
.btn:hover { opacity: 0.75; }

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); opacity: 1; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

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

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: none;
  border: none;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: #C9A96E; }

.nav-right {
  margin-left: auto;
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-right a {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--gold); }
.nav-right svg { width: 17px; height: 17px; fill: currentColor; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: color 0.25s ease;
}

/* ─── Mobile Menu Slide-in Panel ────────────────────────────── */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.3);
}

.mobile-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,230,0.8);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:active {
  color: #C9A96E;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-menu-socials {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}

.mobile-menu-socials a {
  padding: 0;
  border-bottom: none;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000 url('../assets/MIKEY_MEGATICKETS_2.jpeg') center center / cover no-repeat;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
}

.hero-name {
  font-family: var(--font-head);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Bio ──────────────────────────────────────────────────── */
.bio {
  position: relative;
  min-height: 100vh;
  background-image: url('../assets/DSC00566.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
}

.bio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.bio-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  max-width: 680px;
}

.bio-heading {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--black);
}

.bio p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.bio-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  line-height: 1.6;
}
.bio-contact a { color: var(--gold); }
.bio-contact a:hover { opacity: 0.8; }

.bio-socials { margin-top: 24px; }
.bio-socials .social-row { justify-content: flex-start; }
.bio-socials .social-row a { color: rgba(255,255,255,0.7); }
.bio-socials .social-row a:hover { color: var(--gold); }

.social-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.social-row a {
  display: flex;
  color: var(--black);
  transition: color 0.2s;
}
.social-row a:hover { color: var(--gold); }
.social-row svg { width: 22px; height: 22px; fill: currentColor; }

/* ─── Video Break ──────────────────────────────────────────── */
.video-break {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: block;
}

.video-break video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Gallery ─────────────────────────────────────────────── */
.gallery {
  background: var(--black);
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 96px 24px;
  text-align: center;
}

.t-content {
  position: relative;
  z-index: 2;
}

.testimonials .section-heading {
  margin-bottom: 56px;
  color: #fff;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.t-card {
  background: rgba(255,255,255,0.08);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.t-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.t-card blockquote {
  font-family: var(--font-head);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.t-card cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
}

/* ─── Spotify ──────────────────────────────────────────────── */
.spotify {
  position: relative;
  min-height: 70vh;
  background-image: url('../assets/Photo_19-09-2023__22_36_55.jpg');
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}

.spotify-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.spotify-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.spotify-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.spotify-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}

.spotify-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.spotify-embed {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.btn-spotify {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-spotify:hover {
  background: #1DB954;
  border-color: #1DB954;
  color: #fff;
  box-shadow: 0 0 20px rgba(29,185,84,0.4);
}

.btn-spotify-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-spotify:hover .btn-spotify-arrow {
  transform: translateX(3px);
}

/* ─── Photo Divider ────────────────────────────────────────── */
.photo-divider {
  width: 100%;
  height: 60vh;
  background-image: url('../assets/mikey_megatickets_6_clean.jpg');
  background-size: cover;
  background-position: center;
}

/* ─── Booking CTA ──────────────────────────────────────────── */
.booking {
  background: #080808;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.booking-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.booking-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}

.booking-events {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.booking-studio {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 40px;
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: 96px 24px;
}

.contact-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.contact .section-heading { margin-bottom: 10px; }

.contact-sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

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

.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-form .btn { align-self: flex-start; margin-top: 6px; }

.hp-field { display: none !important; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
}

.footer .social-row svg { width: 17px; height: 17px; }

/* ─── WhatsApp Float ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ─── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .bio {
    background-attachment: scroll;
    align-items: flex-end;
  }
  .bio-content {
    padding: 48px 24px;
    max-width: 100%;
  }

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

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

  .footer { flex-direction: column; align-items: flex-start; }
}
