/* ========================================
   MINIMALIST KITCHENWARE TEMPLATE - RESPONSIVE CSS
   ======================================== */

/* Mobile Optimizations */
@media (max-width: 768px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  /* Typography Adjustments */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .navbar-brand {
    font-size: 1.2rem !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }

  .hero-section::before {
    display: none;
  }

  /* Section Padding */
  .section-padding {
    padding: 3rem 0;
  }

  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .service-card img {
    width: 60px;
    height: 60px;
  }

  /* Team Photos Mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }

  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Price Cards Mobile */
  .price-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }

  .price-value {
    font-size: 2rem;
  }

  /* Process Number Mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Gallery Images Mobile */
  .gallery-image {
    height: 200px;
  }

  /* Footer Mobile */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }

  /* Feature Items Mobile */
  .feature-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  /* Review Cards Mobile */
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* FAQ Cards Mobile */
  .faq-card {
    padding: 1rem;
  }

  /* Additional Sections Mobile */
  .additional-section {
    padding: 3rem 0;
  }

  .additional-element {
    padding: 1rem;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 992px) {
  /* Hero Section Tablet */
  .hero-section {
    min-height: 90vh;
  }

  /* Section Padding Tablet */
  .section-padding {
    padding: 4rem 0;
  }

  /* Service Cards Tablet */
  .service-card {
    margin-bottom: 2rem;
  }

  /* Team Photos Tablet */
  .team-photo {
    width: 130px;
    height: 130px;
  }

  /* Gallery Images Tablet */
  .gallery-image {
    height: 220px;
  }
}

/* Large Desktop Adjustments */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }

  /* Hero Section Large */
  .hero-section {
    min-height: 100vh;
  }

  /* Typography Large */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* Section Padding Large */
  .section-padding {
    padding: 6rem 0;
  }

  /* Service Cards Large */
  .service-card {
    padding: 2.5rem;
  }

  .service-card img {
    width: 100px;
    height: 100px;
  }

  /* Gallery Images Large */
  .gallery-image {
    height: 300px;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .review-card,
  .faq-card,
  .price-card,
  .career-item,
  .blog-card,
  .additional-element {
    border-width: 2px;
  }

  .feature-item,
  .timeline-item,
  .core-info-item {
    border: 2px solid var(--primary-medium);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  #blog_grid {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}

  .section-padding {
    padding: 1rem 0;
  }

  .service-card,
  .review-card,
  .price-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Focus Management */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--charcoal);
  color: var(--primary-white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Ensure content doesn't break on small screens */
@media (max-width: 480px) {
  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Very small mobile adjustments */
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-section {
    min-height: 70vh;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .service-card,
  .contact-form,
  .price-card {
    padding: 1rem;
  }

  .team-photo {
    width: 100px;
    height: 100px;
  }

  .gallery-image {
    height: 180px;
  }
}


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