/*
Theme Name: RDukeVO
Theme URI: https://www.rdukevo.com
Author: Ralph Duke
Author URI: https://www.rdukevo.com
Description: Custom single-page voice actor website for RDukeVO — Ralph Duke. Deep baritone. Black and cyan design.
Version: 1.0
License: GNU General Public License v2 or later
Tags: voice-actor, single-page, custom
*/

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  /* ── Base dark navy ── */
  background-color: #020817;

  /* ── Layered background: glows + dot grid ── */
  background-image:
    /* Cyan glow — upper right (hero area) */
    radial-gradient(ellipse 75% 55% at 90% 5%,  rgba(6, 182, 212, 0.09) 0%, transparent 100%),
    /* Blue glow — lower left */
    radial-gradient(ellipse 60% 45% at 5%  95%, rgba(37, 99, 235, 0.10) 0%, transparent 100%),
    /* Faint silver shimmer — center */
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(148, 163, 184, 0.03) 0%, transparent 100%),
    /* Dot grid pattern — subtle cyan dots on 36px grid */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Ccircle cx='18' cy='18' r='0.7' fill='%2306b6d4' fill-opacity='0.18'/%3E%3C/svg%3E");

  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding-bottom: 7rem; /* room for sticky player */
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ==============================
   LAYOUT CONTAINER
   ============================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.6));
}

.main-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  font-size: 0.875rem;
  color: #f1f5f9;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #67e8f9;
}

/* Header right cluster: socials + hire button */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.social-icon:hover {
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

/* Hide socials on very small screens */
@media (max-width: 480px) {
  .header-socials { display: none; }
}

.btn-hire {
  background: #06b6d4;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-hire:hover {
  background: #0891b2;
  color: #000;
}

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid #334155;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.5rem;
  color: #67e8f9;
  margin-top: 0.5rem;
  font-weight: 600;
}

.hero-intro {
  margin-top: 1.5rem;
  max-width: 42rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: #06b6d4;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2);
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0891b2;
  color: #000;
}

.btn-secondary {
  border: 1px solid #06b6d4;
  color: #f1f5f9;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
}

.featured-demo {
  margin-top: 2.5rem;
  max-width: 36rem;
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.25rem;
}

.featured-demo .demo-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #64748b;
}

.featured-demo .demo-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.featured-demo audio {
  width: 100%;
}

/* --- Headshot --- */
.headshot-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .headshot-wrap {
    justify-content: flex-end;
  }
}

.headshot-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: #020617;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.1);
}

.headshot-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 1rem;
}

.headshot-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
}

.headshot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.headshot-caption {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #94a3b8;
}

/* ==============================
   TRUSTED BY
   ============================== */
.trusted-by {
  background: rgba(2, 8, 23, 0.75);
  padding: 4rem 0;
  border-top: 1px solid rgba(6, 182, 212, 0.06);
  border-bottom: 1px solid rgba(6, 182, 212, 0.06);
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #22d3ee;
  text-align: center;
}

.trusted-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trusted-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trusted-item {
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
}

/* ==============================
   DEMOS
   ============================== */
.demos {
  background: rgba(2, 8, 23, 0.75);
  padding: 6rem 0;
  border-top: 1px solid rgba(6, 182, 212, 0.06);
  border-bottom: 1px solid rgba(6, 182, 212, 0.06);
}

.section-heading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.demos-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .demos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-card {
  background: #000000;
  border: 1px solid #1e293b;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: border-color 0.2s ease;
}

.demo-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.demo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.demo-card p {
  color: #94a3b8;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.demo-card audio {
  width: 100%;
}

/* ==============================
   STUDIO
   ============================== */
.studio {
  padding: 6rem 0;
}

