@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-dark: #1B4332;
    --primary-green: #40916C;
    --accent-green: #52B788;
    --light-green: #D8F3DC;
    --black: #0A0908;
    --white: #FFFFFF;
    --coral: #FF8370;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.4em;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #FFB4A2 0%, #E5989B 25%, #6D6875 50%, #40916C 75%, #1B4332 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.6em;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.hero-pattern svg {
    width: 100%;
    height: auto;
}

/* Yoga Types Section */
.yoga-types {
    padding: 100px 0;
    background: var(--white);
}

.yoga-types h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card {
    background: var(--light-green);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(64, 145, 108, 0.1);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-dark);
    font-size: 1.4em;
}

.type-card p {
    padding: 0 20px 20px;
    color: var(--black);
    font-weight: 300;
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.schedule h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.schedule-day {
    background: rgba(64, 145, 108, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(64, 145, 108, 0.2);
}

.schedule-day h3 {
    color: var(--accent-green);
    margin-bottom: 20px;
    font-size: 1.6em;
}

.schedule-day ul {
    list-style: none;
}

.schedule-day li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 300;
}

.schedule-day li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.benefits-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-item svg {
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4em;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    font-weight: 300;
    color: var(--black);
}

/* Mandala Section */
.mandala-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.mandala-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.mandala-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.mandala-pattern svg {
    animation: rotateSlowly 60s linear infinite;
}

.mandala-text p {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 1.2em;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 400;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(64, 145, 108, 0.3);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-block {
    padding: 20px;
}

.footer-block:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.footer-block:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.footer-block:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.footer-block:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.footer-block:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-policies a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.footer-nav a:hover,
.footer-policies a:hover {
    color: var(--accent-green);
}

.footer-policies {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(64, 145, 108, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(64, 145, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(64, 145, 108, 0);
    }
}

@keyframes rotateSlowly {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }
    
    .mandala-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .types-grid,
    .schedule-grid,
    .benefits-infographic {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-block {
        text-align: center;
    }
    
    .footer-nav,
    .footer-policies {
        align-items: center;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .container {
        padding: 0 15px;
    }
}