/* ========================================
   CRAFT POTTERY MARKETPLACE - RESPONSIVE
   ======================================== */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* NO ANIMATIONS ON MOBILE */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  /* Card adjustments for mobile */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-step,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .feature-icon,
  .info-icon {
    font-size: 2rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .contact-icon {
    font-size: 1.25rem;
  }
  
  .gallery-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .blog-image {
    height: 180px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  /* Timeline adjustments */
  .timeline-item::before {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-step,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.25rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

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

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

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  * {
    color: black !important;
    background: white !important;
    box-shadow: none !important;
  }
} 

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