html {
    scroll-behavior: smooth;
}

* {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content:space-between;
    align-items: center;
    background-color: rgba(153, 215, 188, 0.81);
  }


body {
    background-image:url(Img/parchment\ bg2.jpg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
}
main {
  position: relative;
}
/* branding */
.branding {
    padding: .5rem;
    width: 30%;
    margin-top: 0.5rem;
    margin-left: 1rem;
    color: maroon;
    font-family: "Zeyada", cursive;
    font-size: xx-large;
}

.bi {
    margin-bottom: 10px;
  }

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }

/* Desktop Menu */
.dropbtn {
    background-color:#2cbe9e;
    color: maroon;
    padding: 10px;
    margin-right: 1rem;
    font-size: 16px;
    border: none;
    cursor: pointer;
    float: right;
    border-radius: 50%;
    font-family: "Gowun Batang", serif;
    font-weight: bold;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }


  .dropbtn:hover, .dropbtn:focus {
    background-color: maroon;
    color: beige;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: mintcream;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    border-radius: 25px;
    margin-right: 1rem;
  }

  .dropdown-content a {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
    font-family: "Gowun Batang", serif;
    font-weight: 400;
    font-style: normal;
  }

  .dropdown-content a:hover {
    background-color: rgb(177, 228, 206);
    border-radius: 24px;
}

.show {
    display:block;
}

@media (min-width: 641px) {
    .collapse {
        display: flex;
        width: 75%;
        justify-content: space-evenly;
        font-size: larger;
        background-color:#2cbe9e;
        
    }
    .dropdown-content a {
        color: maroon;
        padding: 10px 10px;
        text-decoration: none;
        display: block;
        font-family: "Gowun Batang", serif;
        font-weight: 400;
        font-style: normal;
    }
    .dropdown-content a:hover {
      background-color: maroon;
      color: bisque;
      box-shadow: 0px 8px 16px 0px rgba(128, 0, 0, 0.542);
    }

}

/* HERO SECTION */
.heroSection {
  margin-top: 5rem;
}

.heroText {
  display: flex;
  width: 50rem;
  height: 50rem;
}

.heroSection h2 {
  font-weight: bolder;
  font-family: "Sofadi One", serif;
  color: maroon;
  text-shadow: rgb(255, 255, 255) 5px 0px 5px;
  font-weight: bolder;
  position: absolute;
  right: 50px;
  top: 120px;
  width: 50%;
  text-align: center;
  font-size: 6vw;
}

.heroSection img {
  width: 100%;
  border-radius: 10%;
}

.ImgCaption {
  display: flex;
  justify-content:right;
  margin-right: 100px;
  font-size: xx-small;
  color: maroon;
}
.ImgCaption a {
  text-decoration: none;
  color: maroon;
}

/* Vision */
.vision {
 	padding: 0 1rem;
  /* background-color: rgba(250, 235, 215, 0.211); */
  background-color: rgba(153, 215, 188, 0.358);
  box-shadow: 0px 6px 4px -4px rgba(155, 139, 120, 0.619);
  border-radius: 15px;
  color: maroon;
}

.vision h2 {
  font-family: "Sofadi One", serif;
}


#quest {
  /* background-color: coral; */
  text-align: center;
  font-size: x-large;
}

#visions {
  display: grid;
 	grid-template-columns: 1fr;
 	grid-template-rows: 1fr;
 	gap: .5rem;
}


/* SKILLS */
.flip-card {
  background-color: transparent;
  width: 375px;
  height: 300px;
  perspective: 1000px;
  margin: 10px;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 98%;
  height: 98%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 98%;
  height: 98%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  transform: rotateX(0deg)
}

.flip-card-front {
  color: maroon;
  font-size: larger;
  padding-top: 50px;
  background-color: rgba(153, 215, 188, 0.358);
  border-radius: 50px;
  box-shadow: 0px 6px 4px -4px rgba(155, 139, 120, 0.619);
}
.flip-card-front h2 {
  font-family: "Sofadi One", serif;
}

/* Style the back side */
.flip-card-back {
  color: maroon;
  font-size: x-large;
  font-weight: bold;
  text-shadow: rgb(255, 255, 255) 5px 0px 5px;
  transform: rotateY(180deg);
  background-color: rgba(250, 235, 215, 0.215);
  border-radius: 50px;
} 
.flip-card-back p {
  font-family: "Sofadi One", serif;
  padding-left: 20px;
  padding-right: 20px;
}

