/* 
* YogaVida - Main Stylesheet
* Colors:
* - Main background: #F2E205 (Lemon Yellow)
* - Main text: #1A1A1A (Graphite Black)
* - Accents: #8E44AD (Purple Lotus)
* - Buttons: #2ECCFA (Azure Ocean)
* - Hovers: #FF7043 (Mandarin Coral)
* - Block backgrounds: #FFFFFF and #EAF6F6
*/

/* ===== Base Styles ===== */
:root {
    --color-bg: #F2E205;
    --color-text: #1A1A1A;
    --color-accent: #8E44AD;
    --color-button: #2ECCFA;
    --color-hover: #FF7043;
    --color-bg-alt: #EAF6F6;
    --color-white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-hover);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

section:nth-child(odd) {
    background-color: var(--color-white);
}

section:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-hover);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-more {
    margin-left: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ===== Header Styles ===== */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo a:hover .logo-svg {
    transform: rotate(15deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== About Section ===== */
.about-section {
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Benefits Section ===== */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-card h3, .benefit-card p {
    padding: 0 1.5rem;
}

.benefit-card h3 {
    margin-top: 1.5rem;
    color: var(--color-accent);
}

.benefit-card p {
    padding-bottom: 1.5rem;
}

/* ===== Classes Section ===== */
.classes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.class-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.class-card h3, .class-card p {
    padding: 0 1.5rem;
}

.class-card h3 {
    margin-top: 1.5rem;
    color: var(--color-accent);
}

.class-card p {
    padding-bottom: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-card h3 {
    text-align: center;
    color: var(--color-accent);
}

.testimonial-card p {
    text-align: center;
    font-style: italic;
}

/* ===== Schedule Section ===== */
.schedule-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.schedule-table th, .schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.schedule-table tr:nth-child(even) {
    background-color: rgba(142, 68, 173, 0.05);
}

.schedule-table tr:hover {
    background-color: rgba(142, 68, 173, 0.1);
}

/* ===== Registration Form Section ===== */
.registration-section {
    text-align: center;
}

.lotus-form-container {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
}

.lotus-form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,20 C60,40 80,50 95,55 C80,65 60,75 50,90 C40,75 20,65 5,55 C20,50 40,40 50,20' fill='%238E44AD' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.lotus-form {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.lotus-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.lotus-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lotus-form input[type="text"],
.lotus-form input[type="tel"],
.lotus-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.lotus-form input:focus,
.lotus-form select:focus {
    border-color: var(--color-accent);
    outline: none;
}

.lotus-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lotus-form .checkbox-group input {
    margin-right: 0.5rem;
}

.lotus-form .checkbox-group label {
    margin-bottom: 0;
}

.lotus-form button {
    margin-top: 1rem;
}

/* ===== Contact Section ===== */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-details, .contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-map iframe {
    border-radius: var(--border-radius);
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info, .footer-contact, .footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-info h3 {
    color: var(--color-bg);
    margin-bottom: 1rem;
}

.footer-contact h4, .footer-links h4 {
    color: var(--color-bg);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
}

.footer-links a:hover {
    color: var(--color-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .benefit-card, .class-card, .testimonial-card {
        min-width: 100%;
    }
    
    .schedule-table th, .schedule-table td {
        padding: 0.75rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
} 