/* Pleasure Veil Productions - Shared Stylesheet
   Dark dream aesthetic. All styling for public pages lives here.
   Last updated: 2026-07-22
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cinzel:wght@400;700&display=swap');

:root {
    --bg: #0a0a0a;
    --text: #ddd;
    --accent: #c9a66b;
    --red-glow: rgba(180, 40, 40, 0.8);
    --gold-glow: rgba(201, 166, 107, 0.3);
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg) url('./images/PV-BG.jpg') center/cover no-repeat fixed;
    color: var(--text);
    font-family: 'Cinzel', serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== INDEX / HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.logo {
    width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.6));
}

h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.15em;
    margin: 0 0 20px 0;
    color: #f0f0f0;
    text-shadow: 0 0 40px var(--red-glow);
}

p {
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.cta:hover {
    background: var(--accent);
    color: #111;
    transform: scale(1.08);
}

.veil-note {
    /* Note: previously had bottom positioning that caused overflow issues.
       Removed absolute positioning on containing elements per production note.
       Now flows naturally in document order. */
    font-size: 1.1rem;
    opacity: 0.75;
    letter-spacing: 0.2em;
}

/* ===== CASTING PAGE ===== */
.casting-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    position: relative;
    z-index: 2;
}

.casting-header {
    text-align: center;
    margin-bottom: 50px;
}

.casting-header h1 {
    font-size: 3.2rem;
    margin-bottom: 12px;
}

.casting-header .subtitle {
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    opacity: 0.85;
    margin-bottom: 20px;
}

.casting-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
}

.casting-section:last-child {
    border-bottom: none;
}

.casting-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-shadow: none;
}

.casting-section p,
.casting-section li {
    font-size: 1.05rem;
    max-width: 720px;
}

.casting-note {
    font-size: 0.95rem;
    opacity: 0.75;
    font-style: italic;
    margin-top: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.back-link:hover {
    border-bottom-color: var(--accent);
}

/* Shared utility */
.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92));
    z-index: 1;
    pointer-events: none;
}
