/* Responsive Styles for Art Leasing Template */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 275px;
}
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* Typography Adjustments */
  h1, .h1 {
    font-size: 1.75rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  h3, .h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Section Spacing */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-image::before {
    display: none;
  }
  
  /* Card Spacing */
  .service-card,
  .team-card,
  .review-card,
  .priceplan-card,
  .casestudy-card,
  .career-card {
    margin-bottom: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Team Images */
  .team-image {
    height: 250px;
  }
  
  /* Feature Icons */
  .feature-icon {
    font-size: 2.5rem;
  }
  
  /* Process Steps */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Container Padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Typography Further Reduced */
  h1, .h1 {
    font-size: 1.5rem;
  }
  
  h2, .h2 {
    font-size: 1.375rem;
  }
  
  /* Card Padding */
  .service-card .card-body,
  .contact-form,
  .career-card {
    padding: 1.25rem;
  }
  
  /* Price Display */
  .priceplan-price {
    font-size: 1.75rem;
  }
  
  .service-price {
    font-size: 1.125rem;
  }
  
  /* Timeline and Core Info */
  .timeline-item,
  .coreinfo-item {
    padding: 1rem;
  }
  
  /* FAQ Cards */
  .faq-card {
    padding: 1rem;
  }
}

/* NO ANIMATIONS ON MOBILE - Critical Requirement */
@media (max-width: 767.98px) {
  /* Disable all scroll animations on mobile */
  [data-sal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Disable hover effects on mobile */
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .priceplan-card:hover {
    transform: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  }
  
  .btn-primary:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  /* Remove all transitions on mobile */
  * {
    transition: none !important;
  }
}

/* Navbar Mobile - Keep Bootstrap 5 Standard */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-cream);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-section,
  .section-alt {
    background: white !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-sage: #146d04;
    --primary-navy: #000298;
    --primary-cream: #ffffff;
    --primary-terracotta: #954714;
    --primary-charcoal: #000000;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .contact-form {
    border: 2px solid var(--primary-charcoal) !important;
  }
} 