@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);
}

/*Nav Laura Levitsky Heading*/
h1 {
  font-size: clamp(24px, 3.8vw, 40px);
  letter-spacing: 0.2rem;
  color: rgb(251, 251, 251);
  font-family: Copper;
}
/*Gallery Titles & Footer Heading*/
h2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: MontR;
  margin-bottom: 5px;
}
/*Explore & Elevate Gallery Heading*/
h3 {
  font-size: clamp(24px, 3.8vw, 40px);
  color: black;
  font-family: MontB;
  margin-bottom: 5px;
}
/*Discover Hero Heading*/
h4 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 600;
  color: white;
  font-family: MontR;
  margin-bottom: 5px;
}
/*About Me Heading*/
h5 {
  font-size: 24px;
  color: black;
  font-family: MontB;
  margin-bottom: 5px;
}
/*Sub-Headings*/
h6 {
  font-size: 20px;
  font-weight: 600;
  color: black;
  font-family: MontR;
  line-height: 25px;
}

a {
  font-size: 11px;
  line-height: 18px;
  color: white;
  font-family: MontR;
  cursor: pointer;
}

.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;
}

/* HERO SECTION */
.hero {
  background-image: url(../images/Loon_HeroImage_cropped.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.hero-column {
  text-align: center;
  text-shadow: 4px 4px 8px black;
}

.hero-button {
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

.hero-button:hover {
  background: white;
  color: black;
  text-shadow: 0px 0px 0px;
}

/* EXPLORE SECTION */

.index-explore {
  width: 100%;
  background-color: #f9fafb;
  display: flex;
  padding: 80px 0px 50px 0px;
  justify-content: center;
  align-items: center;
}
.index-explore-heading-container {
  width: 90%;
  height: fit-content;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
.index-explore-heading {
  text-align: center;
}

/* GALLERY BOXES */

.index-gallery {
  width: 100%;
  background-color: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  box-sizing: border-box;
}
.index-gallery-container {
  width: 90%;
  height: fit-content;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 3vw;
}
.index-gallery-box {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 5px 5px 15px;
  color: black;
  position: relative;
  border-radius: 100%;
}

.index-gallery-box:nth-child(1) {
  background-image: url(../images/BarredOwl_sm.jpg);
}
.index-gallery-box:nth-child(2) {
  background-image: url(../images/Ford_sm.jpg);
}
.index-gallery-box:nth-child(3) {
  background-image: url(../images/Grizz_sm.jpg);
}
.index-gallery-box:nth-child(4) {
  background-image: url(../images/Sunflowers_sm.jpg);
}

.dark-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: black;
  opacity: 0.5;
  transition: all ease-in-out 300ms;
}

.index-gallery-box:hover .dark-overlay {
  opacity: 0;
}

.index-gallery-box h2 {
  text-align: center;
  line-height: 1.2;
  z-index: 1;
  text-shadow: 2px 2px 3px black;
  padding: 80px 80px;
  transition: all ease-in-out 400ms;
}
.index-gallery-box h4:hover {
  font-size: 40;
}

/*  ABOUT SECTION  */

.parallax-margin {
  margin: 8% 0;
}
.about-section {
  background-color: black;
  background-image: url(../images/LLMedal.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed;
}
.about-container {
  width: 90%;
  margin: 0px auto;
  max-width: 1200px;
  display: flex;
  justify-content: left;
  padding-top: 80px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
}
.about-box {
  width: 600px;
  height: 250px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: relative;
}
.about-heading {
  text-align: center;
}
.about-button {
  background: rgb(129 152 103);
  color: white;
  border: 2px solid rgb(129 152 103);
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.about-button:hover {
  color: rgb(129 152 103);
  background-color: white;
}

/*  ROOMS SECTION **/

.rooms-heading-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}
.slideshow-container {
  background-color: white;
  width: 100%;
  margin: 0px auto;
  display: fit-content;
  position: relative;
}
.slideshow-rooms img {
  padding: 5px 5px;
}

/*  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;
  }
}

@media screen and (min-width: 893px) and (max-width: 1234px) {
  .index-gallery-container {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }
}
