/* 
 * Soluvina: Zenira - Japanese Luxury Casino Hotel
 * Responsive Styles
 */

/* ===== Mobile Navigation ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    flex-direction: column;
    background-color: var(--bamboo-beige);
    padding: 100px var(--space-4) var(--space-4);
    z-index: 1000;
    transition: right 0.3s ease;
  }
  
  .nav-menu.mobile-active {
    right: 0;
  }
  
  .nav-menu li {
    margin: var(--space-1) 0;
  }
  
  .nav-menu a {
    display: block;
    font-size: 1.2rem;
    padding: var(--space-1) 0;
  }

  .two-column {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .two-column.reverse {
    flex-direction: column;
  }
}

/* ===== Small Devices (Phones) ===== */
@media (max-width: 576px) {
  :root {
    --container-padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  section {
    padding: var(--space-6) 0;
  }
  
  .space-grid,
  .features-grid,
  .team-grid,
  .games-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: var(--space-3);
  }
  
  .footer-links {
    width: 100%;
  }
  
  .footer-section {
    width: calc(50% - var(--space-2));
    margin-bottom: var(--space-3);
  }

  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 100%;
    max-width: none;
  }

  .tabs-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    padding: var(--space-1) 0;
    text-align: center;
  }

  .tab-btn::after {
    bottom: 0;
  }
}

/* ===== Medium Devices (Tablets) ===== */
@media (min-width: 577px) and (max-width: 992px) {
  .hero-content h2 {
    font-size: 3rem;
  }

  .space-grid,
  .features-grid,
  .team-grid,
  .games-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-section {
    width: calc(50% - var(--space-2));
  }
}

/* ===== Large Devices (Desktops) ===== */
@media (min-width: 993px) {
  .hero-content {
    max-width: 900px;
  }
  
  .space-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid,
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Typography Responsive Adjustments ===== */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/* ===== Height-based Adjustments ===== */
@media (max-height: 600px) {
  .hero,
  .page-hero {
    height: auto;
    min-height: 400px;
  }

  .hero-content {
    padding: var(--space-6) var(--space-2);
  }
}

/* ===== Footer Responsive Adjustments ===== */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
  }
  
  .footer-section {
    width: 100%;
    margin-bottom: var(--space-3);
  }
}