/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #7E5CAD;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: #5d4280;
    outline: 2px solid #7E5CAD;
    outline-offset: 2px;
}

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

/* ===== Header & Navigation ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
    position: relative;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7E5CAD;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #f8f6ff 0%, #e8e3f3 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* ===== Thank You Hero ===== */

/* ===== Buttons ===== */

/* ===== About Section ===== */

/* ===== Team Highlights ===== */

/* ===== Mission Section ===== */

/* ===== CTA Section ===== */

/* ===== Contact Section ===== */

/* ===== FAQ Section ===== */

/* ===== Courses Grid ===== */

/* ===== Course Information ===== */

/* ===== Masterclasses ===== */

/* ===== Reviews ===== */

/* ===== Statistics Section ===== */

/* ===== Testimonials Detail ===== */

/* ===== Thank You Content ===== */

/* ===== Legal Content ===== */

/* ===== Section Footer ===== */

/* ===== Footer ===== */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #7E5CAD;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* ===== Form Styles ===== */

/* ===== Custom Checkboxes ===== */

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #7E5CAD;
}

.cookie-popup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-popup-content {
    flex: 1;
    min-width: 250px;
}

.cookie-popup-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.cookie-popup-content a {
    color: #7E5CAD;
    text-decoration: underline;
}

.cookie-popup-content a:hover {
    color: #9A7BC8;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #7E5CAD;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #6B4C87;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-popup-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-popup-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        padding: 15px;
    }
    
    .cookie-popup-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
} 
  .workshop-categories {
            background-color: #fff;
            padding: 4rem 0;
        }

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

        .category-card {
            background: linear-gradient(135deg, #f8f6ff 0%, #e8e3f3 100%);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(126, 92, 173, 0.2);
            border-color: #7E5CAD;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background-color: #7E5CAD;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #fff;
        }

        .category-card h3 {
            color: #7E5CAD;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .category-count {
            color: #666;
            font-size: 0.9rem;
            margin-top: 1rem;
            font-weight: 500;
        }

        /* ===== Instructors Section ===== */
        .instructors-section {
            background-color: #f8f6ff;
            padding: 4rem 0;
        }

        .instructors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .instructor-card {
            background-color: #fff;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

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

        .instructor-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7E5CAD, #9B7BB8);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #fff;
            font-weight: 600;
        }

        .instructor-card h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .instructor-specialty {
            color: #7E5CAD;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .instructor-bio {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .instructor-experience {
            background-color: #f8f6ff;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #7E5CAD;
        }

        .instructor-experience strong {
            color: #7E5CAD;
            display: block;
            margin-bottom: 0.25rem;
        }

        /* ===== Studio Gallery Section ===== */

        /* ===== Course Benefits Section ===== */
        .course-benefits {
            background: linear-gradient(135deg, #b2a5c5 0%, #e2cef5 100%);
            color: #fff !important;
            padding: 4rem 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem 1.5rem;
        }
       
        .benefit-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }

        .benefit-item h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .benefit-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* ===== Upcoming Events Section ===== */
        .upcoming-events {
            background-color: #f8f6ff;
            padding: 4rem 0;
        }
      
        .events-timeline {
            position: relative;
            margin-top: 2.5rem;
        }

        .timeline-line {
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #7E5CAD;
        }

        .event-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 80px;
        }

        .event-date {
            position: absolute;
            left: 0;
            width: 60px;
            height: 60px;
            background-color: #7E5CAD;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            line-height: 1.2;
        }

        .event-content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-left: 4px solid #7E5CAD;
        }

        .event-content h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .event-type {
            color: #7E5CAD;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .event-details {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .event-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #666;
            font-size: 0.9rem;
        }

        .event-detail svg {
            width: 16px;
            height: 16px;
            color: #7E5CAD;
        }