/* Responsive Styles - Indie Board Games Subscription Box */

/* Mobile Breakpoint (768px and below) */
@media (max-width: 768px) {
  
  /* Remove all scroll animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments for mobile */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Section padding reduction */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Service cards mobile */
  .service-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Review cards mobile */
  .review-card {
    padding: 1.5rem;
  }
  
  /* FAQ cards mobile */
  .faq-card {
    padding: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  /* Price cards mobile */
  .price-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  /* Feature icons mobile */
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Gallery items mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Button adjustments */
  .btn-primary-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 0.6rem 0.8rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Card hover effects disabled on mobile */
  .card-custom:hover,
  .service-card:hover,
  .price-card:hover,
  .gallery-item:hover img {
    transform: none;
    box-shadow: inherit;
  }
  
  /* Mobile spacing utilities */
  .mb-mobile-3 {
    margin-bottom: 2rem !important;
  }
  
  .mt-mobile-3 {
    margin-top: 2rem !important;
  }
}

/* Tablet Breakpoint (769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  
  /* Typography adjustments for tablet */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  /* Hero section tablet */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Section padding adjustment */
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Service cards tablet */
  .service-card {
    padding: 1.75rem;
  }
  
  /* Price cards tablet */
  .price-card {
    padding: 2.25rem 1.75rem;
  }
  
  .price-value {
    font-size: 2.75rem;
  }
  
  /* Feature icons tablet */
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  /* Gallery items tablet */
  .gallery-item img {
    height: 225px;
  }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  
  /* Container max-width adjustments */
  .container {
    max-width: 1140px;
  }
  
  /* Hero section large desktop */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Enhanced spacing for large screens */
  .section-padding {
    padding: 6rem 0;
  }
  
  /* Service cards large desktop */
  .service-card {
    padding: 2.5rem;
  }
  
  /* Price cards large desktop */
  .price-card {
    padding: 3rem 2.5rem;
  }
  
  /* Feature icons large desktop */
  .feature-icon {
    width: 90px;
    height: 90px;
    font-size: 2.25rem;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  
  /* Even smaller typography for very small screens */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  /* Hero section extra small */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Reduced section padding */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Service cards extra small */
  .service-card {
    padding: 1.25rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  /* Team photos extra small */
  .team-photo {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
  
  /* Review cards extra small */
  .review-card {
    padding: 1.25rem;
  }
  
  /* FAQ cards extra small */
  .faq-card {
    padding: 1rem;
  }
  
  /* Price cards extra small */
  .price-card {
    padding: 1.5rem 1.25rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Feature icons extra small */
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery items extra small */
  .gallery-item img {
    height: 180px;
  }
  
  /* Button adjustments extra small */
  .btn-primary-custom {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  
  /* Footer extra small */
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item img,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}