@font-face {
  font-family: Copper;
  src: url(../Fonts/Copperplate\ Gothic\ Bold.ttf);
}
@font-face {
  font-family: MontR;
  src: url(../Fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: MontB;
  src: url(../Fonts/Montserrat-Bold.ttf);
}

@font-face {
  font-family: Robo;
  src: url(../Fonts/Roboto-Medium.ttf);
}

body {
  background-color: rgba(22 23 21);
  font-size: 18px;
  color: white;
}

/*Nav Laura Levitsky Heading*/
h1 {
  font-size: clamp(24px, 3.8vw, 40px);
  letter-spacing: 0.2rem;
  color: rgb(251, 251, 251);
  font-family: Copper;
}
/*Footer Heading*/
h2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: MontR;
  margin-bottom: 5px;
}
a {
  font-size: 11px;
  line-height: 18px;
  color: white;
  font-family: MontB;
  cursor: pointer;
}
.awards {
  font-family: Robo;
  color: rgb(232 180 21);
}

.header-main {
  position: sticky;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: black;
  z-index: 1000;
  border-bottom: 2px solid rgb(129 152 103);
}

.header-container {
  width: 90%;
  height: 100%;
  margin: 0px auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}

.header-logo {
  width: fit-content;
  display: grid;
  place-items: center;
}

.header-nav {
  width: fit-content;
  display: grid;
  place-items: center;
}
.header-nav li {
  float: left;
  margin-left: 20px;
}
.header-nav ul li a {
  font-family: MontR;
  font-size: 16px;
  font-weight: bold;
  color: white;
  display: flex;
  height: 100%;
}
.header-nav ul li a:hover {
  color: rgb(129 152 103);
}
.header-nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0 black;
  z-index: 1;
}
.header-nav .dropdown-content a {
  font-size: 12px;
  line-height: 50px;
  color: black;
  padding-left: 5px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.header-nav .dropdown-content a:hover {
  background-color: rgb(129 152 103);
  color: white;
  text-decoration: none;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/*  GALLERY MAIN SECTION  **/
.main {
  width: 100%;
  height: fit-content;
}
.main-content-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0px;
}
.gallery-header {
  width: 100%;
}
.gallery-items-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
}
.gallery-images-box {
  width: fit-content;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.gallery-img {
  width: fit-content;
  height: auto;
  display: block;
  justify-content: center;
  align-items: flex-start;
}
.image-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-stack img {
  max-width: 100%;
  height: auto;
}
.image-pair {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.image-pair img {
  max-width: 100%;
  height: auto;
}
.gallery-info {
  max-width: 385px;
  padding: 5px 0 20px 0;
  text-align: center;
  font-size: 14px;
}
/*  Gallery Main Ends **/

/*  IMAGES MAIN SECTION **/
.gallery-page-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 40px 0 20px 0;
  box-sizing: border-box;
}
.gallery-page-image-container {
  max-width: 800px;
  width: fit-content;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border: 2px solid white;
  padding: 10px;
}
.image-info-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all ease-in-out 200ms;
  background-color: rgb(0, 0, 0);
  overflow: auto;
}
.gallery-page-image-container:hover .image-info-overlay {
  opacity: 0.75;
}
.image-info {
  color: white;
  font-size: 0.8rem;
  position: absolute;
  padding: 5%;
}
.image-info h2,
.awards {
  text-align: center;
}
.gallery-page-button-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.image-button {
  background: rgb(129 152 103);
  color: white;
  border: 2px solid rgb(129 152 103);
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.image-button:hover {
  background: white;
  color: rgb(129 152 103);
  border: 2px solid rgb(129 152 103);
  font-size: 13px;
}
.more-info {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  padding-bottom: 30px;
  box-sizing: border-box;
  font-size: 10px;
  font-family: MontR;
}

/*  Images Main Ends  **/

/*  FOOTER SECTION **/
.footer-main {
  background-color: black;
  width: 100%;
  border-top: 2px solid rgb(129 152 103);
}
.footer-container {
  width: 90%;
  margin: 0px auto;
  max-width: 1200px;
  padding: 30px 0;
  display: flex;
}
.footer-container img {
  width: 50px;
}
.footer-info {
  display: flex;
  width: 100%;
}
.footer-info ul:nth-child(1) {
  width: 33.33%;
  align-content: center;
  text-align: center;
}
.footer-info ul:nth-child(2) {
  width: 33.33%;
  align-content: center;
  text-align: center;
}
.footer-info ul:nth-child(3) {
  width: 33.33%;
  align-content: center;
  text-align: center;
}
.footer-contact {
  color: white;
  font-size: 16px;
  font-family: MontR;
  font-weight: 500;
  line-height: 24px;
}
.footer-link {
  color: white;
  font-size: 16px;
  font-family: MontR;
  font-weight: 500;
  line-height: 24px;
}
.footer-link:hover {
  color: rgb(129 152 103);
  font-size: 18px;
}

/*  COPYRIGHT **/
.copyright-main {
  width: 100%;
  background-color: #f9fafb;
  display: flex;
  padding: 5px 0px;
}
.copyright-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}
.afc-container {
  align-content: center;
}
.afc-container img {
  width: auto;
  height: 45px;
}
.copyright-heading {
  align-content: center;
  text-align: center;
  font-family: MontR;
  font-size: 14px;
  color: black;
}
.conservation-icon-container {
  align-items: center;
}
.conservation-icon-container img {
  margin: 5px 10px;
}

