/* Base styles */
:root {
    --primary: #1a2e22;
    --primary-light: #2a4236;
    --secondary: #7D6E83;
    --accent: #6B5876;
    --light: #f9f9f9;
    --light-green: #f0f7f2;
    --gold: #D4AF37;
    --lavender: #E6E6FA;
    --text-dark: #333;
    --text-light: #777;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mukta', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Martel', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--lavender), var(--gold));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utils */
.accent {
    color: var(--accent);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-3px);
}

.primary-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--lavender), var(--gold), var(--lavender));
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.primary-btn:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.secondary-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item {
    position: relative;
}

.nav-item:not(:hover) .nav-link {
    opacity: 0.8;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--lavender), var(--gold));
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 9rem 0 6rem;
    background-color: var(--light);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image {
    border-radius: 50%;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    fill: currentColor;
}

.wave-divider.inverted {
    transform: rotate(180deg);
    top: 0;
    bottom: auto;
}

/* Philosophy Section */
.philosophy {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-green);
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.philosophy-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
    min-width: 300px;
}

.philosophy-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.philosophy-icon svg {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.philosophy-icon:hover svg {
    transform: scale(1.1);
}

/* Benefits Section */
.benefits {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Styles Section */
.styles {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-green);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2.5rem;
}

.style-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.style-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.style-content {
    padding: 2rem;
}

.style-features {
    margin-top: 1.5rem;
}

.style-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.style-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Asanas Section */
.asanas {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-green);
}

.asanas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2.5rem;
}

.asana-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.asana-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.asana-content {
    padding: 2rem;
}

.asana-benefits {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 1rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Mukta', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26, 46, 34, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-item {
    position: relative;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-nav-list li,
.footer-policies-list li {
    margin-bottom: 0.8rem;
}

.footer-nav-list a,
.footer-policies-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-nav-list a:hover,
.footer-policies-list a:hover {
    color: white;
}

.elements-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.element {
    display: flex;
    align-items: center;
}

.element svg {
    margin-right: 0.8rem;
}

.element span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    margin-bottom: 2rem;
}

.policy-content h2 {
    text-align: left;
    margin-top: 2.5rem;
}

.policy-content h2::after {
    margin-left: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.back-link {
    margin-top: 2rem;
    display: inline-block;
}

/* Thank You Page */
.thank-you {
    padding: 10rem 0;
    text-align: center;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Favicon */
.favicon {
    display: none;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        margin: 0 auto;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .styles-grid,
    .asanas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        gap: 15px;
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding-top: 12rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-list {
        gap: 10px;
        font-size: 0.85rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}