html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  margin-top: 215px;
}


/* main nav container */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(0, 104, 71);
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: height 0.3s ease;
}

.navParent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 165px;
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

/* NAV LEFT AND RIGHT SECTIONS */
.topLeft, .topRight {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.1vw, 20px);
}

.topLeft p { 
  margin: 0; 
  font-size: larger;
}
.topRight p { 
  margin: 0; 
  text-align: right;
  font-size: larger;
}

/* CENTER LOGO */
.topMid {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topMid img {
  max-width: 45%;
  height: auto;
  display: block;
}

/* NAV LINKS */
.topLinks {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 85, 58);
}

.topLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topLinks ul li {
  display: inline-block;
  margin: 0 40px;
}

.topLinks ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.topLinks ul li a:hover {
  color: gold;
  font-weight: bold;
}




.menuContainer{
  width: 90vw;
  margin: 300px auto 300px auto;

  background: white;
  align-self: center;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  padding: 30px;
  border-radius: 16px;

  
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  box-sizing: border-box
  
}

.menuContainer img{
  width: 100%;
  height: auto; 
}

.menuContainer h1{
    border-bottom: solid 20px rgb(241, 241, 241);
    padding-bottom: 20px;
}


/* VISIT US */
.visitUs{
  height: 600px;
  width: auto;
  padding: 0 20vw; 
  text-align: center;
  scroll-margin-top: 220px;
  margin-top: 150px;
}

.visitUs iframe {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border-radius: 10px;
}


/* FOOTER */
.footer{
    display: flex;
    justify-content: space-around;
    background-color: rgb(0, 104, 71);
    color: white;
    padding: 20px 0; /*vertical padding and horizontal padding*/
    width: 100%;
    align-content: center;
    align-items: center;;
    margin-top: 50px;
    font-size: 20px;

}

/* DESKTOP VIEW DEFAULT */

.desktop-only{
  display: block;
}

.mobile-only{
  display: none;
}




/* MOBILE VIEW */

@media (max-width: 785px) {

  /* MOBILE VIEW DEFAULT */
  .desktop-only { 
    display: none;
  }
  .mobile-only {
    display: block;
  }

  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    background-color: #fff;
    scroll-behavior: smooth;
  }

  body{
    margin-top: 20vh;
  }

  /* NAV CONTAINER */
  .navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .navParent {
    height: 20vh;
  }

  .topMid img {
    max-width: 70%;
    height: auto;
  }

  .topLinks {
    height: auto;
    padding: 10px 0;
  }

  .topLinks ul {
    display: flex;
    flex-wrap: wrap;           
    justify-content: center;
    gap: 10vw;                 
  }
  
  .topLinks ul li {
    margin: 0;                 
  }

  .topLinks ul li a {
    font-size: 2.3vw;
    white-space: nowrap;       
  }

  .menuContainer{
    width: 100vw;
    margin-top: 300px;
    margin-bottom: 100px; 

    background: white;
    align-self: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    padding: 16px;
    border-radius: 16px;

    
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    box-sizing: border-box;

    touch-action: manipulation;
    
  }

  .menuContainer img{
    width: 100%;
    height: auto; 
  }

  .menuContainer h1{
    border-bottom: solid 20px rgb(241, 241, 241);
    padding-bottom: 20px;
  }

  .visitUs{
    height: auto;
    width: auto;
    padding: 0 5vw; 
    text-align: center;
    scroll-margin-top: 220px;
    margin-top: 150px;
  }

  .visitUs iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
  }

  .footer {
    display: flex;
    align-items: center;
    gap: 40px;

    background-color: rgb(0, 104, 71);
    color: white;

    padding: 30px 6%;
    width: 100%;
    box-sizing: border-box;
  }

  
  .footer-left {
    flex: 1;               
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-left p{
    font-size: 3.5vw;
  }

  .footer-left img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }

 
  .footer-right {
    flex: 1vw;             
    font-size: 3vw;
    line-height: 1.6;
  }

}
