/* Digital Collectibles Marketplace - Responsive CSS */
/* Mobile-First Responsive Design */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Typography adjustments for mobile */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  #hero .container {
    text-align: center;
  }
  
  /* Remove animations on mobile */
  .service-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .service-card,
  .gallery-item {
    transition: none;
  }
  
  /* Mobile padding adjustments */
  .section-padding,
  #services,
  #features,
  #team,
  #reviews,
  #priceplan,
  #contact,
  #faq,
  #gallery,
  #blog {
    padding: 3rem 0;
  }
  
  /* Cards mobile adjustments */
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .contact-form {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-card.featured {
    transform: none;
    margin-bottom: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog cards mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  /* Footer mobile */
  #footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Buttons mobile */
  .btn-primary,
  .btn-outline-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Hero adjustments */
  #hero {
    min-height: 90vh;
  }
  
  /* Remove hover animations on small devices */
  .service-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  /* Section padding */
  .section-padding,
  #services,
  #features,
  #team,
  #reviews,
  #priceplan,
  #contact,
  #faq,
  #gallery,
  #blog {
    padding: 4rem 0;
  }
  
  /* Price card adjustments */
  .price-card.featured {
    transform: none;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero section tablet */
  #hero {
    min-height: 95vh;
  }
  
  /* Feature icons tablet */
  .feature-icon {
    font-size: 2.5rem;
  }
  
  /* Team photos tablet */
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  /* Gallery tablet */
  .gallery-item img {
    height: 220px;
  }
  
  /* Blog cards tablet */
  .blog-card img {
    height: 180px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Full hover effects enabled for desktop */
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  /* Price card featured effect */
  .price-card.featured {
    transform: scale(1.05);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Container max-width adjustments */
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced spacing for large screens */
  .section-padding,
  #services,
  #features,
  #team,
  #reviews,
  #priceplan,
  #contact,
  #faq,
  #gallery,
  #blog {
    padding: 6rem 0;
  }
  
  /* Enhanced card padding */
  .service-card {
    padding: 2.5rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  /* Enhanced feature icons */
  .feature-icon {
    font-size: 3.5rem;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp rendering on high-DPI screens */
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .contact-form,
  .faq-card,
  .gallery-item,
  .blog-card {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print Styles */
@media print {
  /* Hide non-essential elements when printing */
  #header,
  #footer,
  .btn,
  .gallery-item:hover,
  .service-card:hover {
    display: none !important;
  }
  
  /* Optimize for print */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    overflow-x: hidden;
}
  
  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
} 

.hero-content {
    padding-top: 225px;
}