/* Responsive Styles */

@media (max-width: 1200px) {
  .room-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  /* Typography */
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  /* Navigation */
  .main-nav, .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Banner */
  .banner-content h1 {
    font-size: 3rem;
  }
  
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-image {
    order: -1;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl) var(--space-xl);
  }
  
  /* Contact Page */
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .contact-info {
    order: 1;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Spacing */
  .section-padding {
    padding: var(--space-xxl) 0;
  }
  
  /* Banner */
  .banner {
    min-height: 500px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  .banner-cta .btn {
    margin-bottom: var(--space-md);
  }
  
  /* Rooms Section */
  .room-cards {
    grid-template-columns: 1fr;
  }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Newsletter */
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-text {
    margin-bottom: var(--space-lg);
  }
  
  /* Contact Page */
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  /* Policy Pages */
  .policy-container {
    padding: var(--space-lg);
  }
}

@media (max-width: 576px) {
  /* Typography */
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
  }
  
  /* Banner */
  .banner-content {
    padding-top: var(--space-xxl);
  }
  
  .banner-content h1 {
    font-size: 2.25rem;
  }
  
  .banner-cta .btn {
    display: block;
    width: 100%;
    margin: 0 0 var(--space-md);
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-methods {
    margin-top: var(--space-md);
  }
  
  /* Back to Top */
  #back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  
  /* Form Elements */
  .form-group {
    flex-direction: column;
  }
  
  .form-group input[type="email"] {
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
  }
  
  .form-group .btn {
    border-radius: var(--radius-sm);
    width: 100%;
  }
}

/* Handle mobile menu visibility */
@media (min-width: 993px) {
  .mobile-menu.active {
    display: none !important;
  }
}