/* Media Queries for Industrial Steel Theme */

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

  .section header h2::before,
  .section header h2::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .site-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--steel-charcoal), var(--steel-gray));
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border: 3px solid var(--steel-orange);
    border-top: none;
    box-shadow: var(--shadow-heavy);
  }

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

  .site-nav a {
    border-right: none;
    border-bottom: 2px solid var(--steel-dark);
  }

  .mobile-menu-toggle {
    display: block;
    background: linear-gradient(135deg, var(--steel-orange), var(--steel-red));
    color: var(--steel-white);
    border: none;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: var(--shadow-industrial);
  }
}

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

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

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

  .section {
    padding: 4rem 0;
  }

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

  .casino-item {
    width: 100%;
    max-width: 400px;
  }

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

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

  .footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .text-content {
    padding: 2rem;
  }
}

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

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

  .site-name {
    font-size: 1.8rem;
  }

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

  .bonus-amount {
    font-size: 1.8rem;
  }
}
