/* ============================================================
   VOICE ACTOR PORTFOLIO — style.css
   Customize: search for "CUSTOMIZE" comments throughout
   ============================================================ */

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

/* CUSTOMIZE: change these color variables to match your brand */
:root {
  --bg:      #0c0c0e;
  --bg2:     #141417;
  --bg3:     #1c1c21;
  --accent:  #e8c97e;   /* gold — change to your preferred accent */
  --accent2: #c9a84c;   /* darker gold for hover states */
  --text:    #f0ede6;
  --muted:   #8a8880;
  --border:  rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- NAV ---- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

.nav-cta {
  background: var(--accent);
  color: #0c0c0e;
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.nav-cta:hover { background: var(--accent2); }

/* ---- HERO ---- */
.hero {
  padding: 6rem 3rem 4rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* ---- NOW RECORDING BADGE ---- */
.now-recording {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 201, 126, 0.3);
  padding: 4px 12px;
  margin-top: 1rem;
}

.rec-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ---- DEMO SECTION ---- */
.demo-section { padding: 0 3rem 5rem; }

.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active     { color: var(--accent); border-bottom-color: var(--accent); }
.tab-btn:hover:not(.active) { color: var(--text); }

.tab-panel          { display: none; }
.tab-panel.active   { display: block; }

/* ---- TRACK LIST ---- */
.track-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track {
  display: grid;
  grid-template-columns: 48px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.track:hover,
.track.playing {
  background: var(--bg3);
  border-color: rgba(232, 201, 126, 0.2);
}

.track.playing .track-num        { display: none; }
.track.playing .track-play-icon  { display: flex; }

.track-num {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
}

.track-play-icon {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.track-tags {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.track-badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(232, 201, 126, 0.12);
  color: var(--accent);
  border: 1px solid rgba(232, 201, 126, 0.25);
  white-space: nowrap;
}

.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.dl-btn:hover {
  color: var(--accent);
  border-color: rgba(232, 201, 126, 0.4);
  background: rgba(232, 201, 126, 0.07);
}

.dl-btn svg { pointer-events: none; }

/* ---- STICKY PLAYER ---- */
.player-bar {
  position: sticky;
  bottom: 0;
  background: var(--bg3);
  border-top: 1px solid rgba(232, 201, 126, 0.25);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 50;
}

.player-bar.visible { transform: translateY(0); }

.player-title {
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 160px;
}

.player-title span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.btn-play-main {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0e;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-play-main:hover { background: var(--accent2); }

.progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.time-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 800px;
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-style: normal;
}

.quote-attr {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 2rem;
}

.quote-attr strong {
  color: var(--text);
  font-weight: 500;
  display: block;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

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

.cta-section p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cta-btn {
  background: var(--accent);
  color: #0c0c0e;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- ABOUT PAGE ---- */
.about-body {
  padding: 0 3rem 5rem;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  max-width: 1100px;
  padding-top: 3rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.about-text h2:first-child { margin-top: 0; }

.about-text p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  margin-bottom: 1rem;
}

.about-list li {
  color: var(--muted);
  font-weight: 300;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.about-list li::before {
  content: '— ';
  color: var(--accent);
}

.photo-placeholder {
  background: var(--bg2);
  border: 1px dashed rgba(232, 201, 126, 0.3);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.photo-placeholder span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.photo-placeholder p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.photo-placeholder code {
  background: var(--bg3);
  padding: 2px 6px;
  font-size: 0.75rem;
  color: var(--accent);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 0 3rem 5rem;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  max-width: 1000px;
  padding-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(232, 201, 126, 0.5);
}

.field-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.field-group select option { background: var(--bg2); }

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

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--accent); }
.contact-details span { color: var(--muted); font-weight: 300; }

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .demo-section,
  .testimonial-section,
  .cta-section,
  .about-body,
  .contact-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .player-bar { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .player-title { min-width: 100%; }
  .track { grid-template-columns: 36px 1fr auto auto; }
  .track-badge { display: none; }
}
