/* ===========================
   RESPONSIVE DESIGN
   Mobile First Approach
   =========================== */

/* Base Mobile Styles (up to 576px) */
@media (max-width: 575.98px) {
  :root {
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
    --font-size-xl: 1.125rem;
    --section-padding: 2rem 0;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 1rem;
    line-height: 1.5;
  }
  
  .faq-checkbox:checked ~ .faq-answer {
    max-height: 250px;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-decorative-shape {
    display: none;
  }
}

/* Tablet Styles (576px to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
  }
}

/* Small Desktop (768px to 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Large Desktop (992px and up) */
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Extra Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-coral: #f60004;
    --primary-mint: #16e5b4;
    --primary-lavender: #9000db;
    --primary-peach: #ffb400;
    --primary-sky: #0082c4;
    --medium-gray: #1f1f1f;
    --light-gray: #d4c2c3;
  }
  
  .service-card,
  .team-member,
  .testimonial-card,
  .faq-card {
    border: 2px solid var(--dark-gray);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .team-member,
  .gallery-item,
  .blog-post,
  .price-card {
    transition: none;
  }
  
  .service-card:hover,
  .team-member:hover,
  .gallery-item:hover,
  .blog-post:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Dark Mode (optional - commented out as per requirements) */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --white: #010101;
    --light-gray: #212121;
    --dark-gray: #ffffff;
    --black: #ffffff;
  }
}
*/ 