/* Responsive Styles for Renewable Energy Certificate Brokerage */

/* Mobile First Approach */
@media (max-width: 576px) {
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    padding: 4rem 0;
    text-align: center;
  }
  
  /* Remove decorative shapes on mobile */
  .decorative-shape {
    display: none;
  }
  
  /* Section spacing reduction */
  .section {
    padding: 3rem 0;
  }
  
  /* Service cards mobile */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Feature items mobile */
  .feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Team cards mobile */
  .team-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 2rem;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* NO animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .service-card:hover {
    transform: none !important;
  }
}

/* Tablet Portrait */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    padding: 5rem 0;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .price-card.featured {
    transform: scale(1.03);
  }
}

/* Desktop */
@media (min-width: 993px) {
  /* Full animations and effects for desktop */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    padding: 8rem 0;
  }
  
  .section {
    padding: 6rem 0;
  }
}

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

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp images on retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .decorative-shape {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  * {
    box-shadow: none !important;
    background: white !important;
    color: black !important;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark Mode Support (Optional) */

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* Focus Indicators for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
  }
} 

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