:root {
  --background-color: #f9f6ec;
  --background-color-secondary: #a6a6a6;
}

/* header */
.headerContainer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 15.4rem;
  padding: 0 8rem;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 70%
  );
}

.navContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 10rem;
}

.navContainer .logoImage {
  height: 10rem;
}

.navContainer .navButton,
.navContainer .navLogo {
  flex: 1;
}

.navContainer .navLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
}

.navContainer .navLinks ul {
  display: flex;
  gap: 5rem;
  max-width: 80rem;
  list-style: none;
}

.navLinks a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 2.2rem;
  font-family: var(--font-noto);
  font-weight: 300 !important;
  transition: all 0.3s ease-in-out;
}

.navLinks a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.navLinks a:hover::before {
  width: 100%;
}

.navLinks a:hover {
  color: rgb(174, 174, 174);
}

.navButton {
  display: flex;
  align-items: center;
  justify-content: right;
}

.navButton button {
  min-width: 11rem;
  min-height: 6.5rem;
  color: white;
  font-size: 1.8rem;
  font-family: var(--font-noto);
  font-weight: 300 !important;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.navButton button:hover {
  background-color: white;
  color: black;
}

/*  Hero Image */

.heroImageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 15.4rem);
  overflow: hidden;
}

.heroImage {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.textHeroImage {
  font-size: 3.4rem;
  color: white;
  text-align: center;
  font-family: var(--font-noto);
  font-weight: 300 !important;
  margin-top: 9rem;
  text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.6);
}

.heroDate {
  font-family: var(--font-noto);
  font-weight: 100;
  font-size: 4.2rem;
}

.heroTitle {
  font-size: 10rem;
  font-weight: 300;
  margin-top: 1rem;
  text-transform: uppercase;
}

.heroSubTitle {
  font-size: 8rem;
  font-weight: 300 !important;
  font-family: var(--font-windSong);
  font-weight: 100;
}

/*  Section Description */

.descriptionContainer {
  display: flex;
  padding-top: 15rem;
  width: 100%;
  height: 100vh;
}

.imageDescritioncontainer {
  width: 35%;
}

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

.textDescriptionContainer {
  width: 65%;
}

.descritionButton {
  display: flex;
  align-items: center;
  justify-content: left;
}

.descritionButton button {
  min-width: 11rem;
  min-height: 6.5rem;
  padding: 1rem 4rem;
  color: rgb(100, 100, 100);
  font-size: 1.8rem;
  font-family: var(--font-noto);
  font-weight: 300 !important;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgb(100, 100, 100);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.descritionButton button:hover {
  background-color: rgb(100, 100, 100);
  color: white;
}

.textDescriptionContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 4rem 14rem 4rem 18rem;
}

.textDescriptionContainerNoPading {
  padding: 4rem 18rem 4rem 0;
}

.descriptionTitle,
.descriptionText {
  font-size: 6rem;
  color: black;
  font-family: var(--font-noto);
  font-weight: 100 !important;
}

.descriptionSubTitle {
  font-size: 7rem;
  color: black;
  font-family: var(--font-windSong);
  font-weight: 100;
  margin-top: 1rem;
}

.descritioncontent {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.descriptionText {
  font-size: 1.8rem;
  font-family: var(--font-lato);
  max-width: 90%;
}

/* Our Story schedule */

.ourScheduleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100vw;
  height: 100vh;
  padding: 16rem 20rem;
  margin-top: 15rem;
  background-color: var(--background-color-secondary);
}

.scheduleContainer {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.scheduleItem {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100%;
  gap: 2rem;
  font-weight: 100 !important;
  object-fit: cover;
}

.scheduleItem p,
.scheduleItem h1 {
  color: black;
  font-family: var(--font-noto);
  font-weight: 300 !important;
}

.os-title h1 {
  font-family: var(--font-noto);
  font-weight: 200;
  font-size: 6.6rem;
  margin-bottom: 4rem;
}

.os-hour {
  font-size: 3.6rem;
  font-family: var(--font-noto) !important;
  text-transform: uppercase;
}

.os-description {
  max-width: 80%;
  font-family: var(--font-lato) !important;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.2rem;
}

.scheduleItem img {
  height: 8.6rem;
}

.os-buttom button {
  margin-top: 4rem;
  min-width: 15rem !important;
}

/*  Last section home */

.lastSectionHome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  height: 110vh;
  padding: 10rem;
}

.lt-image {
  width: 45%;
  height: 100%;
}

.lt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt-Container {
  width: 45%;
  height: 100%;
  display: flex;
  gap: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.lt-Container h2,
.lt-Container p {
  font-size: 3.8rem;
  color: black;
  font-family: var(--font-noto);
  font-weight: 100 !important;
}

.lt-Container p {
  font-size: 1.8rem;
  max-width: 90%;
  font-family: var(--font-lato);
}

/* Countdown */
.countDonwContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100vw;
  height: 50vh;
  background-color: var(--background-color-secondary);
  text-align: center;
}

.countDonwContainer h1 {
  font-size: 8.2rem;
  color: black;
  font-family: var(--font-windSong);
  font-weight: 100;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-family: var(--font-noto);
  font-size: 7.2rem;
}

#countdown div {
  padding: 20px;
  border-radius: 10px;
  min-width: 80px;
}

#countdown small {
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
  font-family: var(--font-lato);
  font-weight: 300 !important;
  color: black;
  text-transform: uppercase;
}

/* Footer */

.footerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: black;
}

.footerContainer p {
  color: white;
  font-size: 1.6rem;
  font-family: var(--font-lato);
  font-weight: 300 !important;
  cursor: pointer;
}

.footerContainer a {
  color: white;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Remove setinha padrão do select, se usar select */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #000 !important;
  color: #fff;
  min-width: 180px !important;
  z-index: 1;
}

.dropdown-menu a {
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 1.2rem;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
