/* Responsive Styles for Handmade Vegan Leather Shoes Brand */

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 175px;
}
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
}

/* Small screens (mobile) */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE */
  .custom-card,
  .gallery-grid img,
  .form-control,
  .btn-primary,
  .footer a {
    transition: none !important;
  }
  
  .custom-card:hover,
  .gallery-grid img:hover {
    transform: none !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 20px 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Mobile-specific layouts */
  .hero-section .row {
    flex-direction: column-reverse;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .service-price {
    font-size: 1.2rem;
  }
  
  /* Stack cards vertically on mobile */
  .row .col-md-4,
  .row .col-md-6,
  .row .col-lg-4,
  .row .col-lg-6 {
    margin-bottom: 20px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 30px 0 15px;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 20px;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .custom-card {
    margin-bottom: 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .btn-primary {
    width: 100%;
    padding: 15px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-card {
    border: 2px solid var(--dark-color);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-color);
  }
  
  .form-control {
    border: 2px solid var(--dark-color);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    color: black !important;
  }
} 