/* Base styles */
:root {
    --color-primary: #0a5c36;
    --color-secondary: #124c2f;
    --color-accent: #f0a04b;
    --color-light: #f9f7f2;
    --color-medium: #f0ebe0;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --font-heading: 'Abhaya Libre', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-primary);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 15px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__icon {
    margin-right: 10px;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.nav__list {
    display: flex;
}

.nav__item {
    margin: 0 12px;
}

.nav__link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__list .nav__item:not(:hover) .nav__link {
    opacity: 0.7;
}

.header__contact {
    display: flex;
    align-items: center;
}

.header__email {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.icon-email {
    margin-right: 5px;
}

/* Hero section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #f8f2e1, #e9f3e6);
    overflow: hidden;
}

.hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero__content {
    width: 50%;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 54px;
    margin-bottom: 20px;
    color: var(--color-primary);
    position: relative;
}

.hero__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--color-dark);
    max-width: 90%;
}

.hero__image-container {
    width: 48%;
    position: relative;
}

.hero__image {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(10, 92, 54, 0.2);
}

.hero__circles {
    position: absolute;
    top: -30px;
    left: -50px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero__circle--1 {
    width: 180px;
    height: 180px;
    background-color: rgba(10, 92, 54, 0.1);
    top: 10px;
    left: 0;
}

.hero__circle--2 {
    width: 120px;
    height: 120px;
    background-color: rgba(240, 160, 75, 0.1);
    top: 80px;
    left: 100px;
}

.hero__circle--3 {
    width: 150px;
    height: 150px;
    background-color: rgba(10, 92, 54, 0.05);
    top: -20px;
    left: 200px;
}

/* Wave divider */
.wave-divider {
    position: relative;
    height: 50px;
    width: 100%;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider--inverse svg {
    transform: rotate(180deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(10, 92, 54, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Section styles */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-dark);
}

/* About section */
.about {
    padding: 80px 0;
    background-color: var(--color-medium);
    position: relative;
}

.about__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about__image {
    width: 45%;
}

.about__img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
}

.about__content {
    width: 55%;
}

.about__text {
    margin-bottom: 20px;
    font-size: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature__icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.feature__text {
    font-size: 15px;
    margin-bottom: 0;
}

/* Chakras section */
.chakras {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
}

.chakras__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.chakra {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.chakra:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chakra__circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.chakra__circle--crown {
    background-color: rgba(155, 89, 182, 0.1);
}

.chakra__circle--third-eye {
    background-color: rgba(93, 108, 209, 0.1);
}

.chakra__circle--throat {
    background-color: rgba(52, 152, 219, 0.1);
}

.chakra__circle--heart {
    background-color: rgba(46, 204, 113, 0.1);
}

.chakra__circle--solar {
    background-color: rgba(241, 196, 15, 0.1);
}

.chakra__circle--sacral {
    background-color: rgba(230, 126, 34, 0.1);
}

.chakra__circle--root {
    background-color: rgba(231, 76, 60, 0.1);
}

.chakra__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.chakra__description {
    font-size: 15px;
    color: #555;
}

/* Mudras section */
.mudras {
    padding: 80px 0;
    background-color: var(--color-medium);
    position: relative;
}

.mudras__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.mudra {
    background-color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mudra:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mudra__image {
    height: 200px;
    overflow: hidden;
}

.mudra__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mudra:hover .mudra__img {
    transform: scale(1.05);
}

.mudra__title {
    padding: 20px 20px 10px;
    font-size: 22px;
}

.mudra__description {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #555;
}

/* Schedule section */
.schedule {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
}

.schedule__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.schedule__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule__filter {
    padding: 8px 20px;
    background-color: var(--color-white);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    border: 1px solid rgba(10, 92, 54, 0.1);
}

.schedule__filter:hover,
.schedule__filter--active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.schedule__table {
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.schedule__day {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 30px;
}

.schedule__day:last-child {
    border-bottom: none;
}

.schedule__day-title {
    padding: 20px 0;
    font-size: 24px;
    border-bottom: 1px dashed rgba(10, 92, 54, 0.1);
    margin-bottom: 0;
}

.schedule__classes {
    padding: 20px 0;
}

.schedule__class {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(10, 92, 54, 0.05);
}

.schedule__class:last-child {
    border-bottom: none;
}

.schedule__time {
    width: 150px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 17px;
}

.schedule__info {
    flex: 1;
}

.schedule__class-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.schedule__class-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.schedule__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.schedule__tag--beginner {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.schedule__tag--intermediate {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2980b9;
}

.schedule__tag--advanced {
    background-color: rgba(155, 89, 182, 0.1);
    color: #8e44ad;
}

/* Gallery section */
.gallery {
    padding: 80px 0;
    background-color: var(--color-medium);
    position: relative;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

/* Studios map */
.studios-map {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
}

.map {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.map__container {
    background-color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 20px;
}

.map__svg {
    width: 100%;
    display: block;
}

.map__studio {
    cursor: pointer;
    transition: var(--transition);
}

.map__studio:hover {
    r: 18;
}

.map__legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.map__studio-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.map__studio-marker {
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.map__studio-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.map__studio-address,
.map__studio-schedule {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--color-medium);
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial__image {
    height: 200px;
    overflow: hidden;
}

.testimonial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__content {
    padding: 25px;
    position: relative;
}

.testimonial__quote {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.testimonial__text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial__author {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 0;
}

/* Contacts section */
.contacts {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
}

.contacts__wrapper {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contacts__info {
    width: 40%;
}

.contacts__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contacts__icon {
    margin-right: 15px;
}

.contacts__link {
    font-size: 18px;
    font-weight: 500;
}

.contacts__benefits {
    margin-top: 40px;
}

.contacts__benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contacts__benefit-icon {
    margin-right: 15px;
}

.contacts__benefit-text {
    font-size: 15px;
    margin-bottom: 0;
}

.contacts__form-wrapper {
    width: 60%;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.contacts__form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
}

.form-group--checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox {
    margin-right: 10px;
}

.form-checkbox-label {
    font-size: 14px;
}

.form-link {
    text-decoration: underline;
}

.btn--submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer__logo {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo__icon--footer {
    margin-bottom: 15px;
}

.logo__text--footer {
    color: var(--color-light);
}

.footer__nav {
    grid-column: 2 / 3;
}

.footer__contact {
    grid-column: 3 / 4;
}

.footer__hours {
    grid-column: 4 / 5;
}

.footer__policy {
    grid-column: 1 / 3;
    grid-row: 2;
}

.footer__copyright {
    grid-column: 3 / 5;
    grid-row: 2;
    text-align: right;
}

.footer__title {
    font-size: 18px;
    color: var(--color-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer__nav-list,
.footer__policy-list {
    display: flex;
    flex-direction: column;
}

.footer__nav-item,
.footer__policy-item {
    margin-bottom: 10px;
}

.footer__link {
    color: var(--color-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--color-light);
    opacity: 1;
    transform: translateX(5px);
}

.footer__email {
    color: var(--color-light);
    opacity: 0.8;
    font-size: 16px;
    transition: var(--transition);
}

.footer__email:hover {
    color: var(--color-light);
    opacity: 1;
}

.footer__text {
    color: var(--color-light);
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer__copyright-text {
    color: var(--color-light);
    opacity: 0.6;
    font-size: 14px;
    margin-top: 30px;
}

/* Media queries */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .map__legend {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__logo {
        grid-column: 1 / 2;
    }
    
    .footer__nav {
        grid-column: 2 / 3;
    }
    
    .footer__contact {
        grid-column: 1 / 2;
        grid-row: 2;
    }
    
    .footer__hours {
        grid-column: 2 / 3;
        grid-row: 2;
    }
    
    .footer__policy {
        grid-column: 1 / 2;
        grid-row: 3;
    }
    
    .footer__copyright {
        grid-column: 2 / 3;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero__wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__content,
    .hero__image-container {
        width: 100%;
    }
    
    .hero__content {
        margin-bottom: 50px;
    }
    
    .hero__subtitle {
        max-width: 100%;
    }
    
    .hero__circles {
        left: 0;
    }
    
    .about__wrapper {
        flex-direction: column;
    }
    
    .about__image,
    .about__content {
        width: 100%;
    }
    
    .contacts__wrapper {
        flex-direction: column;
    }
    
    .contacts__info,
    .contacts__form-wrapper {
        width: 100%;
    }
    
    .map__legend {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .schedule__time {
        width: 100px;
        font-size: 15px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__logo,
    .footer__nav,
    .footer__contact,
    .footer__hours,
    .footer__policy,
    .footer__copyright {
        grid-column: 1;
    }
    
    .footer__logo {
        grid-row: 1;
    }
    
    .footer__nav {
        grid-row: 2;
    }
    
    .footer__contact {
        grid-row: 3;
    }
    
    .footer__hours {
        grid-row: 4;
    }
    
    .footer__policy {
        grid-row: 5;
    }
    
    .footer__copyright {
        grid-row: 6;
        text-align: left;
    }
}

@media (max-width: 375px) {
    .header {
        padding: 10px 0;
    }
    
    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav__item {
        margin: 0 5px;
    }
    
    .hero__title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}