/* Media Queries for Luxury Gold & Black Theme */

@media (max-width: 1200px) {
  .casino-item {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 992px) {
  .site-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--luxury-black);
    border: 2px solid var(--luxury-gold);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .site-nav.open ul {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-toggle {
    display: block;
    background: var(--luxury-gold);
    color: var(--luxury-black);
    border: none;
    padding: 0.8rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section.head {
    padding: 6rem 0;
  }

  .section.head h1 {
    font-size: 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section header h2 {
    font-size: 2.8rem;
  }

  .casino-item {
    width: 100%;
    max-width: 450px;
    min-width: auto;
  }

  .casino-logo {
    width: 100%;
    height: 100px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0;
  }

  .footer-links a {
    border-right: none;
    border-bottom: 1px solid var(--luxury-gold);
  }

  .footer-links li:last-child a {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .section.head h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .section header h2 {
    font-size: 2.2rem;
  }

  .text-content {
    padding: 2.5rem;
  }

  .casino-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  .site-name {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
