/* Responsive Styles */

/* Tablet and smaller devices */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hotel-card {
    flex-direction: column;
  }
  
  .hotel-card.reverse {
    flex-direction: column;
  }
  
  .hotel-img {
    max-height: 300px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .banner {
    height: 80vh;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--white);
    padding: 80px 1.5rem 2rem;
    transition: 0.4s;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 200;
  }
  
  .banner {
    height: 70vh;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .about-values {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .experience-category {
    padding: 1.5rem;
  }
  
  .hotel-info {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form .btn {
    border-radius: var(--border-radius);
    width: 100%;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .banner {
    height: 80vh;
  }
  
  .destination-img {
    height: 200px;
  }
  
  .hotel-img {
    max-height: 250px;
  }
  
  .experiences-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-btn {
    display: none;
  }
}