/* ===============================================
   RESPONSIVE STYLESHEET - ECO-TOURISM TEMPLATE
   Mobile-First Approach
   =============================================== */

/* ===============================================
   MOBILE FIRST (Default - up to 575px)
   =============================================== */

/* Hero Section Mobile */
.hero-section {
  min-height: 90vh;
  padding: 2rem 0;
}

.hero-title {
  font-size: 1.75rem;
}

.hero-subtitle {
  font-size: 1rem;
}

.hero-description {
  font-size: 1rem;
}

/* Navigation Mobile */
.navbar-brand {
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
  text-align: center;
}

/* Sections Mobile */
.section {
  padding: 3rem 0;
}

h1, .h1 {
  font-size: 1.75rem;
}

h2, .h2 {
  font-size: 1.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
}

/* Cards Mobile */
.eco-card .card-body {
  padding: 1.5rem;
}

/* Team Photos Mobile */
.team-photo {
  width: 150px;
  height: 150px;
}

/* Contact Form Mobile */
.contact-form {
  padding: 2rem 1rem;
}

/* Gallery Mobile */
.gallery-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.gallery-item img {
  height: 200px;
}

/* Services Mobile */
.service-icon {
  font-size: 2.5rem;
}

.service-price {
  font-size: 1.25rem;
}

/* FAQ Mobile */
.faq-question,
.faq-answer {
  padding: 1rem;
}

/* Review Cards Mobile */
.review-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer Mobile */
.footer {
  padding: 2rem 0 1rem;
  text-align: center;
}

/* Disable animations on mobile - Per requirements */
@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .eco-card:hover {
    transform: none !important;
  }
  
  .team-photo:hover {
    transform: none !important;
    border-color: var(--eco-green-light) !important;
  }
  
  .gallery-item:hover {
    transform: none !important;
  }
  
  .btn-eco:hover,
  .btn-outline-eco:hover {
    transform: none !important;
  }
}

/* ===============================================
   SMALL DEVICES (576px and up)
   =============================================== */
@media (min-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* ===============================================
   MEDIUM DEVICES (768px and up)
   =============================================== */
@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  h3, .h3 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .eco-card .card-body {
    padding: 2rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item img {
    height: 225px;
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .service-price {
    font-size: 1.375rem;
  }
  
  .footer {
    padding: 3rem 0 1rem;
    text-align: left;
  }
  
  .footer-bottom {
    text-align: center;
  }
}

/* ===============================================
   LARGE DEVICES (992px and up)
   =============================================== */
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  h1, .h1 {
    font-size: 2.25rem;
  }
  
  h2, .h2 {
    font-size: 1.875rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

/* ===============================================
   EXTRA LARGE DEVICES (1200px and up)
   =============================================== */
@media (min-width: 1200px) {
  .section {
    padding: var(--section-padding);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===============================================
   EXTRA EXTRA LARGE DEVICES (1400px and up)
   =============================================== */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: var(--content-max-width);
  }
}

/* ===============================================
   PRINT STYLES
   =============================================== */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: #000;
  }
}

/* ===============================================
   HIGH DPI / RETINA DISPLAYS
   =============================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon,
  .icon-large,
  .icon-medium {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* ===============================================
   LANDSCAPE ORIENTATION MOBILE
   =============================================== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS
   =============================================== */
@media (prefers-contrast: high) {
  :root {
    --eco-green: #2E7D32;
    --nature-blue: #0277BD;
    --forest-dark: #1B5E20;
    --dark-gray: #000000;
    --medium-gray: #424242;
  }
  
  .btn-eco,
  .btn-outline-eco {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* ===============================================
   REDUCED MOTION ACCESSIBILITY
   =============================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  .navbar {
    transition: none;
  }
  
  .eco-card,
  .team-photo,
  .gallery-item,
  .btn-eco,
  .btn-outline-eco,
  .navbar-nav .nav-link,
  .form-control {
    transition: none !important;
  }
}

/* ===============================================
   DARK MODE SUPPORT (Optional)
   =============================================== */

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