/* Importar fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@100;300;400;700&display=swap');

/* Configuración de las fuentes personalizadas */
@font-face {
  font-family: 'TT Drugs';
  src: url('/static/fonts/TTDrugs-Regular.woff2') format('woff2'),
       url('/static/fonts/TTDrugs-Regular.woff') format('woff'),
       url('/static/fonts/TTDrugs-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Estilos específicos para la página de inicio */
.home-header-text {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f6f1;
}

.home-header-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 6em;
  margin: 0;
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1.2em;
  position: relative;
  top: 0;
  left: 0;
}

.home-header-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3em;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.5px;
  position: relative;
  top: 0;
  left: 0;
}

.home-header-text .creator-font {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  color: #666;
  line-height: 1.8em;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 0;
}

.home-header-text .creator-font .line {
  margin: 0;
  line-height: 1.4em;
}

.home-header-text .creator-font .line.separator {
  margin: 10px 0;
}

/* Estilos específicos para cada imagen de fondo */
.homeintroimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/images_index/homeintroimage.jpg");
  background-size: cover;
  background-position: center;
}

.homeinquireimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: url("/static/images_index/homeinquireimage.JPG");
  background-size: cover;
  background-position: center;
}

.homeupcomingtravelimage {
  position: absolute;
  top: -99px;
  left: 53px;
  width: 73%;
  height: 88%;
  background-image: url("/static/images_index/homeupcomingtravelimage.JPG");
  background-size: cover;
  background-position: center;
}

.home-intro-image {
  position: relative;
  height: 70vh;
  margin-bottom: 50px;
}

/* Estilos específicos para los recuadros de texto */
.inquire-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 14px;
  position: absolute;
  z-index: 1;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 255px;
  height: 80px;
  max-width: 80%;
  max-height: 70%;
}

.upcoming-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 9px;
  position: absolute;
  z-index: 1;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 213px;
  height: 73px;
  max-width: 80%;
  max-height: 70%;
}

.home-navigation {
  text-align: center;
  padding: 50px 20px;
  background-color: #fef9f0;
}

.nav-item {
  margin-bottom: 20px;
  position: relative;
}

.nav-link {
  text-decoration: underline;
  color: #000;
  padding: 6px;
  display: block;
  text-align: center;
}

.nav-link:hover {
  text-decoration: none;
  color: #333;
}

.home-navigation h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1em;
  margin: 0;
  padding: 10px 0;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
}

.home-navigation p {
  font-family: 'Roboto', sans-serif;
  font-size: .71em;
  margin-top: -1px;
  margin-bottom: 10px;
  color: #bbb;
  position: relative;
  top: -15px;
  left: 0;
}

.home-inquire {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.inquire-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  color: #000;
  margin: 0;
  position: relative;
  top: -9px;
  left: 0;
}

.inquire-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  color: #000;
  margin: 0;
  position: relative;
  top: -4px;
  left: 0;
}

.home-upcoming-travel {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.upcoming-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  color: #000;
  margin: 0;
  position: relative;
  top: -1px;
  left: 0;
}

.upcoming-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  color: #000;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
}

.home-footer {
  text-align: center;
  padding: 50px 20px;
  background-color: transparent;
}

.contact-link {
  text-decoration: underline;
  color: #000;
  display: block;
  position: relative;
  top: -165px;
  padding: 15px 30px;
  display: inline-block;
}

.contact-link:hover {
  text-decoration: none;
  color: #333;
}

.home-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 10px;
  color: #000;
  position: relative;
  top: 5px;
  left: 0;
}


