/* Media Queries for Sunset Warm Theme */

@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section.head::before {
    width: 35%;
  }
}

@media (max-width: 992px) {
  .site-nav a {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .section.head h1 {
    font-size: 3rem;
  }
  
  .section.head::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem 0;
  }

  .site-logo a {
    font-size: 1.75rem;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .site-nav li::after {
    display: none;
  }
  
  .site-nav a {
    padding: 0.4rem 0.6rem;
  }

  .section.head {
    padding: 4rem 0;
    text-align: center;
  }

  .section.head h1 {
    font-size: 2.25rem;
    max-width: 100%;
  }

  .section.head p {
    font-size: 1rem;
    max-width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section header h2 {
    font-size: 2rem;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    padding: 3rem 0 2rem;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-links ul {
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .section.head h1 {
    font-size: 1.85rem;
  }

  .section header h2 {
    font-size: 1.65rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}
