@charset "utf-8";

/* HEADER: solo logo (sin navegación) — adaptado de modules/neobookings.css */
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#header .logo {
  width: 260px;
}

#header .logo img {
  width: 100%;
  height: auto;
  filter: brightness(1000) grayscale(1) invert(0);
}

/* CLAIM (#caption) — adaptado de modules/neobookings.css */
#caption {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  overflow: hidden;
  inset: 0;
}

#caption .title {
  display: block;
  margin: 0;
  font-family: var(--font-title-family);
  /* Cormorant Garamond no tiene weight 900; 700 es el más cercano disponible. */
  font-weight: 500;
  font-size: var(--fs-display);
  color: var(--color-white);
  line-height: 1.2;
}

#caption .subtitle {
  display: block;
  margin: 20px 0 0 0;
  font-family: var(--font-title-family);
  font-size: var(--fs-heading-1);
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 767px) {
  #header {
    padding: 15px 20px;
  }
  #header .logo {
    width: 200px;
  }
  #caption {
    padding: 0 20px;
  }
}
