/* Responsive CSS for AI Price Monitoring Template */

/* Tablet Styles */
@media (max-width: 991.98px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section .col-lg-6:first-child {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  :root {
    --section-padding: 2rem 0;
  }
  
  /* Typography */
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  /* NO ANIMATIONS ON MOBILE */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .card:hover,
  .gallery-item:hover img,
  .btn-primary:hover,
  .social-link:hover,
  .team-social-links a:hover {
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Navigation */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    color: var(--dark-blue) !important;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--primary-blue);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Cards */
  .card {
    margin-bottom: 1.5rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .faq-card,
  .case-study-card,
  .career-card,
  .core-info-card,
  .blog-card {
    margin-bottom: 1rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .form-control {
    margin-bottom: 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Gallery */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Price Cards */
  .price-card .price {
    font-size: 2rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
  
  /* Spacing Adjustments */
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .col,
  [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 60vh;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .contact-form {
    padding: 0.75rem;
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .price-card .price {
    font-size: 1.75rem;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
}

/* High DPI 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-content {
    padding-top: 100px;
}