/*
Theme Name:   Shirley Zolnet Voice-Over
Theme URI:    https://shirleyzolnet.nl
Author:       Shirley Zolnet
Author URI:   https://shirleyzolnet.nl
Description:  Custom one-page website voor professioneel stemacteerwerk
Version:      1.0.1
Text Domain:  shirley-zolnet-voiceover
Tags:         one-page, portfolio, voiceover, custom-background
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

:root {
    --primary: #1a1a2e;
    --accent: #d4af37;
    --text: #2d2d2d;
    --light: #f8f8f8;
    --mid: #e8e8e8;
    --subtle: rgba(212, 175, 55, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
    overflow-x: hidden;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse { 0%,100% {opacity:0.5} 50% {opacity:1} }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 2rem auto;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

/* Nav */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
}

nav.scrolled {
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Algemene sectie styling */
section {
    padding: 8rem 5%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-left: 4px solid var(--accent);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon { font-size: 3.2rem; margin-bottom: 1.2rem; display: block; }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Demo */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-item {
    background: white;
    padding: 2.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent);
}

.demo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.demo-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; text-align: center; }

.demo-description {
    color: #555;
    text-align: center;
    margin: 0.8rem 0 1.5rem;
    font-size: 0.95rem;
}

audio {
    width: 100%;
    margin-top: 1rem;
    height: 44px;
    border-radius: 6px;
}

/* About */
.about {
    background: var(--primary);
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.03));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    max-width: 400px;
    max-height: 520px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
}

.about-image img,
.image-placeholder img {
    pointer-events: none;          /* blokkeert alle muis-interacties */
    user-select: none;             /* voorkomt selecteren */
    -webkit-user-select: none;     /* voor Safari/iOS */
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: none;            /* blokkeert touch long-press menu op mobiel */
    -webkit-touch-callout: none;   /* blokkeert iOS "Opslaan afbeelding" bij long-press */
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    color: rgba(255,255,255,0.92);
    font-weight: 300;
}

/* Specialties */
.specialties {
    background: white;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.specialty-item {
    background: var(--light);
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 4px solid transparent;
    transition: all 0.35s ease;
}

.specialty-item:hover {
    border-top-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.specialty-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
}

.specialty-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--primary), #16213e);
    color: white;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: white;
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(212,175,55,0.35);
}

.sc_player .sc_bar {
    background: var(--accent) !important; /* goud progress bar */
}
.sc_player .sc_controls a {
    color: var(--primary) !important;
}

/* Footer */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 2.5rem 1rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover { color: white; }

/* Responsive */
@media (max-width: 820px) {
    .about-content-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    section { padding: 6rem 5%; }
    .demo-grid { grid-template-columns: 1fr; }
}