/*
* Helipad Event Venue - Responsive CSS
* Handles responsive behavior for different screen sizes
*/

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .service-item-image {
    height: 180px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --fs-h1: 2.75rem;
    --fs-h2: 2rem;
    --fs-h3: 1.5rem;
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  .service-item-image {
    height: 160px;
  }
  
  .team-member {
    margin-bottom: var(--spacing-sm);
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --fs-h1: 2.5rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.25rem;
    --spacing-lg: 3rem;
  }
  
  section {
    padding: var(--spacing-sm) 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  .service-item {
    margin-bottom: var(--spacing-sm);
  }
  
  .service-item-image {
    height: 140px;
  }
  
  .team-member {
    margin-bottom: var(--spacing-sm);
  }
  
  .contact-form {
    padding: var(--spacing-sm);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.2rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  section {
    padding: var(--spacing-sm) 0;
  }
  
  .section-title {
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-section {
    height: auto;
    min-height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .about-image {
    margin-bottom: var(--spacing-sm);
  }
  
  .about-feature {
    margin-bottom: var(--spacing-xs);
  }
  
  .service-item {
    margin-bottom: var(--spacing-sm);
  }
  
  .team-member {
    margin-bottom: var(--spacing-sm);
  }
  
  .contact-form {
    padding: var(--spacing-sm);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
  }
  
  /* Adjust slider items for mobile */
  .reviews-slider .swiper-slide {
    padding: var(--spacing-xs);
  }
  
  /* Disable animations on mobile */
  .service-item:hover,
  .about-feature:hover,
  .team-member:hover,
  .price-plan-item:hover,
  .blog-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .service-item:hover .service-item-image img,
  .team-member:hover .team-member-image img,
  .blog-item:hover .blog-item-image img,
  .gallery-item:hover img,
  .about-image:hover img {
    transform: none;
  }
  
  .footer-widget {
    margin-bottom: var(--spacing-sm);
  }
}

/* Landscape orientation adjustment for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
}

/* Prefers reduced motion - disable animations */
@media (prefers-reduced-motion: reduce) {
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Print styles */
@media print {
  header, footer, .breadcrumb-section {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  a {
    text-decoration: none !important;
    color: var(--neutral-dark) !important;
  }
} 