/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3 {
    font-family: 'Dancing Script', cursive;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2em;
    color: #6a1b9a;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav__links a {
    color: #9a1b50;
    text-decoration: none;
}

.burger-menu {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

.header-contact p {
    margin-bottom: 10px;
}



/* Hero Section */
.hero {
    height: 100vh;

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}


/* Welcome Section */
.welcome {
    padding: 50px 20px;
    text-align: center;
}

/* Yoga For Health */
.yoga-for-health {
    padding: 50px 0px;
    text-align: center;
}

.health__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.health__item {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

.health__item img {
    width: 50px;
}

.health__item h3 {
    margin: 10px 0;
}

/* Yoga Classes */
.yoga-classes {
    padding: 50px 0px;
    text-align: center;
}

.classes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.class__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.class__item img {
    width: 100%;
    height: auto;
}

.class__item h3,
.class__item p {
    padding: 10px;
}

/* Discount Section */
.discount {
    padding: 50px 20px;
    text-align: center;
    background: #f8bbd0;
}



/* Pricing Section */
.pricing {
    padding: 50px 20px;
    text-align: center;
}

.pricing__grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.pricing__item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
}

.pricing__item h3 {
    color: #6a1b9a;
}

.pricing__item .price {
    font-size: 2em;
    color: #d81b60;
}

.pricing__item ul {
    list-style: none;
    margin: 20px 0;
}



/* Testimonials Slider */
.testimonials {
    padding: 50px 20px;
    text-align: center;
}

.testimonial__slider {
    margin-top: 20px;
}

.swiper-slide {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

/* Blog Slider */
.blog {
    padding: 50px 20px;
    text-align: center;
}

.blog__slider {
    margin-top: 20px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.swiper-.button-next,
.swiper-.button-prev {
    color: #6a1b9a;
}


.footer__links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav__links.active {
        transform: translateX(0);
        display: block;
        top: 105px;
    }

    .nav__links li {
        margin: 20px ;
    }

    .health__grid,
    .classes__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2em;
    }
}
.container{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}
ul{
    list-style: none;
}
.header{
    display: flex;
    padding: 0;
    position: relative;
    flex-direction: column;
}
.header__top {
    padding: 5px;
    width: 100%;
    background-color: #333;
}
.header__top .container{
    display: flex;
    justify-content: space-between;

}
.header__top .container ul{
    display: flex;
    gap: 10px;
    text-decoration: none;
}
.header__top .container ul li,
.header__top .container a{
    color: #fff;
    text-decoration: none;
}
.header__center{
    padding: 10px 0;
    position: absolute;
    top: 35px;
    width: 100%;
    background-color: #b2758b;
}
.header__center .container{
   display: flex;
   justify-content: space-between; 
}
a{
    text-decoration: none;
}
.logo{
    display: block;
    color: #d389a4;
    font-weight: 800;
}
.logo span{
    color: #fff;
}
.nav__links li a{
    font-weight: 700;
}
.hero{
    background: rgb(247, 202, 201);
}
.hero__items{
    display: flex;
    align-items: center;
    gap: 70px;
}
.hero__item{
    flex: 1;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}
.hero__item img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
   border-radius: 20px;
}
.hero p {
    font-size: 1.2em;
    margin: 20px 0;
    text-align: start;
}
 .button {
    margin: 0 10px;
    background-color: #201e1ed9;
    padding: 12px 30px;
    display: block;
    border-radius: 20px;
    color: #fff;
}
.button:hover{
    background-color: #4d4b4b;
}
.hero__buttons{
    margin-top: 50px;
}
.header__center {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
  
    z-index: 1000;
  }
  
  .header__center.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .welcome__items{
    display: flex;
    gap: 70px;
    align-items: center;

  }
  .welcome__item{
    flex: 1;
  }
 
  .sub::after {
    position: absolute;
    content: "";
    height: 2px;
    top: 11px;
    right: -30px;
    left: -30px;
    z-index: -1;
    background: rgb(247, 202, 201);
}
.sub {
    display: inline-block;
    position: relative;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    margin: 0px 30px 5px;
    padding: 0px 10px;
    background: rgb(255, 255, 255);
}
.welcome__item{
    display: flex;
  align-items: flex-start;
    flex-direction: column;

}
h2{
    margin: 0;
    position: relative;
    font-size: 40px;
    font-weight: 700;
}
.welcome__item img{
    width: 100%;
    object-fit: cover;
    max-height: 450px;
    border-radius: 20px;
}
.hero__buttons{
    display: flex;
    gap: 30px;
    margin-top: 15px;
}
.welcome .button{
    margin-top: 30px;
}
.health__item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.health__item span{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 45px;
    width: 90px;
    justify-content: center;
    min-width: 90px;
    background-color: #d389a4f8;
    height: 90px;
    border-radius: 100%;
}
.health__item

 {
    padding: 20px;
    background: transparent;
    border-radius: 0;
    border: 1px solid #333;
}
.health__item:hover{
    background-color: #d389a4f8;
    border: 1px solid transparent;
}
.health__grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}
.classes__grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 74px;
    margin-top: 20px;
}
.class__item {
    background: #fff;
    border: 1px solid #a7a7a7;
    border-radius: 10px;
    overflow: hidden;
}
.class__item img{
    width: 100%;
    max-height: 250px;
    border-radius: 0;
    object-fit: cover;
}
.class__item h3{
text-align: start;
font-size: 20px;
}
.class__item p{
    text-align: start;
    color: 14px;
    color: #8d8b8b;
}
.discount {
    background-attachment: fixed;
    padding: 90px 20px;
    background-size: cover;
    text-align: center;

    margin: 50px 0;
    background-color: #f8bbd0;
}
.discount span{
    color: #fff;
}
.discount .button{
    margin: 0 auto;
    width: fit-content;
    margin-top: 40px;
}
.discount__container{
    margin: auto;
    max-width: 700px;
}
.discount h2{
    font-size: 48px;
    margin:0 0 20px 0;
}
.pricing__item

 {
    background: #f5f5f5;
    padding: 0 0 20px;
    display: flex
;
    border-radius: 0px;
    width: 30%;
    flex-direction: column;
    align-items: center;
}
.pricing__content{
    padding: 20px;
    background-color: #333;
    width: 100%;
}
.pricing__content h3{
    font-size: 40px;
    color: #fff;
}
.pricing__grid{

}
.testimonials img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
}
.testimonials

 {
    padding: 50px 0px;
    text-align: center;
}
.testimonial__slider{
    margin-top: 80px;
}
.blog__slider img{
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
.blog .swiper-slide {
    background: transparent;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #4d4b4b;
}
.blog .swiper-button-next, .swiper-button-prev

 {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: 20px !important;
    height: 20px !important;
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
;font-weight: 700;
    align-items: center;
    justify-content: center;
    color: #9a1b508a !important;
}
.footer__logo{
    display: inline-block;
    color: #F7CAC9;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 45px;
}
.footer__logo span{
    color: #ffffff;
    text-transform: lowercase;
}
footer{
    padding: 90px   0;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer__content{
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}
.footer__content p{
    color: #fff;
}
footer a{
    color: #fff;
}
.footer__copy{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer__copy span{
    color: #fff;
}
.footer__soc i{
    font-size: 30px;
}
.footer__soc{
    display: flex;
    gap: 15px;
}
.yoga-for-health__items{
    display: flex;
    margin-top: 40px;
    gap: 50px;
}
.yoga-for-health__item{
    flex: 1;
}
.welcome__contact{
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 700;
    color: #eb0c0c;
    font-size: 20px;
}
.welcome__contact a{
    color: #f10a0a;
}
.terms .container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: start;
}
.terms ul{
display: flex;
gap: 10px;
flex-direction: column;
list-style: circle;
padding-left: 20px;
}
@media screen and (max-width:768px) {
    .header__top .container

 {
    display: flex
;
    justify-content: space-between;
    flex-direction: column;
}
.hero__items {
    display: flex
;
    align-items: center;
    gap: 70px;
    flex-direction: column;
}
.welcome__items {
    display: flex
;
    gap: 70px;
    align-items: center;
    flex-direction: column;
}
.hero{
    height: 100%;
    padding: 75px 0;
}
.yoga-for-health__items {
    display: flex
;
    margin-top: 40px;
    gap: 50px;
    flex-direction: column;
}
.health__grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-top: 50px;
}
.classes__grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 44px;
    margin-top: 20px;
}
.pricing__grid {
    display: flex
;
    justify-content: space-around;
    margin-top: 20px;
    flex-direction: column;
}
.pricing__item {
    background: #f5f5f5;
    padding: 0 0 20px;
    display: flex
;
    border-radius: 0px;
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.footer__content p {
    color: #fff;
    font-size: 15px;
}
.swiper-slide{
    padding: 20px 0;
}
.discount h2 {
    font-size: 33px;
    margin: 0 0 20px 0;
}
.pricing {
    padding: 50px 0px;
    text-align: center;
}
.header__center {
    padding: 10px 0;
    position: absolute;
    top: 35px;
    width: 100%;
    background-color: #d389a4d1;
}
.header__top .container ul.socials{
    display: none;
}
.logo {
    display: block;
    color: #cb688c;
    font-weight: 800;
}
.banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .banner a {
    color: #4fc3f7;
    text-decoration: underline;
  }

  .banner button {
    background: #4caf50;
    border: none;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
  }

  .banner.hidden {
    display: none;
  }
  .welcome

 {
    padding: 80px 20px;
    text-align: center;
}
}
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  
  .accordion-header {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    background: #f7f7f7;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .accordion-header:hover {
    background: #eaeaea;
  }
  
  .accordion-content {
    padding: 15px 20px;
    display: none;
    background: #fff;
    animation: fadeIn 0.3s ease;
  }
  
  .accordion-item.active .accordion-content {
    display: block;
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  .service-item li {
  
    padding: 6px 12px 6px 30px; /* добавляем отступ слева под иконку */
   text-align: start;
    font-size: 0.85rem;
    position: relative;
  }
  
  /* добавляем галочку перед каждым пунктом */
  .service-item li::before {
    content: '✔';
    position: absolute;
    left: 10px;
    top: 20%;
    transform: translateY(-20%);
    color: #d11d44; /* зелёный */
    font-size: 0.9rem;
  }
  .accordion-item {
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    width: 100%;
    background-color: transparent;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}
.accordion-content p{
    text-align: start;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cookie-banner p {
    margin: 0;
  }
  
  .cookie-banner a {
    color: #1dd1a1;
    text-decoration: underline;
  }
  
  .cookie-banner button {
    background: #1dd1a1;
    border: none;
    color: #000;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .cookie-banner button:hover {
    background: #10ac84;
  }