@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --black: #0A0A0A;
    --dark-grey: #1A1A1A;
    --light-grey: #333333;
    --text-white: #F5F5F5;
    --text-dim: #A0A0A0;
    --glass: rgba(26, 26, 26, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-enroll {
    background: linear-gradient(45deg, var(--gold), var(--gold-bright));
    color: var(--black) !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700 !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-60 {
    height: 70vh !important;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.5));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: scale(1.05);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

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

/* Pricing Section */
.pricing {
    padding: 100px 5%;
    background-color: var(--black);
    text-align: center;
}

.pricing h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* Toggle Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--gold);
}

.discount-badge {
    background: var(--gold);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-grey);
    transition: .4s;
    border: 1px solid var(--gold);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: var(--gold);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--gold);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: var(--black);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.original-price {
    font-size: 0.9rem;
    color: #ff4d4d;
    text-decoration: line-through;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.discount-badge-label {
    background: #00c853;
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Sub-Hero & Layout Utilities */
.sub-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
}

.sub-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

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

.max-800 { max-width: 800px; margin: 0 auto; }
.margin-top-20 { margin-top: 20px; }
.margin-top-40 { margin-top: 40px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Coming Soon Banner */
.coming-soon-banner {
    background: var(--dark-grey);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.coming-soon-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 15px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 3rem;
        letter-spacing: 5px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.content-section {
    padding: 100px 0;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.text-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.text-left {
    text-align: left;
}

.bullet-list {
    list-style: none;
    margin-top: 20px;
}

.bullet-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.bullet-list li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.img-block img, .prime-img-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--gold);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 80px 0;
    background: #111;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-item {
    background: var(--dark-grey);
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-item .item-info {
    padding: 25px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* PRIME Stats */
.prime-stats {
    margin: 60px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid var(--gold);
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 5%;
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('assets/Jerry+Theatre.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-banner h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta-banner p { margin-bottom: 30px; color: var(--text-dim); }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .grid-2, .grid-3, .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sub-hero h1 { font-size: 2.5rem; }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--dark-grey);
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
}

/* Payment Plans Banner */
.payment-plans-banner {
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.payment-badge {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
    transition: var(--transition);
}

.payment-badge:hover {
    transform: scale(1.1);
}

.banner-subtitle {
    font-size: 1rem;
    color: var(--text-white);
    opacity: 0.9;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.price-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    background: linear-gradient(rgba(26, 26, 26, 1), rgba(40, 40, 40, 1));
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.price-value span {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
}

.price-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 900;
}

/* Bio Section */
.bio {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--dark-grey);
}

.bio-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--gold);
}

.bio h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 80px 5% 20px;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Prime Hour Specific Styles */
.prime-logo-header {
    margin-bottom: 20px;
}

.prime-logo-large {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    position: relative;
    z-index: 10;
}

.prime-accent-bg {
    position: relative;
    overflow: hidden;
}

.prime-accent-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    filter: grayscale(100%);
}

.bg-senior-1::before { background-image: url('assets/pcpaperchaser_mixed_group_of_senior_citizens_enjoying_a_music_b90092e9-bfdb-4b2b-b631-f46279b567aa_3.png'); }
.bg-senior-2::before { background-image: url('assets/pcpaperchaser_mixed_group_of_senior_citizens_enjoying_a_perfo_4b65cc05-c03a-4bfa-9e03-1a1fb8e295e2_0.png'); }

.align-center {
    align-items: center;
}

.quote-block {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
    font-style: italic;
}

.quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.quote-block cite {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rounded-img {
    border-radius: 15px;
}

.shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.image-block img {
    max-height: 550px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
}

.bg-dark {
    background-color: var(--dark-grey);
}

.service-card {
    background: var(--black);
    padding: 60px 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    text-align: center;
}

.services-highlight {
    padding: 120px 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.icon-gold {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.founder-section {
    padding: 100px 0;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('assets/IMG_3678.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-strip {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    .prime-logo-large {
        height: 80px;
    }
    .sub-hero h1 {
        font-size: 2.8rem;
    }
}

/* Student Showcase Styles */
.student-card {
    background: var(--dark-grey);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.student-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.student-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.student-info {
    padding: 25px;
    text-align: center;
}

.student-info h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.student-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.performances-section {
    padding: 100px 0;
}

.recital-section {
    padding: 100px 0;
}

/* --- Mobile Optimization --- */
@media (max-width: 992px) {
    nav {
        padding: 15px 5%;
    }

    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .bio {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        text-align: center;
    }

    .bio-img img {
        height: 400px;
        box-shadow: 10px 10px 0 var(--gold);
    }

    .bio h2 {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .content-section {
        padding: 60px 0;
    }

    .grid-2, .grid-3 {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        height: auto;
        min-height: 80vh;
        background-position: center center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .sub-hero {
        height: auto;
        min-height: 500px;
        padding: 80px 20px;
        background-position: center center;
    }

    .sub-hero h1 {
        font-size: 2.2rem;
    }

    .coming-soon-text {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .payment-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

    .payment-badge {
        height: 30px;
    }

    .contact-strip {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}
