/* Responsive Styles for Zero-Waste Party Supplies */

/* Mobile First - Base Styles */
@media (max-width: 576px) {
  :root {
    --font-size-h1: 1.8rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.2rem;
    --font-size-navbar-brand: 1rem;
    --section-padding: 2.5rem 0;
  }
  
  /* No animations as requested */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .custom-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card,
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .decorative-blob {
    display: none;
  }
  
  .py-section {
    padding: 2.5rem 0;
  }
}

/* Small devices */
@media (min-width: 576px) and (max-width: 768px) {
  :root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.6rem;
    --section-padding: 3rem 0;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
  
  .decorative-blob {
    opacity: 0.05;
  }
}

/* Medium devices */
@media (min-width: 768px) and (max-width: 992px) {
  .price-card.featured {
    transform: scale(1.03);
  }
  
  .hero-content h1 {
    font-size: 2.1rem;
  }
}

/* Large devices */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: var(--font-size-h1);
  }
  
  /* Hover effects disabled as requested */
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover {
    transform: none;
  }
}

/* Extra large devices */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 225px;
}
}

/* Print styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .decorative-blob {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
    overflow-x: hidden;
}
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #2d5a2d;
    --primary-green-dark: #1a3d1a;
    --earth-brown-dark: #2d2d2d;
    --secondary-cream: #ffffff;
    --secondary-cream-light: #f8f8f8;
  }
  
  .custom-card {
    border: 2px solid var(--earth-brown-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-green-dark);
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Ensure proper spacing on different screen sizes */
@media (max-width: 768px) {
  .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }
  
  .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
} 