/* 
  Most responsive behavior is built mobile-first into layout.css and components.css 
  using CSS Grid, Flexbox, and clamp(). This file contains any specific overrides. 
*/

@media (max-width: 768px) {
  /* Hero Overrides */
  .hero {
    text-align: center;
    padding-top: var(--space-xl);
  }

  .hero__actions {
    justify-content: center;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  /* Modal responsive */
  .modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  /* Header & Footer Edge-to-Edge on Mobile */
  .site-header {
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
  }

  .site-footer {
    width: 100% !important;
    margin: 40px 0 0 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
  }

  /* Sponsorluk Page MTKB Card */
  .mtkb-card {
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }
  
  .mtkb-card-content {
    gap: 1.5rem !important;
  }

  .mtkb-logos {
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }

  .mtkb-divider {
    width: 60px !important;
    height: 1px !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter form */
  .newsletter-form {
    flex-direction: column !important;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100% !important;
  }
}
