/* Основные стили */
:root {
    --primary-color: #4B7F52;
    --secondary-color: #9D7BB4;
    --accent-color: #D4AF37;
    --dark-color: #1F2421;
    --light-color: #f9f9f9;
    --alt-light-color: #f3f3f3;
    --text-color: #333333;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Julius Sans One', sans-serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  section {
    padding: 4rem 2rem;
    position: relative;
  }
  
  .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  
  .wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .btn:hover::before {
    width: 300px;
    height: 300px;
  }
  
  ul {
    list-style: none;
  }
  
  /* Хедер */
  header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-container h1 {
    font-size: 1.5rem;
    margin-left: 1rem;
    margin-bottom: 0;
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
  
  nav ul {
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li a {
    font-family: 'Julius Sans One', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  /* Герой секция */
  .hero {
    background-color: var(--light-color);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .mandala-container {
    position: relative;
    animation: rotate 120s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .hero-content {
    max-width: 800px;
    margin: 2rem auto;
    z-index: 1;
  }
  
  .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* О нас */
  .about {
    background-color: var(--alt-light-color);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .about-text h3 {
    color: var(--primary-color);
  }
  
  .benefits {
    text-align: center;
    margin-top: 4rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .benefit-icon {
    margin-bottom: 1rem;
  }
  
  /* Программы */
  .programs {
    background-color: var(--light-color);
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .program-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .program-card h3, .program-card p, .program-card ul, .program-card .btn {
    margin: 1rem;
  }
  
  .program-card h3 {
    color: var(--primary-color);
  }
  
  .program-details {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
  }
  
  .program-details li {
    margin-bottom: 0.5rem;
  }
  
  /* Преподаватели */
  .teachers {
    background-color: var(--alt-light-color);
  }
  
  .teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .teacher-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .teacher-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--secondary-color);
  }
  
  .teacher-speciality {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* Расписание */
  .schedule {
    background-color: var(--light-color);
  }
  
  .schedule-table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
  }
  
  .schedule-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 1rem;
  }
  
  .schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .schedule-row:last-child {
    border-bottom: none;
  }
  
  .schedule-row:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .practice-journal {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .journal-template {
    margin-top: 2rem;
    text-align: center;
  }
  
  .journal-page {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
  }
  
  .journal-entry {
    text-align: left;
  }
  
  .journal-date, .journal-program {
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  /* Студии */
  .studios {
    background-color: var(--alt-light-color);
  }
  
  .studios-map {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .studios-map img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .studios-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .studio-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .studio-card h3 {
    color: var(--primary-color);
  }
  
  .yoga-infographic {
    margin-top: 4rem;
  }
  
  .infographic-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .infographic-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .yoga-icon {
    margin-bottom: 1rem;
  }
  
  .infographic-item ul {
    text-align: left;
    margin-left: 1.5rem;
    list-style-type: disc;
  }
  
  .infographic-item li {
    margin-bottom: 0.5rem;
  }
  
  /* Контакты */
  .contact {
    background-color: var(--light-color);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    margin-right: 1rem;
  }
  
  .contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .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: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 1rem;
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
  }
  
  .checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
  }
  
  /* Футер */
  footer {
    background-color: var(--dark-color);
    color: white;
    position: relative;
  }
  
  .footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .footer-content {
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo h3 {
    color: white;
    margin-top: 1rem;
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-nav a,
  .footer-policies a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-nav a:hover,
  .footer-policies a:hover {
    opacity: 1;
    color: var(--secondary-color);
  }
  
  .footer-policies {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .chakra-symbols {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .copyright {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  /* Адаптивность */
  @media (max-width: 1200px) {
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 992px) {
    h2 {
      font-size: 2rem;
    }
    
    h3 {
      font-size: 1.5rem;
    }
    
    .hero-content h2 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
    }
    
    nav ul {
      margin-top: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .schedule-header,
    .schedule-row {
      grid-template-columns: 1fr;
    }
    
    .schedule-header div,
    .schedule-row div {
      padding: 0.5rem;
      border-bottom: 1px solid #eee;
    }
    
    .schedule-header div:first-child,
    .schedule-row div:first-child {
      background-color: #f9f9f9;
      font-weight: bold;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer-nav,
    .footer-policies {
      align-items: center;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 3rem 1rem;
    }
    
    .hero {
      padding: 3rem 1rem;
    }
    
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .mandala-container {
      width: 250px;
      height: 250px;
    }
    
    .benefits-grid,
    .programs-grid,
    .teachers-grid,
    .studios-info,
    .infographic-content {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      padding: 3rem 1rem 1rem;
    }
  }
  
  @media (max-width: 375px) {
    h2 {
      font-size: 1.8rem;
    }
    
    .hero-content h2 {
      font-size: 1.8rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .mandala-container {
      width: 200px;
      height: 200px;
    }
    
    .logo-container h1 {
      font-size: 1.2rem;
    }
  }