@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B4E71;
    --secondary: #9B7FA7;
    --accent: #E8B4BC;
    --dark: #2D1F30;
    --light: #F7F3F5;
    --white: #FFFFFF;
    --text: #3A2D3C;
    --gradient: linear-gradient(135deg, #6B4E71 0%, #9B7FA7 50%, #E8B4BC 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 78, 113, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-weight: 500;
    font-size: 13px;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.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="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.hero-text .btn {
    background: var(--white);
    color: var(--primary);
}

.hero-text .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--secondary);
    font-size: 14px;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 78, 113, 0.15);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 13px;
    color: var(--text);
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.workshops {
    background: var(--white);
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 78, 113, 0.15);
}

.workshop-card-content {
    padding: 20px;
}

.workshop-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.workshop-card p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.workshop-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.testimonials {
    background: var(--gradient);
    color: var(--white);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-card .author {
    font-weight: 600;
    font-size: 13px;
}

.cta-section {
    background: var(--dark);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 14px;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-section p,
.footer-section a {
    font-size: 12px;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
}

.policy-links a:hover {
    color: var(--accent);
}

.page-header {
    background: var(--gradient);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    color: var(--white);
}

.content-section {
    background: var(--white);
    padding: 50px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 25px 0 12px;
}

.content-wrapper h3 {
    font-size: 18px;
    color: var(--dark);
    margin: 20px 0 10px;
}

.content-wrapper p {
    margin-bottom: 12px;
    font-size: 14px;
}

.content-wrapper ul {
    margin: 12px 0;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.content-wrapper ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--gradient);
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    font-size: 18px;
    margin-top: 2px;
}

.contact-item p {
    font-size: 13px;
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 78, 113, 0.15);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-content .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-content,
.thankyou-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient);
    padding: 40px 20px;
    height: 100vh;
}

.error-inner,
.thankyou-inner {
    max-width: 500px;
}

.error-inner h1 {
    font-size: 100px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
}

.error-inner h2,
.thankyou-inner h1 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.error-inner p,
.thankyou-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-inner i {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 20px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.policy-section {
    background: var(--white);
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 20px;
    color: var(--dark);
    margin: 30px 0 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light);
}

.policy-content h2:first-child {
    border-top: none;
    margin-top: 0;
}

.policy-content h3 {
    font-size: 16px;
    color: var(--dark);
    margin: 20px 0 10px;
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
}

.stats-section {
    background: var(--gradient);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.course-details {
    background: var(--white);
}

.course-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.course-main h2 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.course-main p {
    margin-bottom: 15px;
    font-size: 14px;
}

.course-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
}

.course-sidebar h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.course-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.course-info-item i {
    color: var(--primary);
    width: 20px;
}

.curriculum {
    background: var(--light);
}

.curriculum-list {
    max-width: 700px;
    margin: 0 auto;
}

.curriculum-item {
    background: var(--white);
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.curriculum-item .number {
    width: 35px;
    height: 35px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.curriculum-item h4 {
    font-size: 15px;
    color: var(--dark);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .features-grid,
    .workshop-cards,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid var(--light);
    }
    
    nav ul li a {
        display: block;
        padding: 12px 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .features-grid,
    .workshop-cards,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .error-inner h1 {
        font-size: 70px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .logo {
        font-size: 16px;
    }
}
