/* Mobile First Approach */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Header */
  #header {
    padding: 15px 0;
  }

  .logo h1 {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    margin: var(--spacing-sm) 0;
  }

  .btn-book {
    display: none;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    display: none;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Hotels Section */
  .hotels-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-image {
    display: none;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Header */
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    margin: var(--spacing-sm) 0;
  }

  .btn-book {
    display: none;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hotels Section */
  .hotels-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-image {
    display: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Header */
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    margin: var(--spacing-sm) 0;
  }

  .btn-book {
    display: block;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hotels Section */
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .btn-book {
    display: block;
  }
}

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