/* 
=========================================================
  AH - Premium Corporate Website Foundation
  Responsive Overrides
========================================================= 
*/

/* --- Mobile First Media Queries --- */

/* Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default in mobile-first */
:root {
  --spacing-section: 60px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  :root {
    --spacing-section: 80px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --spacing-section: 100px;
  }
  
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  :root {
    --spacing-section: 120px;
  }
  
  .navbar-premium .navbar-nav {
    gap: 1.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-custom {
    padding: 0 2rem;
  }
}

/* --- Specific Component Adjustments for Mobile --- */
@media (max-width: 991.98px) {
  .navbar-premium .navbar-collapse {
    background: var(--color-bg-main);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
  }
  
  .footer-premium {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
