/* Digital Assets UI Kit Marketplace - Responsive Styles */

/* Mobile First Approach - Base styles are for mobile */

/* Small Mobile Devices */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-decorative {
    display: none; /* Hide decorative elements on small screens */
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* No scroll animations on mobile */
  .service-card {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .gallery-item img {
    transition: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Mobile Devices */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Reduced animations on mobile */
  .service-card:hover {
    transform: translateY(-2px);
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
  
  .hero-decorative:nth-child(2) {
    width: 120px;
    height: 120px;
  }
}

/* Large Tablets and Small Desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .hero-decorative {
    width: 180px;
    height: 180px;
  }
  
  .hero-decorative:nth-child(2) {
    width: 140px;
    height: 140px;
  }
}

/* Large Desktops */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .container-fluid {
    max-width: 1400px;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .section-padding {
    padding: 6rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

/* Print Styles */
@media print {
  .hero-decorative,
  .navbar,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
    color: black;
  }
  
  .service-card,
  .team-card,
  .faq-card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .faq-card {
    border: 2px solid var(--gray-800);
  }
  
  .btn-primary {
    border: 2px solid var(--gray-800);
  }
  
  .form-control {
    border: 2px solid var(--gray-800);
  }
}

/* Landscape Orientation on Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* Focus Styles for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .btn:focus,
  .form-control:focus,
  .nav-link:focus {
    transition: all 0.2s ease;
  }
}

/* Dark Mode Support (if needed) */

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