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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #231373;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(35, 19, 115, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #231373;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(45deg, #231373, #9c7efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #231373;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #9c7efd;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #76a82c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #231373;
    transition: all 0.3s ease;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #231373;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #9c7efd, #76a82c);
    border-radius: 2px;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(35, 19, 115, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #9c7efd;
    box-shadow: 0 20px 40px rgba(156, 126, 253, 0.2);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #231373;
}

.program-card ul {
    list-style: none;
    margin: 1rem 0;
}

.program-card li {
    padding: 0.3rem 0;
    color: #666;
}

.program-card li::before {
    content: '✓';
    color: #76a82c;
    font-weight: bold;
    margin-right: 0.5rem;
}

.program-cta {
    background: linear-gradient(45deg, #9c7efd, #cdc4fd);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.program-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(156, 126, 253, 0.3);
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-day {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(35, 19, 115, 0.1);
}

.schedule-day h3 {
    color: #231373;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: 0.5rem 0;
    background: #f5ebdf;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #cdc4fd;
    color: #231373;
}

.time {
    font-weight: 600;
    color: #231373;
}

.class {
    color: #666;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(35, 19, 115, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    border: 3px solid #76a82c;
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #76a82c;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(35, 19, 115, 0.15);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #231373;
    margin: 1rem 0;
}

.price-cta {
    background: linear-gradient(45deg, #231373, #9c7efd);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.price-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 19, 115, 0.3);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(35, 19, 115, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(35, 19, 115, 0.15);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #cdc4fd, #f5ebdf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: #231373;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: #9c7efd;
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #cdc4fd;
    line-height: 1.6;
}

/* Online Classes */
.online-classes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.online-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(35, 19, 115, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.online-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(35, 19, 115, 0.15);
}

.online-cta {
    background: #76a82c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.online-cta:hover {
    background: #5d8522;
    transform: translateY(-2px);
}

/* Workshops */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workshop-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(35, 19, 115, 0.1);
    transition: all 0.3s ease;
}

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

.workshop-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #cdc4fd;
}

.workshop-details span {
    font-weight: 600;
    color: #231373;
}

/* Trial Offer */
.trial-offer {
    text-align: center;
    background: linear-gradient(45deg, #cdc4fd, #f5ebdf);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.trial-offer p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #231373;
}

.trial-cta {
    background: #231373;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.trial-cta:hover {
    background: #1a0f5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(35, 19, 115, 0.3);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #231373 0%, #9c7efd 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #cdc4fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.external-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.external-links a {
    color: #cdc4fd;
    text-decoration: none;
    font-size: 0.9rem;
}

.external-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    placeholder-color: #cdc4fd;
}

.newsletter-form input::placeholder {
    color: #cdc4fd;
}

.newsletter-form button {
    background: #76a82c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #5d8522;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #cdc4fd;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .section-title {
        font-size: 2rem;
    }

    .programs-grid,
    .pricing-grid,
    .testimonials-grid,
    .online-classes,
    .workshops-grid {
        grid-template-columns: 1fr;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .price-card.featured {
        transform: none;
    }

    .workshop-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .trial-offer {
        padding: 2rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}