﻿
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .thermal-content,
  .about-grid,
  .spa-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .room-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .logo img {
    height: 80px;
    max-width: 320px;
  }

  .hero {
    height: 70vh;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 200px;
    margin-bottom: 10px;
  }

  
  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar-left span:not(.location-icon) {
    display: none;
  }

  
  .nav-menu {
    position: fixed;
    top: 140px;
    left: -100%;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    transform: none !important;
  }

  .header.scrolled .nav-menu {
    top: 70px;
  }

  .header-icons {
    display: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  
  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reservation-form {
    padding: 30px 20px;
  }

  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
    padding: 12px;
  }

  
  .room-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .room-price .btn {
    width: 100%;
  }

  
  .video-controls {
    flex-direction: column;
    bottom: 80px;
  }

  .skip-intro {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .logo img {
    height: 65px;
    max-width: 260px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .services-grid,
  .rooms-grid,
  .values-grid,
  .team-grid,
  .pools-grid,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .filter-options {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
  }

  .room-features {
    flex-direction: column;
    gap: 10px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  
  .video-controls {
    bottom: 100px;
  }

  .control-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .skip-intro {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

