/* Responsive Styles */

/* Tablet Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .logbook-entry {
    transform: rotate(-1deg);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    width: 95%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--forest-green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: var(--spacing-md) 0;
  }
  
  .nav-links li a {
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: var(--spacing-md);
  }
  
  .disclaimer {
    flex-direction: column;
    text-align: center;
  }
  
  .compass-icon {
    margin-right: 0;
    margin-bottom: var(--spacing-xs);
  }
}

/* Height-based Adjustments */
@media screen and (max-height: 600px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
  }
}

/* Large Desktop Styles */
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
  
  .container {
    max-width: 1400px;
  }
}