/* Responsive Styles for VOGUE AUCTIONS */

/* Large screens - Minor adjustments */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .service-items,
  .price-items {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-items {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
}

/* Medium screens - Tablets */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .container {
    max-width: 720px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .service-items,
  .price-items,
  .core-info-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-items {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Small screens - Mobile Landscape */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 540px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .service-items,
  .price-items,
  .team-items,
  .core-info-items {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    box-shadow: 10px 10px 0 var(--primary-color);
  }
}

/* Extra small screens - Mobile Portrait */
@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .review-item {
    padding: 30px 20px;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .header {
    padding: 10px 0;
  }
  
  .header.scrolled {
    padding: 8px 0;
  }
  
  .nav-menu {
    padding: 20px 0;
  }
}

/* Additional responsive styles for the hero-static section */
@media (max-width: 767.98px) {
    .hero-static {
        height: auto;
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-static .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-static .hero-content p {
        font-size: 1rem;
    }
    
    .hero-static .hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-static .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-static .hero-content .subtitle {
        font-size: 0.875rem;
    }
}
