/* Responsive Styles - Ocean Plastic Eyewear Brand */

/* Mobile First Approach */
@media (max-width: 576px) {
  /* Typography Adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section Spacing */
  .section {
    padding: 3rem 0;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  /* Card Adjustments */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    margin-bottom: 1.5rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem 1rem;
  }
  
  /* Price Cards */
  .price-card.featured {
    transform: none;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Navigation */
  .navbar-collapse {
    text-align: center;
  }
  
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .nav-link {
    padding: 0.75rem 0;
  }
}

/* Small Tablets */
@media (min-width: 577px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Medium Tablets */
@media (min-width: 769px) and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-section {
    min-height: 90vh;
  }
}

/* Large Tablets and Small Desktops */
@media (min-width: 993px) and (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktops */
@media (min-width: 1201px) {
  .container {
    max-width: var(--content-max-width);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-section {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --ocean-blue: #050084;
    --sea-green: #005b04;
    --coral-pink: #870a0a;
    --deep-teal: #000000;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    border: 2px solid #000;
  }
}

/* Focus Visible for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .btn:focus-visible,
  .form-control:focus-visible,
  .nav-link:focus-visible {
    outline: 3px solid var(--coral-pink);
    outline-offset: 2px;
  }
}

/* Dark Mode Support */

.hero-content {
    padding-top: 150px;
}