/* Mobile First Responsive Design - Classic Red Pinup */

/* Extra Small Devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .logo {
    font-size: 2rem;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav a {
    text-align: center;
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .casino-cards {
    flex-direction: column;
    align-items: center;
  }

  .casino-card {
    min-width: 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 20px;
    margin: 20px 0;
  }

  .pinup-decoration {
    display: none;
  }
}

/* Small Devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .nav {
    flex-direction: row;
    gap: 20px;
  }

  .casino-cards {
    justify-content: space-around;
  }

  .casino-card {
    min-width: 45%;
    max-width: 45%;
  }
}

/* Medium Devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .header-content {
    flex-direction: row;
  }

  .logo {
    font-size: 2.5rem;
  }

  .nav {
    gap: 25px;
  }

  .casino-card {
    min-width: 300px;
    max-width: 320px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Large Devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .nav {
    gap: 30px;
  }

  .casino-cards {
    justify-content: center;
  }

  .casino-card {
    min-width: 280px;
    max-width: 350px;
  }

  .content-section {
    padding: 30px;
  }
}

/* Extra Large Devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .logo {
    font-size: 3rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Height-based Media Queries */
@media only screen and (max-height: 600px) {
  .header {
    padding: 15px 0;
  }

  .main-content {
    padding: 20px 0;
  }

  .content-section {
    margin: 15px 0;
    padding: 20px;
  }
}

/* High DPI Displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .logo,
  .section-title {
    text-rendering: optimizeLegibility;
  }
}

/* Print Styles */
@media print {
  body::before,
  .header::before,
  .content-section::before,
  .footer::before,
  .floating-hearts,
  .pinup-decoration {
    display: none !important;
  }

  .header,
  .footer {
    background: white !important;
    color: black !important;
  }

  .casino-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
