*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color: #7FA1C3;
}
a:hover{
  color: #7FA1C3;
  cursor: pointer;
}
p, a, i{
  font-size: 1rem;
  line-height: normal;
}
h1, h2, h3{
  line-height: 1.2;
  font-family: 'Bricolage Grotesque', sans-serif;
}
ul{
  list-style: none;
}
hr{
  border: 2px solid #7FA1C3;
  margin: .5rem;
}
button{
  font-family: 'Changa', sans-serif;
  background-color: #7FA1C3;
  color: #333333;
  border: 2px solid #7FA1C3;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.1);
  outline: none;
  border-radius: .7rem;
  padding: .45rem;
  margin: .5rem 0;
  font-size: .9rem;
  cursor: pointer;
}
button:hover{
  color: #F5EDED;
  background-color: #20806B;
  border-color: #20806B;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.75);
}
button:focus{
  transform: scale(0.95);
}
body{
  font-family: 'Changa', sans-serif;
  line-height: normal;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333333;
  background-color: #F5EDED;
  font-size: .9rem;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.63rem 1.25rem;
  background-color: #E1E4E6;
  color: #F5EDED;
  position: relative;
  z-index: 10;
  transition: background-color 0.01s ease-in;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80px;
  margin: .5rem 0 0 0;
}
.logo img{
  width: 80%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Hamburger Menu Styles */
.hamburger{
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  position: relative;
}
.hamburger div{
  width: 100%;
  height: 3px;
  background-color: #7FA1C3;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}
.hamburger.active div:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active div:nth-child(2){
  opacity: 0;
}
.hamburger.active div:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger.active div{
  background-color: #20806B;
}
/* Navigation Styles */
.nav-links{
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #7FA1C3;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  text-align: center;
}
.nav-links li{
  margin: 1rem 0;
}
.nav-links a{
  color: #333333;
  text-decoration: none;
  font-size: 1.3rem;
}
.nav-links a:hover{
  text-decoration: underline;
  text-decoration-color: #7FA1C3;
}
.nav-links.open{
  display: flex;
}
.social-links a{
  margin: 0 1rem;
}
.social-links i{
  color: #F5EDED;
  padding: .2rem;
  font-size: 1.25rem;
  border-radius: .4rem;
}
.social-links i:hover{
  color: #333333;
  background-color: #7FA1C3;
}
.dropdown{
  display: none;
}
/* Scroll Up Styles */
#scrollTopBtn{
  display: none;
  position: fixed;
  bottom: 60px;
  right: 25px;
  z-index: 99;
  font-size: 1.35rem;
  color: #7FA1C3;
  background-color: #E1E4E6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 7rem;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
  line-height: 24px;
}
#scrollTopBtn:hover{
  background-color: #20806B;
  border-color: #20806B;
  color: #E1E4E6;
}

@keyframes fadeInLeft {
  0% {
      opacity: 0;
      transform: translateX(-40px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
      opacity: 0;
      transform: translateX(40px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

.contact{
  display: flex;
  flex-direction: column;
  margin: 2rem;
  align-items: center;
  gap: 40px;
}

.contactHero{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 1rem;
}
.hero1{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactTitle{
  text-align: center;
}
.contactTitle h1{
  color: #20806B;
  font-size: 1rem;
}
.contactTitle h2{
  font-size: 2rem;
}
.contactHero h3{
  text-align: center;
  font-size: 1rem;
}

.contactLinks{
  background-color: #E1E4E6;
  height: max-content;
  margin: auto;
  width: fit-content;
  padding: .8rem .4rem;
  border-radius: .7rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.contactLinks:hover{
  box-shadow: 0 4px 12px rgba(32, 128, 107, 0.3);
}
.contactMe{
  display: flex;
  justify-content: space-evenly;
}
.contactMe a {
  margin: auto .8rem;
  line-height: 0;
}
.contactMe li{
  text-decoration: none;
}
.contactMe i{
  color: #333333;
  padding: .2rem;
  font-size: 1.25rem;
  border-radius: .4rem;
}
.contactMe i:hover{
  color: #F5EDED;
  background-color: #20806B;
}


.contactForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #E1E4E6;
  padding: .75rem;
  border-radius: .7rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  animation: fadeIn 2s ease-out;
}
.contactForm:hover{
  box-shadow: 0 4px 12px rgba(32, 128, 107, 0.5);
}
.contactForm label {
  margin: 0 0 .4rem .4rem;
  font-size: 1rem;
  font-weight: bold;
}
.contactForm input, .contactForm textarea, .contactForm button {
  margin: 0 auto 1rem auto;
  font-size: 1rem;
  padding: .8rem;
  border-radius: 1rem;
  border: 2px solid #E1E4E6;
}
.contactForm input, .contactForm textarea {
  width: 100%;
}
.contactForm input:focus, .contactForm textarea:focus{
  outline: none !important;
  border: 2px solid #20806B;
}
.contactForm textarea {
  resize: vertical;
}
.contactForm button {
  border: 2px solid transparent;
  margin: 0 auto 1rem auto;
  display: block;
}
.contactForm a {
  color: #7FA1C3;
}
.contactForm a:hover {
  color: #7FA1C3;
}

/*Footer Styles*/
footer{
  margin-top: auto;
  background-color: #7FA1C3;
  color: #F5EDED;
  text-align: center;
  padding: 1rem;
}