/* Responsive Styles */

/* Large Desktop */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

/* Desktop and Tablet */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  /* Header */
  .nav-links {
    display: none;
  }
  
  .search-container {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Hero Section */
  #hero {
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-content {
    padding: calc(var(--spacing-xxl) * 2) var(--spacing-lg) var(--spacing-xl);
  }
  
  .hero-image {
    min-height: 50vh;
    clip-path: none;
  }
  
  /* About Section */
  #about .container {
    flex-direction: column;
  }
  
  .about-images {
    flex-direction: row;
    margin-top: var(--spacing-lg);
  }
  
  /* Games Grid */
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Casino Games Slider */
  .slide {
    flex-direction: column;
  }
  
  .slide-content, .slide-image {
    width: 100%;
  }
  
  .slide-image {
    min-height: 300px;
  }
  
  /* Disclaimer Section */
  #disclaimer .container {
    flex-direction: column-reverse;
  }
  
  .disclaimer-image {
    margin-bottom: var(--spacing-lg);
    min-height: 300px;
  }
  
  /* Footer */
  .footer-top {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: var(--spacing-lg);
    max-width: 100%;
  }
  
  .footer-links {
    gap: var(--spacing-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  /* About Images */
  .about-images {
    flex-direction: column;
  }
  
  /* Games Grid */
  .games-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .game-image img {
    height: 200px;
  }
  
  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  #hero {
    text-align: center;
  }
  
  .hero-content {
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md) var(--spacing-lg);
    align-items: center;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-image {
    min-height: 40vh;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-content h2 {
    text-align: center;
  }
  
  /* Slider */
  .slide-content {
    padding: var(--spacing-md);
    text-align: center;
  }
  
  /* Disclaimer */
  .disclaimer-content {
    text-align: center;
  }
  
  .disclaimer-content h2 {
    text-align: center;
  }
}