/* Исправление для мобильных устройств - отступ от шапки */
@media (max-width: 768px) {
  /* Основное исправление для hero секции */
  #hero {
    padding-top: 60px !important;
  }
  
  /* Дополнительные селекторы для hero контента */
  section[class*="min-h-screen"] {
    padding-top: 60px !important;
  }
  
  /* Исправление для заголовка с текстом "Привет! Меня зовут Ирина" */
  h1[class*="text-5xl"],
  h1[class*="font-playfair"] {
    margin-top: 20px !important;
  }
  
  /* Дополнительный отступ для контейнера с hero контентом */
  .max-w-4xl.mx-auto.text-center {
    margin-top: 20px !important;
  }
  
  /* Отступ для анимации мышки */
  .absolute.bottom-8 {
    bottom: 100px !important;
  }
  
  /* Поднимаем кнопку "Сделать заказ" в hero секции выше */
  #hero button[class*="bg-gradient-primary"],
  #hero .animate-bounce-in {
    margin-top: -40px !important;
  }
  
  /* Альтернативный селектор для кнопки */
  section[id="hero"] button {
    margin-top: -40px !important;
  }
  
  /* Общие селекторы для больших заголовков */
  .text-5xl.md\\:text-7xl,
  .text-6xl,
  .text-5xl,
  .text-4xl {
    padding-top: 10px !important;
  }
  
  /* Центрируем форму заказа */
  #order .max-w-6xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Дополнительное центрирование для формы */
  section[id="order"] .container {
    display: flex !important;
    justify-content: center !important;
  }
}

/* Дополнительные исправления для очень маленьких экранов */
@media (max-width: 480px) {
  /* Увеличиваем отступ для очень маленьких экранов */
  #hero {
    padding-top: 70px !important;
  }
  
  section[class*="min-h-screen"] {
    padding-top: 70px !important;
  }
  
  h1[class*="text-5xl"],
  h1[class*="font-playfair"] {
    margin-top: 30px !important;
  }
  
  .max-w-4xl.mx-auto.text-center {
    margin-top: 30px !important;
  }
  
  /* Отступ для анимации мышки на маленьких экранах */
  .absolute.bottom-8 {
    bottom: 120px !important;
  }
  
  /* Поднимаем кнопку "Сделать заказ" в hero секции выше на маленьких экранах */
  #hero button[class*="bg-gradient-primary"],
  #hero .animate-bounce-in,
  section[id="hero"] button {
    margin-top: -50px !important;
  }
  
  /* Центрируем форму заказа на маленьких экранах */
  #order .max-w-6xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  section[id="order"] .container {
    display: flex !important;
    justify-content: center !important;
  }
}
