/* Responsive Styles for Handmade Basket Subscription */

/* Tablet Styles */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE - Critical Rule */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Navbar Brand - Conservative Size */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Section Padding */
  section {
    padding: 2.5rem 0;
  }
  
  /* Hero Section Mobile */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Cards Mobile Adjustments */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 2rem;
    transform: none !important;
  }
  
  /* Remove Hover Effects on Mobile */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .blog-card:hover {
    transform: none !important;
  }
  
  /* Team Photos Mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process Steps Mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem;
  }
  
  /* Gallery Mobile */
  .gallery-image {
    height: 200px;
  }
  
  /* Price Values Mobile */
  .price-value {
    font-size: 2.5rem;
  }
  
  .service-price {
    font-size: 1.75rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Even More Conservative Typography */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Compact Sections */
  section {
    padding: 2rem 0;
  }
  
  /* Compact Cards */
  .feature-card,
  .service-card,
  .price-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  /* Smaller Team Photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Compact Process Numbers */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Compact Gallery */
  .gallery-image {
    height: 180px;
  }
  
  /* Smaller Price Values */
  .price-value {
    font-size: 2rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .hero-decorative {
    display: none;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
} 

body {
    overflow-x: hidden;
}