/* Responsive Styles for Vintage Ad Posters Store */

/* Mobile First - Base styles above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .feature-card {
    height: 100%;
  }
  
  .service-card {
    height: 100%;
  }
  
  .blog-card {
    height: 100%;
  }
  
  .price-card {
    height: 100%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 8rem 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0 1rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .hero-subtitle {
    font-size: 2.5rem;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper {
    --swiper-navigation-size: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  /* Fix reviews section on mobile */
  .reviews .swiper {
    overflow: hidden;
    padding: 1rem 0;
  }
  
  .reviews .swiper-slide {
    padding: 1rem;
  }
  
  /* Stack hero content vertically on mobile */
  .hero .row {
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  /* Reduce padding on mobile */
  .section {
    padding: 3rem 0;
  }
  
  /* Make cards stack properly */
  .service-card,
  .feature-card,
  .blog-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  /* Adjust team member layout */
  .team-member {
    margin-bottom: 3rem;
  }
  
  /* Improve contact form spacing */
  .contact .row {
    margin-bottom: 2rem;
  }
  
  /* Gallery adjustments */
  .gallery .col-md-4 {
    margin-bottom: 1rem;
  }
  
  /* FAQ accordion spacing */
  .accordion-item {
    margin-bottom: 1rem;
  }
  
  /* Footer adjustments */
  .footer .col-md-3 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Navbar adjustments */
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .navbar-toggler {
    border: none;
    color: var(--vintage-cream);
  }
  
  .navbar-collapse {
    background: rgba(139, 38, 53, 0.95);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  /* Hero adjustments */
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .service-card img,
  .blog-card img {
    height: 180px;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
  overflow-x: hidden !important;
    background: white !important;
    color: black !important;
  }
  
  .section {
    padding: 2rem 0 !important;
  }
  
  .hero {
    min-height: auto !important;
    background: white !important;
    color: black !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero::before {
    opacity: 0.1;
  }
  
  .form-control {
    background-color: white;
    color: black;
    border: 2px solid black;
  }
  
  .btn-primary {
    background: black;
    color: white;
    border: 2px solid black;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    min-height: 100vh;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card-body,
  .blog-card-body {
  overflow-x: hidden !important;
    padding: 1rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .contact .row > div {
    margin-bottom: 1rem;
  }
} 