/* Universal styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/*List of reusable variables for changing colors and other elements easily */
:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #B2BEB5;
  --primary-color: #27a00e;
  --white: white;
  --main-green: rgb(0, 117, 27);
  --border: 1px solid var(--dark-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
  rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


body,
header,
footer,
p,
h1,
h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
}

header {

    z-index: 5;

}

body {
  /*Sets the background gradient for the whole body*/
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgb(0, 117, 27) 35%,
    rgb(225, 228, 190) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#000000",
      endColorstr="#94bbe9",
      GradientType=1
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p {
  text-align: center;
  padding: 2px 10px;
}

.banner {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  color: rgb(0, 117, 27);
  text-align: center;
  width: 100%;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 800;
}





/* Navbar styles */

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.logo {
  margin-right: 1.5rem;
}

/* #nav-menu {
  border-bottom: var(--border);
} */

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  height: 90px;
  padding: 1.2rem 3rem;
}

.menu {
  position: relative;
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 100px;
}



/* .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
} */

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container {
  display: flex;
  align-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 2px;
  background-color: var(--main-green);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--white);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  position: relative;
}



#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 1100px) {
  #hamburger {
    display: block;
  }

  .container {
    padding: 1.2rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
  }
/*
  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  } */

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
    background-color: var(--main-green);
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}

@media (max-width: 600px) {
  .right-container {
    display: none;
  }
}

/* Main content styles */


.main-container {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 5em 5em;

}

.main-container p {
  align-self: center;
  margin: 3em 2em;
}

.pageTitle {
  text-align: center;
  margin: 5em 5em;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.gallery img {
  display: inline;
  /* position: relative; */
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 1px 2px;
  border-radius: 50px;
  margin: 15px 10px;
  vertical-align: middle;

}
/* Media queries adjust how content is displayed on smaller or larger screens */
@media only screen and (max-width: 600px) {
  .gallery img {
    width: 100%;
    height: auto;
    margin: auto;
  }
  .main-container {
    width: 50%;
    height: 50%;
    flex-direction: column;
  }
}

.room-features {
  margin: 15em 10em;
}

.room-features h2 {
  padding-top: 55px;
  text-align: center;
  color: #a3ceff;
}
.room-features ul {
  display: block;
}
.room-features li {
  text-align: center;
  list-style-type: none;
  color: #a3ceff;
}

/* footer styles*/

footer {
  margin-top: auto;
  text-align: center;
  background-color: hsl(210, 10.42%, 18.82%);
  color: #a3ceff;
}
