/* ===== RESPONSIVE STYLES - SOY-CANDLE SUBSCRIPTION CLUB ===== */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-img:hover {
    transform: none;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .pricing-price {
    font-size: 1.5rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section {
    padding: 4.5rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Print Styles */
@media print {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .navbar, .footer {
    display: none;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #c0c0c0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-cream: #ffffff;
    --warm-sage: #386215;
    --soft-lavender: #451978;
    --gentle-peach: #fe5c16;
    --warm-terracotta: #9e0e1b;
  }
  
  .card {
    border: 2px solid #000;
  }
  
  .navbar {
    border-bottom: 3px solid #000;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section {
    padding: 2.5rem 0;
  }
}

/* Container adjustments for very small screens */
@media (max-width: 320px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}