/* Travel Gear Line - Responsive Styles */

/* Mobile First Approach */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile per requirements */
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative elements on mobile */
  }
  
  /* Section padding */
  .section {
    padding: 2rem 0;
  }
  
  /* Cards and components */
  .service-card,
  .team-member,
  .review-card,
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 200px;
  }
  
  /* Service images */
  .service-image {
    height: 150px;
    font-size: 2rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }
  
  /* Price amount */
  .price-amount {
    font-size: 2rem;
  }
  
  /* Feature icons */
  .feature-icon {
    font-size: 2.5rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Reduce animations on small devices */
  *, *::before, *::after {
    animation-duration: 0.1s !important;
    transition-duration: 0.1s !important;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .team-member,
  .review-card,
  .price-card {
    padding: 1.75rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .service-image {
    height: 180px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  /* Navbar enhancements for desktop */
  .navbar-nav .nav-link {
    margin: 0 1rem;
  }
  
  /* Multi-column layouts for larger screens */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Navigation Responsive Behavior */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Form Responsiveness */
@media (max-width: 767.98px) {
  .form-row .col-md-6 {
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Gallery Responsive Grid */
@media (min-width: 576px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* FAQ Responsive */
@media (max-width: 767.98px) {
  .faq-card {
    padding: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Utility Responsive Classes */
.mobile-center {
  @media (max-width: 767.98px) {
    text-align: center !important;
  }
}

.mobile-full-width {
  @media (max-width: 767.98px) {
    width: 100% !important;
  }
}

/* Performance Optimization for Mobile */
@media (max-width: 767.98px) {
  /* Reduce box-shadows for better performance */
  .service-card,
  .team-member,
  .review-card,
  .price-card,
  .contact-form {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Simplify hover effects on touch devices */
  .service-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5 {
    page-break-after: avoid;
  }
}


body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 125px;
}