/* 
* Panito Yoga - Main Stylesheet
* Colors:
* - Primary: Lavender (#B497D6)
* - Contrast: Coal Black (#2E2E2E)
* - Background: Cream White (#F8F4EC)
* - Accents: Orange-Pink (#FF7F50), Turquoise (#40E0D0)
* Fonts:
* - Headings: Manrope
* - Text: Open Sans
*/

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #F8F4EC;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #B497D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9370DB;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #B497D6;
    margin: 0.5rem auto 0;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #B497D6;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #9370DB;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 244, 236, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 40px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 1.5rem;
}

.menu a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: #2E2E2E;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B497D6;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #2E2E2E;
    transition: all 0.3s ease;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    content: '';
    top: -8px;
}

.menu-icon::after {
    content: '';
    bottom: -8px;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background-color: #F8F4EC;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #B497D6;
    font-weight: 500;
}

.hero__text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero__btn {
    margin-top: 1rem;
}

/* About Section */
.about__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__content {
    flex: 1;
}

.about__text {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    background-color: #fff;
}

.benefits__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefits__item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #F8F4EC;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefits__icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
}

.benefits__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.benefits__text {
    color: #555;
}

/* Directions Section */
.directions__item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.directions__item:last-child {
    margin-bottom: 0;
}

.directions__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.directions__content {
    flex: 1;
}

.directions__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #B497D6;
}

.directions__text {
    margin-bottom: 1.5rem;
}

.directions__btn {
    display: inline-block;
}

/* Schedule Section */
.schedule {
    background-color: #fff;
}

.schedule__week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule__day {
    background-color: #F8F4EC;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule__day-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #B497D6;
}

.schedule__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule__item {
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule__time {
    font-weight: 600;
    color: #2E2E2E;
}

.schedule__name {
    color: #B497D6;
    font-weight: 500;
}

.schedule__trainer {
    font-size: 0.9rem;
    color: #666;
}

/* Order Section */
.order__inner {
    max-width: 700px;
    margin: 0 auto;
}

.order__form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2E2E2E;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    border-color: #B497D6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 151, 214, 0.2);
}

.checkbox-group {
    margin-top: 2rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #555;
}

.form-checkbox a {
    text-decoration: underline;
}

.order__btn {
    width: 100%;
    margin-top: 1rem;
    padding: 15px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials__item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonials__content {
    padding: 2rem;
}

.testimonials__text {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonials__text::before {
    content: '"';
    font-size: 3rem;
    color: #B497D6;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
}

.testimonials__name {
    font-weight: 600;
    color: #2E2E2E;
}

.testimonials__info {
    font-size: 0.9rem;
    color: #666;
}

/* Contacts Section */
.contacts__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contacts__info {
    flex: 1;
    min-width: 300px;
}

.contacts__map {
    flex: 2;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contacts__item {
    margin-bottom: 2rem;
}

.contacts__subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #B497D6;
}

.contacts__address {
    font-style: normal;
}

.contacts__link {
    display: block;
    color: #2E2E2E;
}

.contacts__link:hover {
    color: #B497D6;
}

.contacts__text {
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer {
    background-color: #2E2E2E;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__info {
    flex: 1;
    min-width: 300px;
}

.footer__logo {
    margin-bottom: 1.5rem;
}

.footer__description {
    color: #ddd;
    margin-bottom: 1.5rem;
}

.footer__nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__column {
    flex: 1;
    min-width: 160px;
}

.footer__title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__list a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #B497D6;
}

.footer__contacts li {
    margin-bottom: 0.5rem;
}

.footer__contacts span {
    display: block;
    color: #B497D6;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: #aaa;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 46, 46, 0.95);
    padding: 1rem 0;
    z-index: 1001;
}

.cookie-popup__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-popup__text {
    color: #fff;
    margin-bottom: 0;
}

.cookie-popup__btn {
    white-space: nowrap;
    padding: 8px 20px;
}

/* Thank You Page */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.thank-you__logo {
    margin-bottom: 2rem;
    justify-content: center;
}

.thank-you__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #B497D6;
}

.thank-you__text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.thank-you__buttons {
    margin-top: 2rem;
}

/* Legal Pages */
.legal {
    padding: 10rem 0 5rem;
}

.legal__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #B497D6;
}

.legal__content {
    max-width: 800px;
    margin: 0 auto;
}

.legal__subtitle {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2E2E2E;
}

.legal__paragraph {
    margin-bottom: 1.5rem;
}

.legal__list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #B497D6;
}

.legal__contacts li {
    padding-left: 0;
}

.legal__contacts li::before {
    display: none;
}

.legal__back {
    text-align: center;
    margin-top: 3rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero__inner, 
    .about__inner, 
    .directions__item {
        flex-direction: column;
    }
    
    .directions__item:nth-child(even) {
        flex-direction: column;
    }
    
    .benefits__inner {
        gap: 1.5rem;
    }
    
    .benefits__item {
        min-width: calc(50% - 1.5rem);
    }
    
    .schedule__week {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: #F8F4EC;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle:checked ~ .menu {
        right: 0;
    }
    
    .menu-button {
        display: block;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon {
        background-color: transparent;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .benefits__item {
        min-width: 100%;
    }
    
    .contacts__inner {
        flex-direction: column;
    }
    
    .order__form {
        padding: 2rem;
    }
    
    .cookie-popup__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup__text {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer__inner {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer__nav {
        flex-direction: column;
    }
    
    .legal__title {
        font-size: 2rem;
    }
    
    .legal__subtitle {
        font-size: 1.5rem;
    }
} 