html, body {
  margin: 0;
  padding: 0;
}

#nav {
  display: flex;
  justify-content: space-between;
  margin: 0;
  min-height: 80px;
  background-color: white;
  align-items: center;
  z-index: 99999;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

#logo {
  text-decoration: none;
  color: black;
  margin: 0 30px;
  font-size: 1.7em;
}


#nav-items { 
  list-style: none;
}

#nav-items li {
  display: inline;
  margin: 0 20px;
  font-size: 1.4em;
  text-decoration: none;
}

#nav-items li a {
  text-decoration: none;
  color: #111;
}

#nav-items li a:hover{
  color: #517e66;
  cursor: pointer;
}


.appt-btn {
  height: 2em;
  width: 10em;
  border-radius: 20px;
  font-size: 0.9em;
  background-color: #345141;
  color: white;
  border: 0;
}

.appt-btn:hover {
  background-color: #517e66;
  cursor: pointer;
  scale: 1.05;
}

.toggle-btn {
  cursor: pointer;
  display: none;
  margin-right: 20px;
}

/*DROPDWON MENU*/
.dropdown-menu {
  position: absolute;
  right: 2rem;
  top: 100px;
  height: 0px;
  width: 300px;
  background: rgba(255, 255, 255, 0.466);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: none;
}

.dropdown-menu.open {
  height: 225px;
}

.dropdown-menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu li a{
  text-decoration: none;
  color: #111;
}

.dropdown-menu li a:hover{
  color: #517e66;
}

#appt-dropdown-btn {
  height: 2em;
  width: 10em;
  border-radius: 20px;
  font-size: 0.9em;
  background-color: #345141;
  color: white;
  border: 0;
}

/*RESPONSIVE DESIGN*/
@media (max-width: 1225px) {
  #nav-items,
   #appt-btn {
    display: none;
   }

   .toggle-btn {
    display: block;
   }

   .dropdown-menu {
    display: block;
   }
}

#landing-container {
  position: relative;
  text-align: center;
}

#landing-container img {
  max-width: 100%;
  height: auto;
}

#second-container {
  position: relative;
  text-align: center;
  margin-top: -5px;
  margin-bottom: -20px;
}

#second-container img {
  max-width: 100%;
  height: auto;
}

h1 {
  position: absolute;
  top: 40%;
  left: 8%;
  color: white;
  font-size: 2.5vw;
}

#landing-container p {
  position: absolute;
  top: 50%;
  left: 6%;
  color: white;
  font-size: 1.7vw;

}


p1 {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 40%;
  color: white;
  font-size: 1.7vw;
}

p2 {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 40%;
  color: white;
  font-size: 1.7vw;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99.5%;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Text color */
}

#third-container {
  position: relative;
  text-align: center;
  margin-top: -35px;
  height: 100%;
  width: 100%;
  margin-bottom: -35px;
}

#third-container img {
  max-width: 100%;
  height: auto;
}

h2 {
  position: absolute;
  top: 15%;
  left: 20%;
  font-size: 2.5vw;
}

#third-container p {
  position: absolute;
  top: 25%;
  left: 20%;
  font-size: 1.5vw;
}


#appt-btn-large {
  position: absolute;
  top: 45%;
  left: 26%;
  height: 7%;
  width: 18%;
  border-radius: 20px;
  background-color: #345141;
  color: white;
  border: 0;
  font-size: 1.2vw;
}

#appt-btn-large:hover {
  background-color: #517e66;
  scale: 1.05;
  cursor: pointer;
}

#fourth-container {
  position: relative;
  text-align: center;
  background-color: whitesmoke;
  height: 600px;
  width: 100%;
  padding-bottom: 100px;
}

h5 {
  font-size: 2.5vw;
  margin: 30px;
  padding-top: 60px;
  text-decoration: underline;
  text-underline-offset: 25px;
  text-decoration-color: #517e66;
}


#register-btn {
  margin: 30px auto;
  font-size: 1.2vw;
  height: 2em;
  width: 12em;
}


#booking {
  padding: 50px;
}

#booking-title {
  font-size: 40px;
}

#booking-container {
  padding-top: 50px;
  text-align: center;
}

#about-container {
  position: relative;
  text-align: center;
}

#about-container img {
  max-width: 100%;
  height: 10%;
}

#about-container h3 {
  position: absolute;
  top: 40%;
  left: 43%;
  color: black;
  font-size: 2.8vw;
}

.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 90px 70px;
  text-align: left;
}

.column h4 {
  font-size: 2.2vw;
  font-weight: 700;
  margin-top: -10px;
}

.column p {
  font-size: 1.3vw;
  line-height: 35px;
}

#fourth-container .column h4{
  margin-bottom: -15px;

}

#event-list li {
  font-size: 1.2vw;
}


footer{
  background-color: #345141;
}
.footerContainer{
  width: 100%;
  padding-top: 70px;
}
.socialIcons{
  display: flex;
  justify-content: center;
}
.socialIcons a{
  text-decoration: none;
  padding:  10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}
.socialIcons a i{
  font-size: 2em;
  color: black;
  opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}
.footerNav{
  margin: 30px 0;


}
.footerNav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding-right: 35px;
}
.footerNav ul li a{
  color:white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;

}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: #345141;
  padding: 20px;
  text-align: center;
}
.footerBottom p{
  color: white;
}

.footerBottom ul {
  display: inline-block;
}

#privacy {
  text-decoration: none;
  color: white;
}

.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media (max-width: 700px){
  .footerNav ul{
      flex-direction: column;
  } 
  .footerNav ul li{
      width:100%;
      text-align: center;
      margin: 10px;
  }
  .socialIcons a{
      padding: 8px;
      margin: 4px;
  }
}

/*animation*/
.fade-in-texts {
  opacity: 0;
  transform: translateX(100px);
  transition: 3s;
}

.fade-in-texts.show {
  opacity: 1;
  transform: translateX(0);
}


/*fonts*/
.inter-nav {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
}

.inter-button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
}

.koh-santepheap-regular {
  font-family: "Koh Santepheap", serif;
  font-weight: 350;
  font-style: normal;
}