.studio-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .studio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.studio-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.studio-text p {
  margin-top: 1rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.studio-list {
  margin-top: 1.5rem;
}

.studio-list li {
  color: #94a3b8;
  padding: 0.375rem 0;
}

.studio-specs {
  background: #0f172a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #1e293b;
}

.studio-specs h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.studio-specs li {
  color: #cbd5e1;
  padding: 0.625rem 0;
  border-bottom: 1px solid #1e293b;
  font-size: 0.9rem;
}

.studio-specs li:last-child {
  border-bottom: none;
}

/* ==============================
   ABOUT
   ============================== */
.about {
  background: rgba(2, 8, 23, 0.75);
  padding: 6rem 0;
  border-top: 1px solid rgba(6, 182, 212, 0.06);
  border-bottom: 1px solid rgba(6, 182, 212, 0.06);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
}

.about-text p {
  margin-top: 1.5rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.about-text p + p {
  margin-top: 1rem;
  color: #94a3b8;
}

.about-card {
  background: #000000;
  border: 1px solid #1e293b;
  border-radius: 1rem;
  padding: 2rem;
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-card li {
  color: #cbd5e1;
  padding: 0.375rem 0;
}

.about-points {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-points li {
  color: #94a3b8;
  padding: 0.375rem 0;
}

/* ==============================
   CONTACT
   ============================== */
.contact {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.contact-field .field-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}

.contact-field a {
  color: #67e8f9;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.contact-field a:hover {
  color: #22d3ee;
}

.contact-qr img {
  border-radius: 1rem;
  border: 1px solid #334155;
  max-width: 280px;
}

.contact-qr p {
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* ==============================
   QUOTE FORM
   ============================== */
.quote {
  background: rgba(2, 8, 23, 0.75);
  padding: 6rem 0;
  border-top: 1px solid rgba(6, 182, 212, 0.06);
}

.quote-card {
  border-radius: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: rgba(0, 0, 0, 0.5);
  padding: 2.5rem;
}

.quote-card h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
}

.quote-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .quote-form {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  background: #0f172a;
  border: 1px solid #334155;
  color: #f1f5f9;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease, outline 0.2s ease;
  font-family: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #64748b;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid #06b6d4;
  outline-offset: 1px;
  border-color: transparent;
}

.quote-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.quote-form .btn-submit {
  grid-column: 1 / -1;
  background: #06b6d4;
  color: #000000;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.03em;
}

.quote-form .btn-submit:hover {
  background: #0891b2;
}

/* ==============================
   STICKY AUDIO PLAYER
   ============================== */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  padding: 0.75rem 1.5rem;
  z-index: 50;
}

.sticky-player .player-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #64748b;
  white-space: nowrap;
  display: none;
}

.player-title {
  font-size: 0.875rem;
  color: #e2e8f0;
  white-space: nowrap;
  display: none;
}

@media (min-width: 768px) {
  .player-label,
  .player-title {
    display: block;
  }
}

.sticky-player audio {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

/* ==============================
   SHARED: RESPONSIVE VIDEO EMBED
   16:9 iframe that scales to any width
   ============================== */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #0f172a;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
}

/* ==============================
   VIDEO INTRO SECTION
   ============================== */
.video-intro {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
}

.video-intro-header {
  text-align: center;
  margin-bottom: 2rem;
}

.video-intro-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
}

.video-intro-header p {
  color: #94a3b8;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.video-intro .video-embed-wrap {
  max-width: 56rem;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.15);
}

/* ==============================
   VIDEO GALLERY SECTION
   ============================== */
.video-gallery {
  padding: 6rem 0;
  border-top: 1px solid rgba(6, 182, 212, 0.06);
  border-bottom: 1px solid rgba(6, 182, 212, 0.06);
}

.video-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-card {
  background: #000000;
  border: 1px solid #1e293b;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.video-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.video-card .video-embed-wrap {
  border-radius: 0; /* card handles rounding */
  border-bottom: 1px solid #1e293b;
}

.video-card .video-embed-wrap iframe {
  border-radius: 0;
}

.video-card-info {
  padding: 1.25rem 1.5rem;
}

.video-card-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.video-card-info p {
  color: #94a3b8;
  margin-top: 0.375rem;
  font-size: 0.875rem;
}

.video-placeholder {
  padding: 3rem;
  text-align: center;
  color: #475569;
  font-style: italic;
  font-size: 0.875rem;
}

/* ==============================
   RESPONSIVE TYPOGRAPHY
   ============================== */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-heading,
  .about-text h2 {
    font-size: 2.25rem;
  }

  .quote-card h2 {
    font-size: 2rem;
  }
}
