/* Set background color and animation for the entire body */
body {
  background-color: rgba(252, 250, 235); /* Background color */
  margin: 0;
  padding: 0;
  animation: fadeInAnimation ease 3s; /* Fade-in animation */
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* Front Page styling */
.front-cover, .frontcover-retreats {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.front-cover {
  background: url(/Images/bkimg01.webp); /* Background image */
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

/* Responsive background image for smaller screens */
@media (max-width: 745px) {
  .front-cover {
    background-image: url(/Images/bkimg02.webp);
    background-repeat: no-repeat;
    background-position: center;
  }
}

/* Styling for the title box */
.title-box {
  height: auto;
  padding: 30px;
  margin-bottom: 50px;
  width: 75%;
  border-top: 1px solid rgba(94, 94, 94, 0.2);
  border-bottom: 1px solid rgba(94, 94, 94, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for the title text */
.title-text, .title-text-retreats {
  text-overflow: nowrap;
  font-size: 2rem;
  font-weight: 100;
  color: rgba(94, 94, 94, 0.9);
  font-family: 'Playfair Display', serif;
  letter-spacing: 8px;

}

.title-text {
  animation: fadeInAnimation ease 5s;/* Fade-in animation */
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* Responsive styling for smaller screens */
@media (max-width: 700px) {
  .title-text {
    top: 25%;
    font-size: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}


/* Fixed position and styling for the logo */
.logo {
  position: fixed;
  z-index: 700;
  width: 50px;
  height: auto;
  margin: 5px 0 0 10px;
}

/* Responsive styling for smaller screens */
@media (max-width: 700px) {
  .logo-cont img {
    width: 40px;
    margin: 10px 0 0 10px;
  }
}

/* Styling for the down button */
.main-butt {
  width: 110px;
  height: 45px;
  background-color: rgba(183, 137, 112, 0.8);
  border-radius: 1px;
  text-align: center;
  color: rgba(252, 250, 235, 1);
  font-size: 15px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  margin-top: 20vh;
  transition-duration: 0.4s;

}

/* Styling for button drop-down content */
.button-drop-content a {
  text-align: center;
  color: inherit;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  padding-bottom: 2px;  
}

/* Responsive styling for smaller screens */
@media (max-width: 450px) {
  .button-drop-content a {
    font-size: 14px;
  }
}

/* Styling for button drop-down content on hover */
.button-drop-content:hover {
  background-color: rgba(94, 94, 94, 0.9);
  color: rgba(243, 211, 189);
  border: none;


}

/* Animation keyframes for fade-in effect */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
