/*
Theme Name: Shelly Honey Voice Over
Theme URI: https://shellyhoney.com
Author: Shelly Honey
Description: Professional voice over talent portfolio for Shelly Honey.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shelly-honey
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --bg:        #f7f9fb;
  --fg:        #101e37;
  --primary:   #0e70f1;
  --primary-d: #0a5bc8;
  --muted:     #dde8f4;
  --muted-fg:  #5d6e8a;
  --card:      #ffffff;
  --border:    #d1ddf0;
  --radius:    1rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); text-decoration: none; color: #fff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); text-decoration: none; color: #fff; }
.btn-dark { background: var(--fg); color: #fff; }
.btn-dark:hover { background: #1a2f52; text-decoration: none; color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--fg); color: var(--fg); }
.btn-outline-dark:hover { background: rgba(16,30,55,.05); text-decoration: none; color: var(--fg); }

/* ── NAVBAR ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,30,55,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-brand {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
}
.site-brand:hover { text-decoration: none; color: #fff; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.brand-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.site-nav ul {
  display: flex;
  list-style: none;
  gap: .25rem;
}
.site-nav a {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .75rem;
  border-radius: .375rem;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 4px 0; transition: .3s;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #101e37; padding: 1rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { display: block; padding: .7rem 1rem; }
}

/* ── PAGE HERO (dark) ── */
.page-hero {
  background: var(--fg);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.hero-rule {
  width: 4rem; height: 4px;
  background: var(--primary);
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 40rem; margin: 0 auto; }

/* ── SECTION ── */
.section { padding: 5rem 1.5rem; }
.section-light { background: var(--bg); }
.section-muted { background: var(--muted); }
.section-dark  { background: var(--fg); color: #fff; }
.section-title { font-size: clamp(1.6rem,4vw,2.5rem); margin-bottom: .5rem; text-align: center; }
.section-rule {
  width: 4rem; height: 4px;
  background: var(--primary);
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
}
.section-lead { text-align: center; color: var(--muted-fg); font-size: 1.05rem; max-width: 36rem; margin: 0 auto 3rem; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); transform: translateY(-2px); }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }

/* ── FOOTER ── */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,.6);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.25rem; margin-bottom: .5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 1.5rem 0; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--fg);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-size: clamp(4rem, 7vw, 7rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-name em { color: var(--primary); font-style: italic; display: block; }
.hero-sub {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--fg) 0%, transparent 30%);
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-text { padding: 4rem 1.5rem; order: 2; }
  .hero-image { min-height: 50vw; order: 1; }
  .hero-image::after { background: linear-gradient(to top, var(--fg) 0%, transparent 40%); }
}

/* Service icons */
.service-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(14,112,241,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.4rem;
  transition: background .2s, color .2s;
}
.card:hover .service-icon { background: var(--primary); color: #fff; }

/* CTA strip */
.cta-strip {
  background: var(--fg);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-strip h2 { font-size: clamp(1.6rem,4vw,2.5rem); margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,.6); max-width: 32rem; margin: 0 auto 2rem; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translate(12px, 12px);
  border-radius: var(--radius);
  z-index: 0;
}
.about-photo-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  display: block;
}
.about-bio h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-bio p { color: var(--muted-fg); margin-bottom: 1rem; line-height: 1.8; }
.info-box {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.info-box h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.info-box a { color: var(--primary); }
.info-box p { font-size: .9rem; color: var(--muted-fg); margin: .25rem 0; }
.info-box .divider { border-top: 1px solid var(--border); margin: .75rem 0; }
.about-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ══════════════════════════════════════
   DEMOS PAGE
══════════════════════════════════════ */
.demos-list { max-width: 56rem; margin: 4rem auto; padding: 0 1.5rem 6rem; display: flex; flex-direction: column; gap: 1.5rem; }

.audio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.audio-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.audio-card-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.play-btn {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: background .2s, transform .15s;
}
.play-btn:hover { background: var(--primary-d); transform: scale(1.05); }
.play-btn.playing { background: var(--fg); }
.audio-meta { flex: 1; }
.audio-meta h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.audio-meta p { color: var(--muted-fg); font-size: .9rem; margin-bottom: .75rem; }
.progress-wrap {
  width: 100%;
  height: .5rem;
  background: var(--muted);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  margin-bottom: .35rem;
}
.progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 9999px;
  width: 0%;
  transition: width .1s linear;
}
.time-row { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted-fg); font-variant-numeric: tabular-nums; }

.demos-cta {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 6rem;
}
.demos-cta h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.demos-cta p { color: var(--muted-fg); max-width: 32rem; margin: 0 auto 2rem; }

/* ══════════════════════════════════════
   PHOTOS PAGE
══════════════════════════════════════ */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto 6rem;
  padding: 0 1.5rem;
}
.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,30,55,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-caption { color: #fff; font-size: .85rem; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: .5rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ══════════════════════════════════════
   RESUME PAGE
══════════════════════════════════════ */
.resume-wrap { max-width: 56rem; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.resume-agency {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  font-size: .9rem;
  color: var(--muted-fg);
}
.resume-agency strong { display: block; color: var(--fg); margin-bottom: .4rem; font-family: 'Inter', sans-serif; }
.resume-section { margin-bottom: 4rem; }
.resume-section h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.resume-rule { width: 2.5rem; height: 3px; background: var(--primary); border-radius: 9999px; margin-bottom: 2rem; }
.credits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; }
.credit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.credit-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.dot-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.dot-list li { display: flex; gap: .5rem; font-size: .875rem; color: var(--muted-fg); align-items: flex-start; }
.dot-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(14,112,241,.4);
  flex-shrink: 0;
  margin-top: .45rem;
}
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
.skill-item { background: var(--card); border: 1px solid var(--border); border-radius: .75rem; padding: 1.25rem; }
.skill-label { font-family:'Inter',sans-serif; font-size:.75rem; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:var(--primary); margin-bottom:.35rem; }
.skill-val { font-size:.875rem; color:var(--muted-fg); }

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.services-grid { max-width: 1200px; margin: 5rem auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(14,112,241,.12); }
.service-card .icon { font-size: 2rem; margin-bottom: 1.25rem; color: var(--primary); }
.service-card h3 { font-size: 1.35rem; margin-bottom: .75rem; }
.service-card p { color: var(--muted-fg); font-size: .95rem; line-height: 1.7; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-wrap { max-width: 62rem; margin: 4rem auto 6rem; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(14,112,241,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 { font-family:'Inter',sans-serif; font-weight:600; margin-bottom:.25rem; }
.contact-info-item a { color: var(--muted-fg); font-size:.9rem; }
.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,112,241,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--fg);
  color: #fff;
  border: none;
  border-radius: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: #1a2f52; }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
