/* Responsive Styles for E-Sports Tournament Production Agency */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .team-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* No animations on mobile */
  .blob-1, .blob-2 {
    display: none;
  }
  
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .career-card:hover,
  .price-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  /* Typography adjustments */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Layout adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .gallery-placeholder {
    height: 200px;
  }
  
  .blog-image {
    height: 150px;
  }
  
  /* Form elements */
  .form-control {
    padding: 0.625rem 0.875rem;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 0.625rem 1.5rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Grid adjustments */
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Cards spacing */
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .price-card,
  .blog-card,
  .case-study-card,
  .career-card,
  .core-info-item {
    margin-bottom: 1.5rem;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .team-image,
  .gallery-placeholder,
  .blog-image {
    height: 180px;
  }
}

/* High DPI Displays */
@media (min-resolution: 2dppx) {
  /* Ensure crisp rendering on high DPI displays */
  .process-number,
  .core-info-icon {
    backface-visibility: hidden;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .hero-shapes,
  .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
    color: black;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .price-card,
  .blog-card,
  .case-study-card,
  .career-card,
  .core-info-item {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
} 

.hero-section h1 {
    padding-top: 125px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
