/* Responsive CSS for Curated Online Antiques Auctions Template */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 2rem;
    padding-top: 275px;
}
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .decorative-shape {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    padding: 40px 0;
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: var(--font-size-h2);
    padding-top: 275px;
}
  
  .section-title {
    font-size: var(--font-size-h3);
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .services-item,
  .custom-card,
  .price-plan-item {
    margin-bottom: 1.5rem;
  }
  
  .decorative-shape {
    display: none;
  }
  
  .process-item {
    padding-left: 2.5rem;
  }
  
  .process-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 30px 0;
    min-height: 70vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .hero-title {
    font-size: var(--font-size-h3);
    margin-bottom: 0.75rem;
    padding-top: 275px;
}
  
  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: var(--font-size-small);
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: var(--font-size-h4);
  }
  
  .section-subtitle {
    font-size: var(--font-size-base);
  }
  
  .section-desc {
    font-size: var(--font-size-small);
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .team-name {
    font-size: var(--font-size-base);
  }
  
  .team-role {
    font-size: var(--font-size-small);
  }
  
  .services-item,
  .custom-card,
  .price-plan-item,
  .faq-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .card-title,
  .price-plan-name {
    font-size: var(--font-size-lg);
  }
  
  .card-text,
  .faq-answer {
    font-size: var(--font-size-small);
  }
  
  .faq-question {
    font-size: var(--font-size-base);
  }
  
  .services-price,
  .price-plan-price {
    font-size: var(--font-size-lg);
  }
  
  .decorative-shape {
    display: none;
  }
  
  .process-item {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .process-number {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.7rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-item img {
    height: 150px;
  }
  
  .blog-title {
    font-size: var(--font-size-base);
  }
  
  .blog-excerpt {
    font-size: var(--font-size-small);
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg) !important;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  /* No animations on mobile per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .custom-card:hover,
  .services-item:hover,
  .price-plan-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Navbar collapse adjustments for mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--warm-cream-light);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--antique-gold-light);
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .decorative-shape {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section,
  .section-padding {
    padding: 20px 0;
  }
  
  .custom-card,
  .services-item,
  .price-plan-item,
  .faq-item {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  .gallery-item {
    break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-card,
  .services-item,
  .price-plan-item,
  .faq-item,
  .contact-form {
    border-width: 2px;
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
    padding: 20px 0;
  }
  
  .navbar {
    padding: 0.25rem 1rem;
  }
  
  .navbar-brand {
    font-size: var(--font-size-base) !important;
  }
} 
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
