
/* #####################################
   Reset y estilos globales
##################################### */
html, body {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

body{
  background-color: #fff;
}


/*######################################
  BAR
  ##################################
*/

.NavBarButtons li {
  display: inline-block;
  margin-right: 3.5rem;
}

/* #####################################
   Hero Section
##################################### */
/* Asegurar que los contenedores de los banners tengan posición relativa */
.HeroSection,
.SecondSection {
  position: relative; /* crítico para que los hijos se centren */
}

/* Centrar contenido de los banners */
.HeroContent,
.SecondOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  padding: 1rem;
  z-index: 2;
}

.HeroSection {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.Banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.HeroContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
}

.Title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1rem 0;
}

.Slogan {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.BannerButton {
  font-family: "Libre Baskerville", serif, sans-serif;
  background: none;
  border: 2px solid white;
  padding: 0.6rem 1.5rem;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s ease;
}

.BannerButton:hover {
  transform: scale(1.05);
}

/* #####################################
   Second Section / Banners
##################################### */
.SecondBanner {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid #8E9B6A;
  border-top: 4px solid #8E9B6A;
}

.SecondOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.SecondSection {
  margin-top: 8vh;
  position: relative;
  text-align: center;
  padding: 0;
}

.SecondBarTitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Libre Baskerville", sans-serif;
  color: #8E9B6A;
  margin-top: 2rem;
}

.SecondBannerSubTitle {
  font-size: 1.3rem;
  font-family: "DM Sans", sans-serif;
  color: #8E9B6A;
  margin-top: 1rem;
}

.Stamps {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.Stamps img {
  width: 8rem;   
  max-width: 10rem; 
  height: auto;    
}

/* #####################################
   Main
##################################### */
main {
  display: flex;
  flex-direction: column;
}

/* #####################################
   Mobile adjustments
##################################### */
@media (max-width: 768px) {
  .Stamps img {
    width: clamp(2rem, 4rem, 4rem);
    height: auto;
  }
  .SecondBarTitle {
    font-size: clamp(0.8rem, 1.2rem, 1.4rem);
  }
}  