/*
 * FILE NAME: responsive.css
 * PURPOSE: Manage responsive styles for the Bento Grid Android OS theme. Handles burger layout activations and media adjustments.
 * LAST UPDATED: 2026-06-21
 * VERSION: 2.0.0
 */


@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1150px) {
  .section-padding {
    padding: 80px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  /* Burger Menu */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .burger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: var(--border-radius-pill);
    transition: var(--transition-android);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid rgba(143, 173, 130, 0.1);
    flex-direction: column;
    padding: 120px 40px;
    align-items: flex-start;
    gap: 30px;
    transition: var(--transition-android);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  /* Bento Grid Card Padding reductions */
  .bento-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  
  .bento-arrow-link {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-legal-links {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-logo img,
  .nav-logo svg {
    height: 48px !important;
  }
  
  .nav-menu {
    width: 100%;
  }
  
  .floating-actions {
    bottom: 30px;
    right: 30px;
  }
  
  .floating-btn {
    width: 56px;
    height: 56px;
  }
}
