/* --- Universal Styles --- */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
  background: url('../images/bg-hostel.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout Components --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Utility Classes --- */
.hide {
  display: none !important;
}

.show {
  display: block !important;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1200px) {
  .container, .hero-content, .booking-steps {
    max-width: 95%;
    padding: 0 1rem;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 0.5rem;
  }
}
  /* Ensure tour requests table is always visible on mobile */
  #tour-requests-section .table-wrapper,
  #tour-requests-section table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 0.25rem;
  }
} 