/**  BURGER MENU **/
.burger-menu,
.burger-menu-btn {
  display: none;
}

/**  MOBILE VERSION **/
@media screen and (max-width: 550px) {
  .hero-button {
    padding: 8px 10px;
  }
}
@media screen and (max-width: 600px) {
  .header-main {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    background-image: url(../images/Loon_HeroImage__mobile.webp);
    height: 90vh;
  }
}

@media screen and (max-width: 720px) {
  .burger-menu-btn {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../Icons/burger.png), url(../Icons/close.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:
      center,
      center left 30px;
    margin-top: 30px;
    margin-left: 20px;
  }
  .burger-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 900;
    background-color: rgb(128 152 103);
  }
  .burger-menu ul {
    width: 100%;
    height: calc(100vh - 90px);
    padding-top: 89px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .burger-menu ul li {
    flex-basis: 100%;
    border-top: 1px solid rgb(113 132 91);
  }
  .burger-menu ul li:last-child {
    flex-basis: 100%;
    border-bottom: 1px solid rgb(113 132 91);
  }
  .burger-menu ul li a {
    display: block;
    height: 100%;
    font-size: 2rem;
    text-shadow: 2px 2px 3px black;
    padding: 30px 0;
    flex-basis: 100%;
    text-align: center;
  }
  .header-container {
    width: fit-content;
  }
  .header-logo {
    padding: 0px;
  }
  .header-logo h1 {
    font-size: 30px;
  }
  .header-nav {
    display: none;
  }
  .index-explore-heading h3 {
    line-height: 1;
    font-size: 32px;
  }
  .index-explore {
    padding: 20px 0px 30px 0px;
  }
  .rooms-heading-container {
    display: none;
  }
  .slideshow-container {
    display: none;
  }
  .footer-container {
    margin: 0px auto;
  }
  .footer-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    padding: 30px 0px;
  }
  .footer-info ul:nth-child(1) {
    width: 90%;
  }
  .footer-info ul:nth-child(2) {
    width: 90%;
  }
  .footer-info ul:nth-child(3) {
    width: 90%;
  }
}

@media screen and (max-width: 826px) {
  .copyright-container {
    justify-content: center;
  }
  .afc-container {
    display: none;
  }
  .conservation-icon-container {
    display: none;
  }
}
