/* Responsive Styles */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .featured-content h2,
  .section-header h2 {
    font-size: 2.2rem;
  }

  .testimonial p {
    font-size: 1.3rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .featured-grid,
  .facilities-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .newsletter-form {
    width: 100%;
    justify-content: center;
  }

  /* Header mobile navigation */
  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .featured-content h2,
  .section-header h2 {
    font-size: 2rem;
  }

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

  .facilities-list {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Legal Pages */
  .legal-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .featured-content h2,
  .section-header h2,
  .facilities-header h2 {
    font-size: 1.8rem;
  }

  .testimonial p {
    font-size: 1.1rem;
  }

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