/* Responsive Styles for Digital Assets UI Kit Marketplace */

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 250px;
}
  
  .section {
    padding: 6rem 0;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2.37rem;
  }
  
  h2 {
    font-size: 1.87rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-featured {
    transform: none;
  }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 10px !important;
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.97rem;
  }
  
  h2 {
    font-size: 1.65rem;
  }
  
  h3 {
    font-size: 1.28rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .career-card {
    margin-bottom: 1.72rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
  }
  
  .btn-primary-custom {
    padding: 0.625rem 1.5rem;
    font-size: 0.91rem;
  }
  
  .price-value {
    font-size: 2.54rem;
  }
  
  .process-step,
  .feature-item {
    padding: 1.5rem 0.5rem;
  }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.77rem;
  }
  
  h2 {
    font-size: 1.42rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .service-card,
  .price-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .btn-primary-custom {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .feature-icon,
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .blog-image {
    height: 150px;
  }
}

/* Navigation Responsive Behavior */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--neutral-white);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav .nav-link {
    font-size: 10px !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #cac9c9;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon,
  .feature-icon,
  .process-number,
  .coreinfo-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Phone Orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 2rem 0;
  }
} 