/*
Theme Name: Voice Queen (BlankSlate Child)
Theme URI: https://thevoicequeen.co
Description: A child theme of BlankSlate customized for The Voice Queen
Author: Serge + Alex
Template: blankslate
Version: 1.0
*/
/* Optimized CSS for The Voice Queen website */

/* Base Styles and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --deep-purple: #432C7A;
    --medium-purple: #80489C;
    --pink: #FF8FB1;
    --light-peach: #FCE2DB;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    
    /* Shadows */
    --shadow-light: rgba(67, 44, 122, 0.1);
    --shadow-medium: rgba(67, 44, 122, 0.2);
    --shadow-heavy: rgba(67, 44, 122, 0.3);
    --shadow-pink: rgba(255, 143, 177, 0.3);
    --shadow-pink-hover: rgba(255, 143, 177, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
    --gradient-pink: linear-gradient(135deg, var(--pink) 0%, #FF6B9D 100%);
    --gradient-peach: linear-gradient(135deg, var(--light-peach) 0%, rgba(252, 226, 219, 0.5) 100%);
    
    /* Transitions */
    --transition-standard: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Typography */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }
.rounded { border-radius: 10px; }
.rounded-lg { border-radius: 20px; }
.shadow-sm { box-shadow: 0 5px 15px var(--shadow-light); }
.shadow-md { box-shadow: 0 10px 30px var(--shadow-medium); }
.shadow-lg { box-shadow: 0 15px 40px var(--shadow-heavy); }

/* Header Styles */
.header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-heavy);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.crown-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-standard);
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-standard);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--deep-purple);
    z-index: 999;
    box-shadow: 0 4px 20px var(--shadow-heavy);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-content a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-standard);
}

.mobile-menu-content a:hover {
    color: var(--pink);
    padding-left: 1rem;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-standard);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-pink-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-purple);
    border: 2px solid var(--deep-purple);
}

.btn-secondary:hover {
    background: var(--deep-purple);
    color: var(--white);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-cta {
    background: var(--pink);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-pink);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-pink-hover);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23FFD700" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1" fill="%23FFD700" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: var(--pink);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Logo and Images */
.logo-image {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 2rem;
    display: block;
}

.profile-image {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Credentials */
.credentials {
    text-align: center;
    margin-bottom: 3rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    opacity: 0.8;
    transition: var(--transition-standard);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.price-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Card Components */
.card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-standard);
}

.card:hover {
    transform: translateY(-5px);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--gradient-peach);
    border: 2px solid rgba(128, 72, 156, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--medium-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(128, 72, 156, 0.2);
    position: relative;
    padding-left: 2rem;
}

.feature-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list-positive li:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Workshop Modules */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.module-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.module-number {
    background: var(--pink);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.module-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Journey Cards */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
}

.journey-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

.journey-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.journey-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.journey-card-start {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 15px 40px var(--shadow-heavy);
}

.journey-card-start .journey-badge {
    background: var(--pink);
    color: var(--white);
}

.journey-card-start h3 {
    color: var(--white);
}

.journey-card-start .price-display {
    font-size: 2.5rem;
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-card-adults {
    background: var(--light-peach);
    border: 2px solid var(--pink);
}

.journey-card-adults .journey-badge {
    background: var(--pink);
    color: var(--white);
}

.journey-card-special {
    background: var(--gradient-pink);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 143, 177, 0.3);
}

.journey-card-special .journey-badge {
    background: var(--white);
    color: var(--deep-purple);
}

.journey-card-special h3 {
    color: var(--white);
}

/* Course Items */
.course-details {
    text-align: left;
    margin-bottom: 2rem;
}

.course-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.course-item h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.course-description {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.glass-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.glass-item h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.glass-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Course Cards */
.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
}

.course-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.course-badge-summer {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
}

.course-badge-popular {
    background: var(--pink);
    color: var(--white);
}

.course-badge-intermediate {
    background: var(--medium-purple);
    color: var(--white);
}

.course-card h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.course-price {
    font-size: 2rem;
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.course-card p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.credentials-list {
    list-style: none;
    margin-top: 2rem;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: var(--medium-purple);
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.credentials-list li:before {
    content: "👑";
    position: absolute;
    left: 0;
}

.about-image {
    text-align: center;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.faq-item h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--white);
}

.pricing-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.pricing-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 25px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--medium-purple) 100%);
}

.price-tag {
    font-size: 3.5rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(128, 72, 156, 0.2);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.guarantee {
    background: linear-gradient(135deg, var(--light-peach) 0%, rgba(252, 226, 219, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--pink);
}

/* Email Capture */
.email-capture {
    background: var(--pink);
    color: var(--white);
    text-align: center;
}

.email-capture h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.email-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.email-form button {
    padding: 1rem 2rem;
    background: var(--deep-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-standard);
}

.email-form button:hover {
    background: var(--medium-purple);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--deep-purple);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pink);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--pink);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(255, 143, 177, 0.4);
    animation: pulse 2s infinite;
    z-index: 1000;
    transition: var(--transition-standard);
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 143, 177, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

/* Mobile Menu Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation */
    .desktop-nav, .btn-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Typography */
    .hero {
        padding-top: 160px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Layouts */
    .grid-2, .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .client-logos {
        gap: 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Grids */
    .modules-grid,
    .testimonial-grid,
    .journey-grid,
    .course-cards-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
