/* Cara Hollander Voice Talent */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #fff;
  min-height: 100vh;
  background: url('images/microphone.jpg') center center / cover no-repeat fixed;
  background-color: #1a1008;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
}

nav ul li a {
  display: block;
  padding: 20px 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
}

/* ===== HERO (home only) ===== */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  padding-top: 60px;
}

.hero-text h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1.1;
}

/* ===== INNER PAGE WRAPPER ===== */
.page-wrapper {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== CONTENT BOX (dark panel) ===== */
.content-box {
  background: rgba(15, 10, 5, 0.82);
  width: 100%;
  max-width: 860px;
  margin: 20px 20px 60px;
  padding: 50px 60px 60px;
}

.page-heading {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ===== AUDIO TRACKS ===== */
.audio-tracks {
  margin-bottom: 50px;
}

.audio-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.audio-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Custom audio player row */
.audio-row .play-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
}

.audio-row .play-btn::before {
  content: '▶';
  font-size: 11px;
  opacity: 0.8;
}

.audio-row .track-name {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  padding: 14px 0;
}

.audio-row audio {
  flex: 1;
  height: 32px;
  opacity: 0.85;
  /* dark filter for audio element */
  filter: invert(1) hue-rotate(180deg);
}

/* ===== VIDEO SECTION ===== */
.video-heading {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-item p {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== EXPERIENCE ===== */
.exp-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.exp-col h3 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.exp-col h3:first-child { margin-top: 0; }

.exp-col ul {
  list-style: none;
}

.exp-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

/* ===== CONTACT ===== */
.contact-center {
  text-align: center;
  padding: 40px 0 20px;
}

.contact-center h2 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}

.contact-center .phone {
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.contact-center .email a {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-center .email a:hover {
  color: #fff;
  border-color: #fff;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 24px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .content-box { padding: 30px 22px 40px; margin: 10px 10px 40px; }
  .video-grid { grid-template-columns: 1fr; }
  .exp-columns { grid-template-columns: 1fr; gap: 30px; }
  nav ul li a { padding: 16px 10px; font-size: 10px; }
  .hero-text h1 { font-size: 36px; }
  .contact-center .phone { font-size: 32px; }
}
