/* Responsive Styles for Yacht Villa Rentals Template */

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  #hero h1 {
    font-size: 4rem;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  #hero h1 {
    font-size: 3.5rem;
  }
  
  .services-card .card-body {
    padding: 1.5rem;
  }
  
  .team-info {
    padding: 1.25rem;
  }
  
  .team-info h3 {
    font-size: 1.25rem;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  .container {
    max-width: 720px;
  }
  
  #hero {
    height: auto;
    min-height: 100vh;
  }
  
  #hero h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .services-card {
    margin-bottom: 1.5rem;
  }
  
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .info-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .container {
    max-width: 540px;
  }
  
  #hero {
    height: auto;
    min-height: 80vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero p {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature,
  .services-card,
  .team-card,
  .price-card,
  .info-item,
  .blog-card,
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 2rem;
    text-align: center;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  #site-copyright {
    text-align: center;
  }
}

/* Extra small devices (phones) */
@media (max-width: 575px) {
  section {
    padding: 3rem 0;
  }
  
  #hero {
    height: auto;
    min-height: 80vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero p {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title h2::after {
    width: 40px;
  }
  
  .about-feature,
  .services-card,
  .team-card,
  .price-card,
  .info-item,
  .blog-card,
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  footer h3 {
    margin-top: 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 1.5rem;
  }
  
  #site-copyright {
    text-align: center;
    font-size: 0.8rem;
  }
  
  /* Adjust header for mobile */
  header .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-toggler {
    margin-right: 0;
  }
  
  .navbar-collapse {
    background-color: var(--primary-1);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  
  /* Reduce animation effects on mobile for performance */
  .fade-in, .slide-up {
    animation: none;
  }
  
  .about-feature:hover, 
  .services-card:hover, 
  .price-card:hover,
  .team-card:hover img,
  .blog-card:hover,
  .info-item:hover {
    transform: none;
  }
  
  /* Swiper adjustments for mobile */
  .swiper-button-next, 
  .swiper-button-prev {
    display: none;
  }
  
  /* Accordion adjustments */
  .accordion-button {
    padding: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in, 
  .slide-up {
    animation: none;
  }
  
  .about-feature:hover, 
  .services-card:hover, 
  .price-card:hover,
  .team-card:hover img,
  .blog-card:hover,
  .info-item:hover,
  .gallery-item:hover img {
    transform: none;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
} 