/* =============================================
   ESTILOS GLOBALES Y HEADER - CSS SIN TAILWIND
   ============================================= */

/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos del body */
body {
  background-color: #FAFAFA;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
}

/* =============================================
   HEADER PRINCIPAL
   ============================================= */

.site-header {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Overlay del header */
.site-header-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Contenido central del header */
.site-header-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .site-header-content {
    margin-top: 0;
  }
}

/* Etiqueta superior */
.site-header-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

/* Título principal */
.site-header-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .site-header-title {
    font-size: 3.75rem;
  }
}

/* Texto solo para lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Contenedor del banner de reservas */
.site-header-banner {
  width: 100%;
  position: relative;
  z-index: 10;
}

/* =============================================
   MAIN CONTENT
   ============================================= */

.site-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  flex-grow: 1;
  width: 100%;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Asegurar que el contenido principal ocupe el espacio disponible */
#main-content {
  flex: 1;
}