/* Responsive Design System */

/* Base responsive styles */
:root {
  --container-padding: 20px;
  --section-spacing: 60px;
}

/* Large Screens (1200px and up) */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
}

/* Medium Screens (992px to 1199px) */
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 var(--container-padding);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .center-card {
    width: calc(50% - 20px);
  }
}

/* Tablet Screens (768px to 991px) */
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .center-card {
    width: 100%;
    margin: 10px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 0;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
  }
}

/* Mobile Screens (576px to 767px) */
@media screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .search-box {
    flex-direction: column;
    gap: 10px;
  }

  .search-box input,
  .search-box select {
    width: 100%;
  }

  .center-meta {
    flex-direction: column;
    gap: 10px;
  }

  .center-rating {
    justify-content: center;
  }

  .explore-btn {
    width: 100%;
  }
}

/* Small Mobile Screens (575px and below) */
@media screen and (max-width: 575px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .center-title {
    font-size: 1.2rem;
  }

  .center-description {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Video Responsiveness */
@media screen and (max-width: 767px) {
  .center-video {
    height: 200px;
  }

  .video-container {
    height: 200px;
  }
}

/* Form Responsiveness */
@media screen and (max-width: 767px) {
  .form-group {
    flex-direction: column;
  }

  .form-group input,
  .form-group select {
    width: 100%;
  }

  .booking-form {
    padding: 15px;
  }
}

/* Navigation Responsiveness */
@media screen and (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Footer Responsiveness */
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Utility Classes for Responsiveness */
.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .hide-on-mobile {
    display: block;
  }
}

.show-on-mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .show-on-mobile {
    display: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .mobile-menu-btn,
  .search-box,
  .explore-btn {
    display: none;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  body {
    font-size: 12pt;
  }

  a {
    text-decoration: none;
    color: #000;
  }
} 