:root {
    /* Colors */
    --color-primary: #B799FF;
    --color-secondary: #ACBCFF;
    --color-tertiary: #AEE2FF;
    --color-quaternary: #E6FFFD;
    --color-black: #121212;
    --color-dark: #232323;
    --color-gray: #666666;
    --color-light-gray: #f1f1f1;
    --color-white: #ffffff;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Lexend', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

ul {
    list-style: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-text {
    padding: 0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: var(--space-sm) 0;
    transition: transform var(--transition-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 4rem;
    position: relative;
    z-index: 20;
}

.logo-container img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.logo-container:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-container img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .logo-container img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .logo-container img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

.desktop-menu {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--color-secondary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-medium);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.menu-close {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.menu-close:hover {
    color: var(--color-secondary);
}

.mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-menu .nav-list a {
    display: block;
    padding: var(--space-xs) 0;
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.mobile-menu .nav-list a:hover,
.mobile-menu .nav-list a.active {
    color: var(--color-primary);
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content */
main {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl) var(--space-sm);
    background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-tertiary) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--color-gray);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.droplet-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.droplet {
    position: absolute;
    background-color: rgba(174, 226, 255, 0.6);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: float 15s infinite ease-in-out;
}

.droplet::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50% 50% 50% 0;
    background-color: rgba(255, 255, 255, 0.2);
}

.droplet-sm {
    width: 4rem;
    height: 4rem;
    right: 15%;
    top: 30%;
    animation-delay: -2s;
}

.droplet-md {
    width: 6rem;
    height: 6rem;
    left: 20%;
    top: 60%;
    animation-delay: -5s;
}

.droplet-lg {
    width: 8rem;
    height: 8rem;
    left: 60%;
    top: 20%;
    animation-delay: -8s;
}

.droplet-xl {
    width: 12rem;
    height: 12rem;
    right: 10%;
    bottom: 10%;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(-45deg);
    }

    25% {
        transform: translate(15px, -15px) rotate(-45deg);
    }

    50% {
        transform: translate(0, 10px) rotate(-45deg);
    }

    75% {
        transform: translate(-15px, -5px) rotate(-45deg);
    }
}

/* Features Section */
.features-section {
    padding: var(--space-lg) 0;
    background-color: var(--color-white);
}

.features-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

/* Programs Preview Section */
.programs-preview {
    padding: var(--space-lg) 0;
    background-color: var(--color-light-gray);
}

.programs-preview h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.program-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: var(--space-md);
}

.program-content h3 {
    margin-bottom: var(--space-xs);
}

.program-content p {
    margin-bottom: var(--space-sm);
    color: var(--color-gray);
}

.programs-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-lg) 0;
    background-color: var(--color-white);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    padding: var(--space-md);
}

.testimonial-content {
    background-color: var(--color-quaternary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-quaternary);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    margin-top: var(--space-md);
}

.testimonial-author h4 {
    margin-bottom: 0;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-light-gray);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active {
    background-color: var(--color-primary);
}

/* Call to Action Section */
.cta-section {
    padding: var(--space-lg) 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--color-white);
}

.cta-content p {
    margin-bottom: var(--space-md);
}

.droplet-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0 var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}


.footer-brand p {
    margin: var(--space-sm) 0;
}

.social-links {
    display: flex;
    gap: var(--space-xs);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-primary);
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--color-tertiary);
    margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--color-tertiary);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact a {
    color: var(--color-tertiary);
}

.copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    transition: bottom var(--transition-medium);
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

/* 404 Page */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-tertiary) 100%);
}

.error-content {
    max-width: 600px;
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.error-content h1 {
    font-size: 6rem;
    margin-bottom: var(--space-xs);
    color: var(--color-primary);
}

.error-content h2 {
    margin-bottom: var(--space-md);
}

.error-content p {
    margin-bottom: var(--space-md);
}

/* Contact Page */
.contact-section {
    padding: var(--space-lg) 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.contact-info h3 {
    margin-bottom: var(--space-md);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-container {
    background-color: var(--color-quaternary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    margin-bottom: var(--space-md);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
}

.form-submit {
    text-align: center;
}

/* Products Page */
.products-hero {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-tertiary) 100%);
}

.products-hero h1 {
    margin-bottom: var(--space-sm);
}

.products-section {
    padding: var(--space-lg) 0;
    background-color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--space-md);
}

.product-content h3 {
    margin-bottom: var(--space-xs);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: var(--space-sm) 0;
}

.product-description {
    margin-bottom: var(--space-md);
    color: var(--color-gray);
}

/* Studios & Programs Pages */
.page-hero {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-tertiary) 100%);
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
}

.studio-section,
.program-section {
    padding: var(--space-lg) 0;
}

.studio-section:nth-child(odd),
.program-section:nth-child(odd) {
    background-color: var(--color-light-gray);
}

.studio-section:nth-child(even),
.program-section:nth-child(even) {
    background-color: var(--color-white);
}

.studio-grid,
.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.studio-image,
.program-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-md);
}

.studio-image img,
.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-content h3,
.program-content h3 {
    margin-bottom: var(--space-sm);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Thank You Page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-tertiary) 100%);
}

.thank-you-content {
    max-width: 600px;
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    margin-bottom: var(--space-lg);
}

/* Media Queries */
@media screen and (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .desktop-menu {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .desktop-menu .nav-list {
        display: flex;
        gap: var(--space-md);
    }

    .desktop-menu .nav-list a {
        color: var(--color-dark);
        font-weight: 500;
        position: relative;
    }

    .desktop-menu .nav-list a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: width var(--transition-medium);
    }

    .desktop-menu .nav-list a:hover::after,
    .desktop-menu .nav-list a.active::after {
        width: 100%;
    }

    .hero-cta {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-lg);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .studio-grid,
    .program-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .site-header {
        background-color: var(--color-white);
        position: fixed;
        box-shadow: var(--shadow-sm);
    }

    .hero-section {
        padding-top: calc(var(--space-xl) + 60px);
    }
}