/* ===== RESPONSIVE STYLES ===== */

/* Tablet Devices */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content,
  .location-content,
  .contact-content {
    gap: 3rem;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CANYONEERING GALLERY RESPONSIVE ===== */
@media (max-width: 768px) {
    .canyonering .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .canyonering .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .canyonering .gallery-item {
        height: 220px;
    }
}
/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  .newsletter-form button {
    margin-top: 0.5rem;
    padding: 10px 15px;
  }
}

/* Small Mobile Devices */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature {
    padding: 1rem;
  }
  
  .facility-card {
    padding: 1.5rem;
  }
}




/* ===== CANYONEERING GALLERY RESPONSIVE ===== */
/* Desktop besar (lebih dari 1200px) */
@media (min-width: 1200px) {
    .canyonering .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .canyonering .gallery-item {
        height: 350px;
    }
}

/* Tablet (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .canyonering .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .canyonering .gallery-item {
        height: 250px;
    }
}

/* Mobile (kurang dari 768px) */
@media (max-width: 767px) {
    .canyonering .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .canyonering .gallery-item {
        height: 200px;
    }
}

/* Mobile kecil (kurang dari 480px) */
@media (max-width: 480px) {
    .canyonering .gallery-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .canyonering .gallery-item {
        height: 180px;
    }
}