/* Responsive Styles */

@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
  
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .hero-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  .section {
    padding: var(--spacing-5) 0;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .hero-content h3 {
    font-size: 1.6rem;
  }
  
  .about-content,
  .vibes-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .about-text,
  .vibes-text {
    order: 1;
  }
  
  .about-image,
  .vibes-gallery {
    order: 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .offer-slide {
    width: 280px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  #header {
    padding: var(--spacing-1) 0;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-2) 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    margin: var(--spacing-1) 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu li a {
    display: block;
    padding: var(--spacing-1) 0;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content h3 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .casino-features {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: var(--spacing-2);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-3);
  }
  
  .footer-logo {
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-column {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info {
    justify-content: center;
  }
  
  .banner-content h1 {
    font-size: 2.2rem;
  }
  
  .info-cards,
  .guidelines,
  .resources-grid,
  .cookie-types,
  .cancellation-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 var(--spacing-2);
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content h3 {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-2);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .about-image::before,
  .about-image::after {
    display: none;
  }
  
  .offer-slide {
    width: 100%;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto var(--spacing-2);
  }
  
  .policy-section-item h2 {
    font-size: 1.3rem;
  }
  
  .policy-section-item h3 {
    font-size: 1.1rem;
  }
  
  .guideline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .guideline-number {
    margin-bottom: var(--spacing-1);
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: var(--spacing-1);
    font-size: 0.9rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.fade-in-down {
  animation: fadeInDown 1s ease;
}

.fade-in-up {
  animation: fadeInUp 1s ease;
}

/* ScrollReveal Animation Classes */
.sr-fade-in {
  visibility: hidden;
}

.sr-fade-in-down {
  visibility: hidden;
}

.sr-fade-in-up {
  visibility: hidden;
}

.sr-fade-in-left {
  visibility: hidden;
}

.sr-fade-in-right {
  visibility: hidden;
}

/* Utility Classes */
.scroll-lock {
  overflow: hidden;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.p-0 {
  padding: 0 !important;
}