/* 
** Luxe Royale Casino & Hotel - Responsive Stylesheet
** Author: Bolt
** Version: 1.0
*/

/* Tablets and smaller desktops */
@media screen and (max-width: 1024px) {
  :root {
    --space-xxl: 48px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .main-heading {
    font-size: 3.5rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .about {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .about-image {
    width: 100%;
  }

  .casino-content {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .casino-image {
    width: 100%;
    min-height: 400px;
  }

  .hotel-card {
    flex: 0 0 85%;
  }
}

/* Mobile tablets */
@media screen and (max-width: 768px) {
  :root {
    --space-lg: 24px;
    --space-xl: 32px;
  }

  header {
    padding: var(--space-sm) var(--space-md);
  }

  #logo {
    height: 50px;
  }

  #main-nav ul {
    gap: var(--space-sm);
  }

  .nav-link {
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-xs);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .main-heading {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .hero-content {
    padding: var(--space-lg);
  }

  .cta-button {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .hotel-card {
    flex: 0 0 90%;
    min-height: 350px;
  }

  .casino-counters {
    flex-direction: column;
    gap: var(--space-md);
  }

  .count {
    font-size: 2.5rem;
  }

  .contact {
    flex-direction: column;
  }

  .contact-image {
    min-height: 300px;
    order: -1;
  }

  .image-overlay {
    background: linear-gradient(to bottom, transparent, var(--background-dark));
  }

  .footer-nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
  :root {
    --space-md: 16px;
    --space-lg: 24px;
  }

  section {
    padding: var(--space-xl) var(--space-md);
  }

  header {
    padding: var(--space-xs) var(--space-sm);
  }

  #logo {
    height: 40px;
  }

  #main-nav ul {
    gap: var(--space-xs);
  }

  .nav-link {
    font-size: 0.8rem;
    padding: var(--space-xs) 6px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
  }

  .hero-content {
    padding: var(--space-md);
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .about-content {
    padding: var(--space-md);
  }

  .about-content p {
    font-size: 1rem;
  }

  .hotel-card {
    flex: 0 0 100%;
    min-height: 300px;
  }

  .service-card {
    padding: var(--space-md);
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .contact-content {
    padding: var(--space-lg);
  }

  .legal-content {
    padding: var(--space-md);
    margin-top: 100px;
  }

  .legal-text h2 {
    font-size: 1.5rem;
  }
}