/* ==========================================================================
   SUNRISE PALACE & RESORT - RESPONSIVE STYLES
   ========================================================================== */

/* Ultra Wide Displays (>= 1600px) */
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
  
  .hero-content h1 {
    font-size: 5.5rem;
  }
}

/* Laptops & Standard Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(11, 31, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
    z-index: 10000;
  }
  
  .booking-form-box {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-wrapper {
    min-height: 80vh;
  }
  
  .top-info span:nth-child(2) {
    display: none;
  }
}

/* Small Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .booking-form-box {
    grid-template-columns: 1fr;
  }
  
  .hero-booking-widget {
    margin-top: -2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  /* Disable custom cursor on touch devices */
  .luxury-cursor, .luxury-cursor-follower {
    display: none !important;
  }
}

/* Small Mobile Devices (<= 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .btn-luxury {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }
  
  .modal-box {
    padding: 1.5rem;
    width: 95%;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
