/* Kids Adventure Maps - Responsive CSS */

/* Tablet and Small Desktop */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .service-card .card-body {
  overflow-x: hidden !important;
    padding: 1.25rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Mobile Large */
@media (max-width: 767.98px) {
  .hero-image {
    transform: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  #hero .text-white h1 {
    font-size: 1.75rem;
  }
  
  #hero .text-white p {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card .card-body {
  overflow-x: hidden !important;
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  /* Breadcrumb adjustments */
  .breadcrumb img {
    width: 30px;
    height: 30px;
  }
  
  /* Space page mobile */
  #space h1 {
    font-size: 1.75rem;
  }
  
  #space p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Mobile Medium */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  #hero .text-white h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  #hero .text-white p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.375rem;
  }
  
  .feature-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .feature-item i {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card img {
    height: 150px;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-item i {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .form-control {
    padding: 0.625rem;
    font-size: 0.95rem;
  }
  
  .btn-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-section h5 {
    font-size: 1rem;
  }
  
  /* Breadcrumb mobile */
  .breadcrumb-container {
    padding: 0.5rem 0;
  }
  
  .breadcrumb img {
    width: 25px;
    height: 25px;
    margin: 0 0.25rem;
  }
  
  /* Space page small mobile */
  #space {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  #space h1 {
    font-size: 1.5rem;
  }
  
  #space p {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
}

/* Mobile Small */
@media (max-width: 374.98px) {
  html {
    font-size: 13px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  #hero .text-white h1 {
    font-size: 1.375rem;
  }
  
  .section-title h2 {
    font-size: 1.25rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .service-card img {
    height: 120px;
  }
  
  .contact-form,
  .contact-info {
    padding: 0.75rem;
  }
  
  #space h1 {
    font-size: 1.25rem;
  }
  
  #space p {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

/* Landscape Mobile Phones */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
  }
  
  #hero .text-white h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  #hero .text-white p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  #space {
    min-height: 100vh;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image,
  .service-card img,
  .breadcrumb img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Media Query (even though we exclude dark mode styles) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme regardless of user preference */
  body {
  overflow-x: hidden !important;
    background-color: var(--white);
    color: var(--text-dark);
  }
}

/* Print Styles */
@media print {
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar,
  .breadcrumb-container,
  footer,
  .btn-submit {
    display: none !important;
  }
  
  body {
  overflow-x: hidden !important;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .feature-item {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    display: none;
  }
  
  .contact-info {
    padding: 0;
  }
}
