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

:root {
  --bg: #0e0e0e;
  --bg-alt: #141414;
  --surface: #181818;
  --card: #1f1f1f;
  --border: #2e2e2e;
  --gold: #c9a84c;
  --gold-soft: rgba(201,168,76,0.12);
  --text: #f0ece4;
  --text-muted: #a09c94;
  --muted: #888;
  --card-width: 360px;
  --card-gap: 24px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 40px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

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

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

#contact-nav-button {
  color: var(--text);
  border: 1px solid var(--gold);
  padding: 0.5em 1em;
  border-radius: 6px;
}

#contact-nav-button:hover {
  background: var(--gold);
  color: #0e0e0e;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  padding-top: 0;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('assets/piano.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  border-radius: 100px; 
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Add this to Contact on Nav Bar */
.hero-button:hover {
  background: var(--gold);
  color: #0e0e0e;
}

/* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */
section {
  padding: 100px 40px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  margin: 20px 0 28px;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
#about {
  background: var(--bg);
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-content .section-eyebrow {
  display: block;
}

.about-content h2 {
  margin-bottom: 12px;
}

.about-content .section-divider {
  margin: 20px auto 28px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   REPERTOIRE
───────────────────────────────────────── */
#repertoire {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.repertoire-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.repertoire-content .section-eyebrow {
  display: block;
}

.repertoire-content h2 {
  margin-bottom: 12px;
}

.repertoire-content .section-divider {
  margin: 20px auto 32px;
}

.repertoire-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  
}

.repertoire-content img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 0 auto 28px;
  display: block;
}

.repertoire-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.repertoire-button {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
  padding: 0.85em 2.4em;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.repertoire-button:hover {
  background: var(--gold);
  color: #0e0e0e;
}

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
#reviews {
  background: var(--bg);
  padding-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   CAROUSEL
───────────────────────────────────────── */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 32px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: var(--card-gap);
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  width: var(--card-width);
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c8c4bc;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.author-info .role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-wrapper {
  display: flex;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.contact-left {
  flex: 1;
  color: var(--text);
}

.contact-left .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.contact-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-left p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.contact-detail span.icon {
  color: var(--gold);
  font-size: 1rem;
}

.contact-right {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

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

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

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  resize: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

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

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #0e0e0e;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.form-notice {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  margin-top: 14px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

footer span {
  color: var(--gold);
}

.social-logos {
  margin-top: 1%;
  justify-self: center;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  section {
    padding: 70px 24px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

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

  #contact {
    padding: 70px 24px;
  }
    .repertoire-images {
    flex-direction: column;
    align-items: center;
  }

  .repertoire-images img {
    width: 100%;
    max-width: 100%;
  }

/* ─────────────────────────────────────────
   HAMBURGER MENU
───────────────────────────────────────── */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  /* Animate into X when open */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    background: rgba(14,14,14,0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 1000;
  }

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

  .nav-links li a {
    display: block;
    padding: 14px 32px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
  }

  .nav-links li a.active {
  color: var(--gold);
}

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    color: var(--gold);
    background: var(--gold-soft);
  }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

}
