/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #064e3b;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.logo-text {
    color: #064e3b;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #059669;
}

.nav-link.active {
    color: #047857;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #374151;
}

.nav-mobile {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    color: #374151;
    transition: background-color 0.3s;
}

.nav-mobile-link:hover {
    background-color: #f3f4f6;
}

.nav-mobile-link.active {
    background-color: #d1fae5;
    color: #047857;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 64px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    z-index: 1;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slide-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    color: #e5e7eb;
}

.cta-button {
    padding: 0.75rem 2rem;
    background-color: #059669;
    color: white;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #047857;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.dot.active {
    width: 32px;
    background-color: white;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 600px;
    }
    
    .slide-content h1 {
        font-size: 3.75rem;
    }
    
    .slide-content p {
        font-size: 1.25rem;
    }
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #064e3b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Asanas Section */
.asanas-section {
    background-color: #ffffff;
}

.asanas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.asana-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.asana-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.asana-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.asana-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.asana-card:hover .asana-image img {
    transform: scale(1.05);
}

.asana-content {
    padding: 1.5rem;
}

.asana-content h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.asana-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .asanas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .asanas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Numbers Section */
.numbers-section {
    background-color: #d1fae5;
}

.numbers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.number-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 3rem;
    color: #059669;
    font-weight: 700;
    margin-bottom: 1rem;
}

.counter::after {
    content: '+';
}

.number-card p {
    color: #6b7280;
}

@media (min-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .counter {
        font-size: 3.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: #ffffff;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
    font-weight: 700;
    margin-top: 2px;
}

.benefits-list li span:last-child {
    color: #374151;
}

.benefits-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
    .benefits-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-list {
        order: 1;
    }
    
    .benefits-image {
        order: 2;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #d1fae5;
}

.testimonials-container {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.testimonial-content h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #047857;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.testimonial-btn:hover {
    background-color: #f3f4f6;
}

.testimonial-prev {
    left: -1rem;
}

.testimonial-next {
    right: -1rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .testimonial-content {
        padding: 3rem;
    }
}

/* Page Header (for internal pages) */
.page-header {
    background-color: #047857;
    color: white;
    padding: 4rem 0;
    margin-top: 64px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    color: #d1fae5;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

/* About Page */
.about-content {
    background-color: #ffffff;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    color: #064e3b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.values-section {
    background-color: #d1fae5;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
}

.values-section h2 {
    font-size: 2rem;
    color: #064e3b;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.value-card h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.value-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Page */
.contact-content {
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: #064e3b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #d1fae5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #065f46;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.studio-hours {
    background-color: #d1fae5;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.studio-hours h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.studio-hours p {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 0.75rem 2rem;
    background-color: #059669;
    color: white;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #047857;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legal Pages */
.legal-content {
    background-color: #ffffff;
}

.legal-container {
    max-width: 56rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #064e3b;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 0.875rem;
    color: #d1fae5;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid #065f46;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #d1fae5;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
