/* RESPONSIVE STYLES FOR PHOTOGRAPHY ROAD TRIPS */

/* Large Desktops (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title-1 {
    font-size: 4rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.8rem;
  }
}

/* Standard Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}

/* Small Desktops and Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-img {
    height: 250px;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Grid adjustments */
  .col-md-6 {
    width: 50%;
  }
  
  .col-md-4 {
    width: 33.333333%;
  }
  
  .col-md-3 {
    width: 25%;
  }
  
  /* Mobile navigation */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1100;
    padding: 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  .navbar-nav {
  flex-direction: row;
    flex-direction: column;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-light);
  }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Grid adjustments */
  .col-sm-6 {
    width: 50%;
  }
  
  .col-sm-12 {
    width: 100%;
  }
  
  /* Service cards stacking */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Features section adjustments */
  .feature-item {
    margin-bottom: 2.5rem;
  }
  
  /* Team section adjustments */
  .team-member {
    margin-bottom: 3rem;
  }
  
  /* Reduce padding for sections */
  section {
    padding: 3rem 0;
  }
  
  .page-header {
    height: 40vh;
  }
}

/* Mobile Portrait (575px and below) */
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-desc-1 {
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Section title adjustments */
  h2 {
    font-size: 1.8rem;
  }
  
  /* Grid adjustments */
  .col-12 {
    width: 100%;
  }
  
  /* Pricing cards stacking */
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  /* Contact form adjustments */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Footer adjustments */
  .footer-col {
    margin-bottom: 2rem;
  }
  
  /* Reduce padding for sections */
  section {
    padding: 2.5rem 0;
  }
  
  .page-header {
    height: 30vh;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  /* Accordion adjustments */
  .accordion-header {
    padding: 1rem;
  }
  
  .accordion-content {
    padding: 1rem;
  }
  
  /* Review slider adjustments */
  .review-slider .swiper-slide {
    padding: 1.5rem;
  }
}

/* Height-based media queries for hero section */
@media (max-height: 600px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .hero {
    background-attachment: scroll !important;
  }
  
  .service-card:hover .service-img img,
  .blog-post:hover .blog-img img,
  .team-member:hover .team-img img,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
} 