/* AR Wildlife Book - Responsive CSS */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.2rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  
  .navbar-brand { font-size: 1.2rem; }
  
  /* Hero section adjustments */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Section padding reduction */
  section {
    padding: 40px 0;
  }
  
  /* Card adjustments */
  .feature-card,
  .service-card,
  .features-item,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-step,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    margin-bottom: 20px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 20px;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 200px;
  }
  
  /* Price cards */
  .plan-price {
    font-size: 2rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Disable animations on small devices */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  
  #hero {
    min-height: 85vh;
  }
  
  section {
    padding: 50px 0;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  #hero {
    min-height: 90vh;
  }
  
  section {
    padding: 60px 0;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 230px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  section {
    padding: 70px 0;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Navbar responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--light-green);
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-green);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Hero section responsive layout */
@media (max-width: 767.98px) {
  #hero .row {
    flex-direction: column-reverse;
  }
  
  #hero .col-md-6 {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Services grid adjustments */
@media (max-width: 575.98px) {
  .service-card {
    margin-bottom: 20px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .service-card {
    margin-bottom: 30px;
  }
}

/* Team grid adjustments */
@media (max-width: 575.98px) {
  .team-card {
    margin-bottom: 20px;
  }
}

/* Price plan responsive */
@media (max-width: 767.98px) {
  .price-card.featured {
    transform: none;
    margin-bottom: 30px;
  }
}

/* Footer responsive */
@media (max-width: 767.98px) {
  #footer {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}

/* Form responsive */
@media (max-width: 575.98px) {
  .form-control {
    padding: 10px;
  }
  
  .btn-primary {
    padding: 10px 20px;
    width: 100%;
  }
}

/* Blog grid responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 30px;
  }
}

/* FAQ responsive */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 20px;
    margin-bottom: 15px;
  }
}

/* Gallery responsive */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 20px;
  }
}

/* Process steps responsive */
@media (max-width: 767.98px) {
  .step-number {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 15px;
    margin: 0 auto 15px;
  }
  
  .process-step {
    padding: 20px;
  }
}

/* Timeline responsive */
@media (max-width: 767.98px) {
  .timeline-item::before {
    display: none;
  }
  
  .timeline-item {
    padding: 20px;
  }
}

/* Contact info responsive */
@media (max-width: 767.98px) {
  .contact-info {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Utility responsive classes */
@media (max-width: 575.98px) {
  .text-center-mobile {
    text-align: center;
  }
  
  .mb-4-mobile {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .text-center-tablet {
    text-align: center;
  }
  
  .mb-4-tablet {
    margin-bottom: 1.5rem;
  }
} 

body {
    overflow-x: hidden;
}