/* Board Game Cafe Website - Responsive CSS */

/* Mobile First Approach */

/* Base Mobile Styles */
@media (max-width: 767.98px) {
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper {
    --swiper-navigation-size: 20px;
  }
  
  .swiper-autoplay {
    pointer-events: none;
  }
  
  /* Hero Section Mobile */
  .hero-title {
    font-size: 2.53rem;
  }
  
  .hero-subtitle {
    font-size: 1.27rem;
  }
  
  .hero-desc {
    font-size: 1.11rem;
  }
  
  /* Section Titles Mobile */
  .section-title {
    font-size: 2.03rem;
  }
  
  .section-subtitle {
    font-size: 1.20rem;
  }
  
  /* Cards Mobile */
  .service-card,
  .feature-card,
  .price-card,
  .team-card {
    margin-bottom: 2.15rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Navigation Mobile */
  .navbar-brand {
    font-size: 1.27rem !important;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.10rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card,
  .feature-card {
    margin-bottom: 2.15rem;
  }
}

/* Large Tablet/Small Desktop */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.08rem;
  }
  
  .section-title {
    font-size: 3.10rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-section {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* Accessibility Improvements */
@media (prefers-contrast: high) {
  :root {
    --primary-burgundy: #000000;
    --primary-cream: #ffffff;
    --primary-charcoal: #000000;
  }
}


/* Container Adjustments */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Form Adjustments */
@media (max-width: 767.98px) {
  .form-control {
    font-size: 17.00px; /* Prevents zoom on iOS */
  }
}

/* Button Adjustments */
@media (max-width: 767.98px) {
  .btn {
    width: 100%;
    margin-bottom: 1.20rem;
  }
}

/* Team Cards Mobile */
@media (max-width: 767.98px) {
  .team-photo {
    width: 120px;
    height: 120px;
  }
}

/* Blog Cards Mobile */
@media (max-width: 767.98px) {
  .blog-image {
    height: 150px;
  }
}

/* Service Images Mobile */
@media (max-width: 767.98px) {
  .service-image {
    height: 150px;
  }
} 