/*==============================================================
# HOTELCASINO - Responsive Styles
==============================================================*/

/*--------------------------------------------------------------
# Mobile First Approach (Small devices and up)
--------------------------------------------------------------*/

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  :root {
    --spacing-xxl: 32px;
    --spacing-xl: 24px;
    --spacing-lg: 20px;
    --spacing-md: 12px;
    --spacing-sm: 8px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .btn {
    width: 100%;
    padding: 10px 18px;
  }

  .about-content,
  .membership-content,
  .feature-service-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .services-grid,
  .room-slider,
  .events-grid,
  .packages-grid,
  .testimonials-slider,
  .contact-grid,
  .mission-values,
  .team-grid,
  .achievements-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .room-features,
  .membership-perks {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --spacing-xxl: 40px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .services-grid,
  .room-slider,
  .events-grid,
  .packages-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-content,
  .membership-content,
  .feature-service-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .services-grid,
  .mission-values,
  .team-grid,
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-width);
  }
}

/*--------------------------------------------------------------
# Navigation Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    transition: 0.4s;
    overflow-y: auto;
    z-index: 999;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
    margin-bottom: var(--spacing-md);
  }

  .nav-menu a {
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
    display: block;
  }
}

/*--------------------------------------------------------------
# Header State on Scroll
--------------------------------------------------------------*/
@media (min-width: 992px) {
  #header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
}