/* Responsive Styles */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Tablets to Desktops (992px to 1199px) */
@media (max-width: 1199px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hotel-card {
    gap: var(--space-lg);
  }
  
  .footer-content {
    gap: var(--space-lg);
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .stats-container {
    position: static;
    transform: none;
    margin-top: var(--space-md);
  }
  
  .hotel-card,
  .hotel-card.reverse {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* Small Tablets to Mobile (576px to 767px) */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 var(--space-md);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .slider-controls {
    bottom: var(--space-md);
  }
  
  .slider-arrows {
    display: none;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .stat-item {
    padding: var(--space-sm);
    min-width: 90px;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-text {
    font-size: 0.75rem;
  }
  
  .hotel-features {
    gap: var(--space-sm);
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-xs);
    justify-content: flex-start;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
}