/*  fonts  */
@import url("https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap");

/* colors */
:root {
    --green: #829387;
    --pale-green: #A8B2A2;
    --beige: #F0EFDF;
    --cream: #FBFAF2;
    --white: #FFFFFF;
  }

/* BASE FORMATTING */
* {
    padding: 0px;
    margin: 0px;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

html, body {
    background-color:var(--cream);
    scroll-behavior: smooth;
    color: var(--green);
    font-size:18px;
    line-height: 1.8rem;
    width:100vw;
    /* height: 1000vh; */
    margin:auto;
    overflow-x:hidden;
    cursor: url("../images/cursor_star.svg"), auto;

}

/*  TYPOGRAPHY */
h1 {
    font-family: "Footlight MT Light", "Inknut Antiqua", "serif";
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: #829387;
}      
h2 {
    font-family: "Footlight MT Light", "Inknut Antiqua", "serif";
    font-size: 2.5rem;
    font-weight: 500;
}
h3 {
    font-family: "Footlight MT Light", "Inknut Antiqua", "serif";
    font-size: 1.5rem;
    font-weight: 500;
}
h4 {
  font-family: "Footlight MT Light", "Inknut Antiqua", "serif";
  font-size: 1.2rem;
  font-weight: 500;
  margin-top:1.2rem;
}
p {
    font-family: "Didact Gothic", "sans-serif";
    font-size: 1rem;
    font-weight: 400;
    margin-bottom:1rem;
}

/* LINKS */
a {
    text-decoration: none;
    color: var(--green);
}
a:hover {
    color: var(--pale-green);
    font-weight: 600;
    cursor: url("../images/cursor_star-inv.svg"), auto;
}
a:active {
    font-weight: 400;
    cursor: url("../images/cursor_star-small.svg"), auto;

}


/* HEADER */
header {
    width: 100%;
    padding: 0 5vw;
    height:11vh;
    background-color: var(--beige);
    font-family:"Didact Gothic", "sans-serif";
    /*flex information*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position = persistent header */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
header nav ul {
    display:flex;
    flex-direction:row;
    list-style:none;
}

/* > WORDMARK */
#wordmark a img:last-child {
  display: none;  
}
#wordmark a:hover img:last-child {
  display: block;  
}
#wordmark a:hover img:first-child {
  display: none;  
}

/* > NAVIGATION */
.dropbtn {
    background-color: var(--green-100);
    color: var(--brown);
    padding: 24px;
    /* font-size: 16px; */
    border: none;
    transition: font-weight .3s ease-in;
    width:15vw;
  }
.dropbtn:hover,
.dropbtn:active {
  font-weight: bold;
}
.dropbtn a:hover {
  font-weight:800;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--cream);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.dropdown-content a {
  color: var(--green);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: var(--beige);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: var(--cream);
}


/* MAIN */
main:first-child {
  margin:10vh;
}
  
.map {
    width: 100vw;
    height:fit-content;
}

/* > BUILDING BTNS */


.five-row {
    display: flex;
    flex-direction:row;
    width:80vw;
    height:20vh;
    margin:5% 0% 10% 0%;
    /* positioning */
    align-content:center;
    align-items:center;
    justify-content: center;
    text-align:center;
}
.explore .building-btn a img:first-child  {
    border-radius:100%;
    width:50%;
    border:1px double var(--green);
    transition: transform 0.05s ease-in-out;
    
}
.explore .building-btn a img:first-child:hover  {
    transform: scale(1.15,1.15);
}
.explore .building-btn a img:first-child:active  {
    transform: scale(1,1);
    opacity:.65
}  
.explore .building-btn a img:last-child {
    position: absolute;
    top:0;
    left:0;
    display:none;
}
.building-btn {
    text-align:center;
    align-items:center;
}


/* FOOTER */
footer {
  padding:3% 8% 3% 8%;
  /* background: linear-gradient(180deg, #FBFAF2 0%, var(--beige) 100%); */
  background-color: var(--pale-green);
  color:var(--cream);
  margin-top:5%;
}

footer a {
  color:var(--cream);
  font-style:italic;
}

footer a:hover {
  color:var(--white)
}

footer img {
  width:30%;
  margin-bottom:1.5%;
}

/* ////////////////////////////////////////////// */
/* RESPONSIVE LAYOUT */
/* > mobile */
@media (max-width: 430px) {
html {
  font-size: 16px;
}
header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.five-row {
  display: block;

  /* flex-direction:column; */
}

}

