/*
Theme Name: Royal Productions
Theme URI: https://royalproductions.studio
Author: Royal Productions Studio
Author URI: https://royalproductions.studio
Description: Dark-themed production studio theme with gold accents. Built for social video and podcast content.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: royal-productions
Tags: dark, one-column, custom-colors, editor-style
*/

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

:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --dark: #0A0A0A;
    --dark-card: #141414;
    --dark-surface: #1A1A1A;
    --gray: #888;
    --light: #F5F0E8;
    --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(201,168,76,0.15);
    padding: 0.85rem 3rem;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--light); text-decoration: none; font-size: 0.875rem;
    font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links {
        display: none; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        align-items: center; justify-content: center; gap: 2rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.125rem; }
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
    position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--dark) 0%, #0E0E0E 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.5rem 1.5rem; border-radius: 2rem; margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray); max-width: 560px; margin: 0 auto 2.5rem;
    font-weight: 300; line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 0.375rem;
    font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; text-transform: uppercase;
    transition: all 0.3s; cursor: pointer; border: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--gold); color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--gray); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: 6rem 3rem; max-width: 1000px; margin: 0 auto; }
.section-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; margin-bottom: 1rem; line-height: 1.2;
}
.section-subtitle {
    color: var(--gray); font-size: 1.05rem; max-width: 580px;
    font-weight: 300; line-height: 1.7; margin-bottom: 3rem;
}

/* ── SERVICES ───────────────────────────────────────── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.75rem; padding: 2.25rem;
    transition: all 0.3s;
}
.service-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-icon {
    width: 48px; height: 48px; border-radius: 0.5rem;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-card h3 {
    font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--gray); font-size: 0.9rem; line-height: 1.6;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.service-tag {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.08);
    padding: 0.3rem 0.7rem; border-radius: 0.25rem;
}

/* ── PODCAST SECTION ────────────────────────────────── */
.podcast-section {
    padding: 6rem 3rem;
    background: var(--dark-surface);
}
.podcast-inner { max-width: 1000px; margin: 0 auto; }
.podcast-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .podcast-layout { grid-template-columns: 1fr; }
}
.podcast-art {
    aspect-ratio: 1; border-radius: 0.75rem;
    background: linear-gradient(135deg, #1a1520 0%, #0f0e15 50%, #151a1a 100%);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; padding: 2rem;
}
.podcast-art .mic { font-size: 4rem; opacity: 0.25; }
.podcast-art .eq-bars {
    display: flex; gap: 3px; align-items: flex-end; height: 40px;
}
.podcast-art .eq-bar {
    width: 4px; background: var(--gold); border-radius: 2px;
    opacity: 0.3; animation: eqBounce 1.2s ease-in-out infinite alternate;
}
.podcast-art .eq-bar:nth-child(1) { height: 16px; animation-delay: 0s; }
.podcast-art .eq-bar:nth-child(2) { height: 28px; animation-delay: 0.15s; }
.podcast-art .eq-bar:nth-child(3) { height: 20px; animation-delay: 0.3s; }
.podcast-art .eq-bar:nth-child(4) { height: 36px; animation-delay: 0.1s; }
.podcast-art .eq-bar:nth-child(5) { height: 14px; animation-delay: 0.25s; }
.podcast-art .eq-bar:nth-child(6) { height: 32px; animation-delay: 0.05s; }
.podcast-art .eq-bar:nth-child(7) { height: 22px; animation-delay: 0.2s; }
@keyframes eqBounce {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}
.podcast-art .label {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; color: var(--gold); letter-spacing: 0.15em;
    text-transform: uppercase; opacity: 0.6;
}
.podcast-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; margin-bottom: 1rem;
}
.podcast-info p {
    color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem;
}
.podcast-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.podcast-features li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--light);
}
.podcast-features li::before {
    content: '◆'; color: var(--gold); font-size: 0.5rem;
}

/* ── PROCESS ────────────────────────────────────────── */
.process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.process-step { position: relative; padding: 1.5rem 0; }
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(201,168,76,0.15);
    line-height: 1; margin-bottom: 1rem;
}
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--dark-surface); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-info p { color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.contact-detail {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
}
.contact-detail .icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.contact-detail span { color: var(--light); font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gray);
}
.form-group input, .form-group textarea, .form-group select {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.375rem; padding: 0.8rem 1rem;
    color: var(--white); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.3s; outline: none;
    width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark-card); }
.form-success {
    padding: 2rem; background: var(--dark-card); border-radius: 0.75rem;
    border: 1px solid rgba(201,168,76,0.3); text-align: center;
}
.form-success .check { font-size: 2rem; margin-bottom: 0.5rem; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
    padding: 3rem; border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1000px; margin: 0 auto;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--gold);
    text-decoration: none;
}
.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); text-decoration: none;
    font-size: 0.85rem; transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--gold); color: var(--gold);
}

/* ── ANIMATIONS ─────────────────────────────────────── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── WP OVERRIDES ───────────────────────────────────── */
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
