/* ==========================================================================
   YARA MUR — RESPONSIVE DESIGN SYSTEM
   Media Queries & Layout Adaptation (Desktop-First Down to Mobile)
   ========================================================================== */

/* Large Desktop & Widescreen (1600px+) */
@media (min-width: 1600px) {
  .container {
    max-width: 1800px;
  }
}

/* Laptops & Small Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .container {
    padding: 0 3rem;
  }

  .hero-title {
    font-size: 5.5rem;
  }

  .spread-grid-asymmetric {
    gap: 3rem;
  }
}

/* Tablets Landscape & Small Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-showcase {
    max-height: 600px;
  }

  .spread-grid-asymmetric,
  .spread-grid-asymmetric.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .spread-grid-trio {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .motion-reel-container {
    grid-template-columns: 1fr;
  }

  .compcard-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Tablets Portrait & Large Mobile (768px - 991px) */
@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }

  .location-ticker {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: var(--z-header);
    transition: right 0.5s var(--ease-editorial);
    border-left: 1px solid var(--border-color);
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: calc(var(--z-header) + 1);
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .digitals-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (Under 768px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  section {
    padding: 5rem 0;
  }

  .hero-section {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spread-grid-trio {
    grid-template-columns: 1fr;
  }

  .lightbox-modal {
    padding: 1.5rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
