/* =========================================
   FONTS
   ========================================= */

@font-face {
  font-family: 'Hiatus';
  src: url('./fonts/Hiatus.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   RESET & BASE
   ========================================= */

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

:root {
  /* --color-bg: #faf9f6; */
  --color-bg: #fbf3fc;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-text-hint: #6b6b6b;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-accent: #896aa2;
  --color-accent-hover: #b78ce0;
  --font-name: 'Hiatus', cursive;
  --font-body: 'Encode Sans Condensed', -apple-system, sans-serif;
  --font-display: 'Encode Sans Condensed', Georgia, serif;
  --radius: 10px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.hidden {
  display: none !important;
}

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


/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.nav--scrolled {
  background: rgba(254, 250, 254, 0.95);
}

.nav-logo {
  font-family: var(--font-name);
  font-size: 32px;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

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

.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: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


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

.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  margin-top: 56px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: #fff;
}

.hero-name {
  font-family: var(--font-name);
  font-size: 104px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 24px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-hover);
  color: var(--color-accent-hover);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}


/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-hint);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}


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

.about-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text-italic {
  font-style: italic;
  text-transform: none;
  font-size: 16px;
}

.about-text p {
  color: var(--color-text);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.about-text em {
  font-style: italic;
}

.about-image {
  flex: 0 0 320px;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-hint);
  font-size: 13px;
}


/* =========================================
   WATCH / VIDEO
   ========================================= */

.watch-layout {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.video-player {
  flex: 1;
  min-width: 0;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.set-list {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.set-list-title {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-hint);
  margin-bottom: 4px;
}

.set-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: var(--font-body);
}

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

.set-item.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.set-item-venue {
  font-size: 14px;
  font-weight: 500;
}

.set-item-meta {
  font-size: 12px;
  color: var(--color-text-hint);
}

.set-item.active .set-item-meta {
  color: rgba(255, 255, 255, 0.6);
}


/* =========================================
   SPOTIFY
   ========================================= */

.spotify-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
}


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

.contact-intro {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 32px;
}

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

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
}

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

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

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

.submit-btn {
  padding: 12px 32px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}

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

.submit-btn:active {
  transform: scale(0.98);
}

.form-success p {
  font-size: 15px;
  color: var(--color-text);
  padding: 24px 0;
}


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

.footer {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--color-text-hint);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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


/* =========================================
   TABLET  (max-width: 900px)
   ========================================= */

@media (max-width: 900px) {

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-name {
    font-size: 72px;
  }

  .about-layout {
    gap: 32px;
  }

  .about-image {
    flex: 0 0 240px;
  }

  .watch-layout {
    flex-direction: column;
  }

  .set-list {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .set-list-title {
    display: none;
  }

  .set-item {
    flex: 0 0 200px;
  }

  .section {
    padding: 60px 0;
  }
}


/* =========================================
   MOBILE  (max-width: 640px)
   ========================================= */

@media (max-width: 640px) {

  /* Nav */
  .nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-logo {
    order: 1;
    margin-right: auto;
  }

  .nav .hero-socials {
    order: 2;
  }

  .nav-links {
    display: none;
  }

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

  .nav-links a {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .hero-content {
    bottom: 60px;
    padding: 0 20px;
  }

  .hero-name {
    font-size: 64px;
  }

  .hero-tagline {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* About */
  .about-layout {
    flex-direction: column;
    gap: 24px;
  }

  .about-image {
    flex: none;
    width: 100%;
    order: -1;
  }

  .about-image-placeholder {
    aspect-ratio: 16 / 9;
  }

  /* Watch */
  .set-item {
    flex: 0 0 170px;
  }

  /* Contact */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