#PokemonGoButton {
    border: none;
    background-color: transparent;
    color: maroon;
    font-family: "Zeyada", cursive;
    font-size: x-large;
}
#PokemonGoButton:hover {
    font-weight: bolder;
    cursor: pointer;
    border-radius: 15px;
    background-color: white;
    box-shadow:
        0 0 30px 15px white,
        0 0 50px 30px gold,
        0 0 70px 45px white;
}
/* Resume Button */
.myResume {
  position:relative;
  border: none;
  border-radius: 15rem;
  line-height: 1;
  background-color: maroon;
  color: bisque;
  width: 130px;
  align-items: center;
  margin: auto;
  padding: 10px 12px;
  font-size: larger;
  text-align: center;
}

.myResume:hover {
  color: maroon;
  font-weight: bolder;
  background-color: white;
  cursor: pointer;
  box-shadow:
    0 0 30px 15px white,  /* inner white */
    0 0 50px 30px gold, /* middle magenta */
    0 0 70px 45px white; /* outer cyan */
}

.ResumeModal {
  padding:50px;
}

/* #RUSure {
  border: none;
  background-color: rgba(153, 215, 188, 0.789);
  box-shadow: 0px 6px 4px -4px rgba(155, 139, 120, 0.619);
  border-radius: 20px;
  font-size: xx-large;
  color: maroon;
  font-weight: bold;
  font-family: "Gowun Batang", serif;
}

#RUSure button {
  background-color: maroon;
  color: bisque;
  border: none;
  padding: 10px;
  border-radius: 15px;
  margin-top: 10px;
  font-size: large;
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#RUSure button:hover {
  background-color: bisque;
  color: maroon;
} */

.resumeSection img {
  display: flex;
  width: 100%;
  border-radius: 10%;
  justify-content: right;
}


/* CONTACT ACCORDION */
#contact {
  justify-content: center;
  text-align: center;
  width: 99%;
  display: flex;
  flex-direction: column;
  padding-left: 5px;
}

#contact h2 {
  padding: 18px;
  background-color: #2cbe9e82;
  font-family: "Sofadi One", serif;
  color: maroon;
  text-align: center;
  border-radius: 25px;
  width: 99%;
  justify-content: center;
  margin: 2px;
  border-radius: 25px;
  box-shadow: 0px 6px 4px -4px rgba(155, 139, 120, 0.619);
  font-size: xx-large;
}
#contact bi {
  display: flex;
  color: maroon;
}

.pens {
  padding-top: 15px;
}
.accordion {
  background-color: #2cbe9e82;
  color: maroon;
  cursor: pointer;
  padding: 18px;
  width: 99%;
  border: none;
  text-align: center;
  outline: none;
  font-family: "Sofadi One", serif;
  font-size: x-large;
  transition: 0.4s;
  margin: 2px;
  border-radius: 25px;
  box-shadow: 0px 6px 4px -4px rgba(155, 139, 120, 0.619);
  /* border: solid #25957c87; */
  
}

.active, .accordion:hover {
  background-color: maroon;
  color: bisque;
}

.panel {
  padding: 0 18px;
  background-color: rgba(153, 215, 188, 0.596);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-family: "Gowun Batang", serif;
  color: maroon;
  text-align: center;
  border-radius: 25px;
  width: 99%;
  justify-content: center;
  margin: 2px;
}

.panel a {
  text-decoration: none;
  color: maroon;
}

.hidden-sm {
  display: none !important; 
}
.show-sm {
  display: block !important; 
}



/* MEDIA QUERIES */
@media (min-width: 375px)
  {
    .heroSection h2 {
      top: 20px;
      right: 30px;
    }
  }



@media (min-width: 768px) {
  #visions {
    grid-template-columns: 1fr 1fr;
  }

  #skills {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .hidden-sm {
    display: none !important;
  }
  .show-sm {
      display: block !important;
  }
  .resumeSection img {
    display: flex;
    width: 100%;
    border-radius: 10%;
    justify-content: right;
  }
}

@media (min-width: 1024px) {
  #visions {
    grid-template-columns: repeat(4, 1fr);
  }

 #skills {
    grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: wrap;
        justify-content: center;
        align-items: flex-start;
        display: flex;
  }
  
  .resumeSection {
    display: flex;
    justify-content: center;
  }
  
  .resumeSection img {
    display: flex;
    width: 100%;
    border-radius: 10%;
  }
  #contact {
    justify-content: center;
    text-align: center;
    width: 50%;
  }
  .hidden-sm {
    display: block !important;
  }
    .show-sm {
        display: none !important;
  }
}


/* Footer */
footer {
  background-color: black;
  color: white;
  height: 100px;
  display: flex;
}
footer .container {
  flex-direction: column;
}
@media (min-width: 641px) {
  footer .container {
  flex-direction: row;
  }
}
.copyright {
  margin: 10px;
}
#footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  justify-content: center;
}

#footer-menu li {
  padding: .75rem .75rem;
  /* border: 1px solid black */
}

#footer-menu li:hover {
  border-bottom: 1px solid white;
}

#footer-menu a{
  color: white;
  text-decoration: none;
}
