html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Libre Franklin";
    width: auto;
    background-color: #FAF9F6;
}

h2 {
    font-size: 4vw;
    margin: 5% 0 5% 0;
    text-align: center;
}

a {
    color: black;
    text-decoration: none;
}

/*navbar*/
@media only screen and (min-width: 0px) and (max-width: 1030px) {
    .navbar {
        width: 100%;
        height: 50px;
        padding-top: 10px;
        /* border-bottom: 1px solid rgba(0,0,0,0.5);
        box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        background-color: #1B2617; */
        border-radius: 0 0 30px 30px;
    }

    .navbrand {
        width: 70%;
        display:inline-block;
        margin-left: 2%;
        margin-right: 5%;
        font-size: 8px;
        background-color: #1B2617;
        border-radius: 30px;
    }

    .navbrand h1 {
        color: #FAF9F6;
        text-shadow: 1px 1px 10px #1B2617;
        transition: color 0.3s;
        text-align: center;
    }

    .navbrand h1:hover {
        color: #B8BDB5;
    }

    .overlay {
        height: 0;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #1B2617;
        overflow: hidden;
        transition: 0.5s;
    }

    .overlaymenu {
        position: relative;
        top: 10%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
      }

      .overlay a {
        padding: 20px;
        text-decoration: none;
        font-size: 36px;
        color: #FAF9F6;
        display: block;
        transition: 0.3s;
      }
      
      .overlay a:hover, .overlay a:focus {
        color: #B8BDB5;
      }
      
      .overlay .closebtn {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
      }

      .hamburger {
        margin-right: 4%;
        width: 40px;
        height: 40px;
        float: right;
        color: #FAF9F6;
        text-shadow: 1px 1px 10px #1B2617;
        transition: color 0.3s;
        cursor: pointer;
        text-align: center;
        background-color: #1B2617;
        border-radius: 40px;
        text-align: center;
      }

      .hamburger:hover {
        color: #B8BDB5;
      }

      .hamburger i {
        text-align: center;
        padding-top: 5px;
        margin: auto;
        object-position: center;
      }
}

@media only screen and (min-width: 767px) {
    .navbrand {
        width: 40%;
    }

    .hamburger {
        width: 50px;
    }
}

@media only screen and (min-width: 1030px) {
    .navbar {
        width: 100%;
        height: 60px;
        padding-top: 10px;
    }

    .navbrand {
        width: auto;
        margin-left: 5%;
        height: 50px;
        display:inline-block;
        font-size: 10px;
        border-radius: 30px;
        background-color: #1B2617;
        transition: background-color 0.3s, color 0.3s;
        color: #FAF9F6;
    }

    .navbrand:hover {
        background-color: #FAF9F6;
        color: #1B2617;
    }

    .navbrand h1 {
        width: 300px;
        display:inline-block;
        height: 30px;
        text-align: center;
    }

    .overlay {
        padding-right: 50px;
        padding-top: 15px;
        display: inline-block;
        float: right;
    }

    .overlaymenu a {
        color: #1B2617;
        background-color: #FAF9F6;
        transition: color 0.3s, background-color 0.3s;
        border-radius: 30px;
    }

    .overlaymenu a:hover {
        color: #FAF9F6;
        background-color: #1B2617;
    }

    .overlay a:hover, .overlay a:focus {
        color: #FAF9F6;
      }

    .overlaycontent {
        text-align: center;
        padding: 10px;
        margin: 10px;
        font-weight: bold;       
        border-radius: 30px;
        background-color: #FAF9F6;
    }
    .closebtn {
        position: absolute;
        top: -50px;
        height: 0;
        width: 0;
    }

    .hamburger {
        position: absolute;
        top: -50px;
        width: 0;
        height: 0;
    }
}

/* Highlight area*/
@media only screen and (min-width: 0px) {
    .highlighted {
        display: grid;
        max-height: 65vh;
        padding: 10vw 3vw 0 3vw;
        margin-bottom: 50px;
    }

    .box1 {
        grid-row: 2;
        width: 90%;
        height: auto;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid #1B2617;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-weight: 100;
    }

    .imgtext {
        color: black;
        display: inline;
        margin: 0;
        border-left: 1px solid #1B2617;
        padding: 0 5px 0 5px;
    }

    .box2 {
        grid-row: 1;
        width: 100%;
        max-height: auto;
        float: left;
        border-radius: 10px;
        overflow:hidden;
    }

    .box2 img {
        max-height: auto;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        transform: scale(1);
        transition: transform 1s;
        object-position: center;
    }

    .box2 img:hover {
        transform: scale(1.2);
    }
}
@media only screen and (min-width: 767px) {
    .highlighted {
        display: grid;
        max-height: 500vh;
        padding: 3vw 3vw 0 3vw;
        margin-bottom: 150px;
    }

    .box1 {
        grid-row: 2;
        width: 45%;
        height: auto;
        padding-top: 10px;
        padding-left: 20px;
        border-top: 1px solid #1B2617;
        margin-left: 20px;
        margin-right: 0;
        text-align: left;
        font-weight: 100;
        margin-top: 10px;
    }

    .box2 {
        grid-row: 1;
        width: 100%;
        max-height: 700px;
        float: left;
        overflow: hidden;
    }

    .box2 img {
        max-height: 700px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .box2:hover {
        background-size: 250%;
    }
}
@media only screen and (min-width: 1030px) {
    .highlighted {
        display: grid;
        width: 90%;
        max-height: 500vh;
        padding: 0vw 3vw 0 3vw;
        margin: 2vw auto 200px auto;
    }

    .box1 {
        grid-row: 1;
        grid-column: 2;
        width: auto;
        height: 70px;
        padding-top: 10%;
        padding-left: 0;
        border-left: 3px solid #1B2617;
        border-top: 0;
        margin: auto 0 auto 10%;
        text-align: left;
        font-weight: 100;
    }

    .imgtext {
        color: black;
        display: block;
        margin: 0;
        padding: 0 5px 0 5px;
        border-bottom: 0;
        font-size: 14px;
        border-left: 0;
    }

    .box2 {
        grid-row: 1;
        width: auto;
        max-height: 85%;
        float: left;
        overflow: hidden;
    }

    .box2 img {
        max-height: 900px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .box2:hover {
        background-size: 250%;
    }
}

.titlewrapper {
    margin-top: 100px;
    width: auto;
    text-align: center;
    margin-bottom: 10px;
    height: auto;
}
.showcasetitle {
    display: inline-block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    border-radius: 80px;
    padding: 15px 30px 15px 30px;
    color: #FAF9F6;
    background-color: #1B2617;
    font-size: 5vw;
    margin-bottom: 0;
}/* END highlight area */

.arrowup {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    overflow: hidden;
    top: 90vh;
    background-color: #1B2617;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin: -10% 5% 5% auto;
    border: 1px solid #FAF9F6;
    transition: background-color 0.5s, border 0.5s;
    z-index: 10;
}

.material-symbols-outlined {
    overflow: hidden;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 100;
  color: #FAF9F6;
  padding: 25%;
  border-radius: 50px;
  transition: color 0.5s;
}

.arrowup:hover  {
    background-color: #FAF9F6;
    border: 1px solid #1B2617;
}

.material-symbols-outlined:hover {
    color: #1B2617;
}
/*START showcase area */

@media only screen and (min-width: 0px) {
    .showcase {
        display: grid;
        max-height: 1000vh;
        overflow: hidden;
        margin: 2vw;
    }

    .showcasebox1 {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2%;
        height: auto;
        grid-row: 1;
    }
    .showcasebox2 {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        grid-row: 2;
        margin-bottom: 2%;
    }
    .showcasebox3 {
        position: relative;
        grid-row: 3;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        margin-bottom: 2%;
    }
    .showcasebox4 {
        position: relative;
        grid-row: 4;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        margin-bottom: 2%;
    }

    .showcasetextbox {
        position: absolute;
        z-index: 1;
        bottom: 0;
        width: 100%;
        background-color: rgba(27, 38, 23, 0.5);
        border-radius: 0px 0 10px 10px;
    }

    .showcasetextbox p {
        border-left: 1px solid #FAF9F6;
        color: #FAF9F6;
        height: auto;
        max-width: 50%;
        height: auto;
        padding-left: 5px;
        text-align: left;
        font-weight: 100;
        font-size: 5vw;
        margin-left:5%;
    }

    .showcaseimgbox {
        display: block;
        width: auto;
        max-height: 300px;
        overflow: hidden;
        margin: 0;
        border-radius: 10px;
    }

    .showcaseimgbox img {
        width: 100%;
        max-height: 300px;
        border-radius: 10px;
        transform: scale(1.1);
        transition: transform 1s;
        object-position: center;
    }

    .showcaseimgbox img:hover {
        transform: scale(1.2);
    }
}
@media only screen and (min-width: 767px) {
    .showcase {
        display: grid;
        max-height: 500vh;
        overflow: hidden;
    }

    .showcasebox1 {
        margin-left: auto;
        margin-right: auto;
        grid-row: 1;
    }
    .showcasebox2 {
        margin-left: auto;
        margin-right: auto;
        grid-row: 2;
    }
    .showcasebox3 {
        grid-row: 3;
        margin-left: auto;
        margin-right: auto;

    }
    .showcasebox4 {
        grid-row: 4;
        margin-left: auto;
        margin-right: auto;
    }

    .showcasetextbox p {
        padding-left: 2%;
    }

    .showcaseimgbox {
        width: 100%;
        max-height: 100%;
        margin: 0;
    }

    .showcaseimgbox img {
        width: 100%;
        max-height: 100%;
        border-radius: 10px;
    }
}
@media only screen and (min-width: 1030px) {
    .showcase {
        display: grid;
        max-height: 200vh;
        margin-bottom: 100px;
        overflow: hidden;
        grid-gap: 10px;
        grid-auto-columns: 1fr;
    }

    .showcasebox1 {
        margin-left: auto;
        margin-right: auto;
        grid-column: 1;
        grid-row: 1;
    }
    .showcasebox2 {
        margin-left: auto;
        margin-right: auto;
        grid-column: 2;
        grid-row: 1;
    }
    .showcasebox3 {
        grid-row: 2;
        grid-column: 1;
        margin-left: auto;
        margin-right: auto;
    }
    .showcasebox4 {
        grid-row: 2;
        grid-column: 2;
        margin-left: auto;
        margin-right: auto;
    }

    .showcasetextbox p {
        width: 80%;
        text-align: left;
        font-size: 2vw;
    }

    .showcaseimgbox {
        display: block;
        max-width: 100%;
        max-height: 900px;
        overflow: hidden;
        margin: 0;
        border-radius: 10px;

    }

    .showcaseimgbox img {
        width: 100%;
        max-height: 900px;
    }
}

/*START aboutme area*/
@media only screen and (min-width: 0px) {
    .aboutme {
        margin: 3vw;
        margin-top: 5vh;
        max-height: 500vh;
        background-size: cover;
        border-radius: 10px 10px 0px 0px;
        overflow: hidden;
    }

    .aboutmeimg {
        width: 100%;
        max-height: auto;
        margin: 0;
    }
    
    .abttextbox {
        margin-top: -10px;
        width: 100%;
        height: auto;
        background-color: rgba(27, 38, 23, 0.95);
        color: #FAF9F6;
        border-radius: 0 0 10px 10px;
    }
    
    .abttextbox p {
        font-size: 4.5vw;
        padding: 0 2vw 0 2vw;
        font-weight: 200;
        text-align: center;
        padding-bottom: 5vw;
    }
    
    .abttextbox h1 {
        text-align: center;
        margin: 0;
        padding: 20px 0px 0px 0px;
        font-size: 10vw;
    }
}
@media only screen and (min-width: 767px) {
    .aboutme {
        margin: 3vw;
        margin-top: 5vh;
        max-height: 500vh;
        background-size: cover;
        border-radius: 10px 10px 0px 0px;
        overflow: hidden;
    }

    .aboutmeimg {
        width: 100%;
        height: auto;
        margin: 0;
    }
    
    .abttextbox {
        margin-top: -10px;
        width: 100%;
        height: auto;
        background-color: rgba(27, 38, 23, 0.95);
        color: #FAF9F6;
        border-radius: 0 0 10px 10px;
        padding-bottom: 5vw;
    }
    
    .abttextbox p {
        font-size: 3vw;
        padding: 0 2vw 0 2vw;
        font-weight: 200;
        text-align: center;
    }

    .abttextbox h1 {
        text-align: center;
        margin: 0;
        padding: 40px 0px 0px 0px;
        font-size: 6vw;
    }
}
@media only screen and (min-width: 1030px) {
    .aboutme {
        margin: 5% 0 5% 0;
        padding: 2%;
        max-height: 60vh;
        background-image: url("images/aboutme.jpg");
        background-position: bottom 20% left 10%;
        background-size: cover;
        border-radius: 10px;
    }

    .aboutmeimg {
        width: 0;
        height: 0;
    }
    
    .abttextbox {
        margin-left: 8%;
        padding: 0px 30px 0px 30px;
        width: 30%;
        height: auto;
        background-color: rgba(0, 0, 0, 0.5);       
        color: #FAF9F6;
        border-radius: 10px;
        padding-bottom: 2vw;
    }
    
    .abttextbox p {
        font-size: 1.5vw;
        font-weight: 200;
    }
    
    .abttextbox h1 {
        margin-top: 0;
        padding: 20px 0px 0px 0px;
        font-size: 48px;
    }
}
/*END aboutme area*/

#Places {
    color:#FAF9F6;
    display: inline-block;
    background-color: #1B2617;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
    padding: 15px 30px 15px 30px;
    border-radius: 80px;
    margin-bottom: 0;
    font-size: 5vw;

}
/*START placeslist area */
@media only screen and (min-width: 0px) {
    .placeslistbox {
        display: grid;
        margin: 2% 12.5% 5% 12.5%;
        max-height: 500vh;
        overflow: hidden;
    }

    .placeslistbox li {
        padding: 3vw;
        font-weight: 100;
    }
    
    .itemlistbox1 {
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 5vw;
    }

    .itemlistbox1 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox1 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }

    .itemlistbox2 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox2 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }

    .itemlistbox3 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox3 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }

    .itemlistbox2 {
        grid-row: 1;
        grid-column: 1;
        height: 0;
        width: 0;
        font-size: 0;
    }

    .itemlistbox3 {
        grid-row: 1;
        grid-column: 1;
        height: 0;
        width: 0;
        font-size: 0;
    }
}
@media only screen and (min-width: 767px) {
    .placeslistbox {
        display: grid;
        margin: 2% 12.5% 5% 12.5%;
        max-height: 70vh;
        overflow: hidden;
    }

    .placeslistbox li {
        padding: 3vw;
        font-weight: 100;
    }
    
    .itemlistbox1 {
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 2vw;
    }

    .itemlistbox2 {
        grid-row: 1;
        grid-column: 2;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 2vw;
    }

    .itemlistbox3 {
        grid-row: 1;
        grid-column: 3;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 2vw;
    }
}
@media only screen and (min-width: 1030px) {
    .placeslistbox {
        display: grid;
        margin-bottom: 10vh;
        max-height: 1000vh;
        overflow: hidden;
    }

    .placeslistbox li {
        padding: 1.5vw;
        font-weight: 100;
        
    }

    .itemlistbox1 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox1 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }

    .itemlistbox2 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox2 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }

    .itemlistbox3 a {
        padding: 10px 15px 10px 15px;
        border-radius: 80px;
        transition: background-color 0.3s,color 0.3s;
    }

    .itemlistbox3 a:hover {
        background-color: #1B2617;
        color: #FAF9F6;
    }
    
    .itemlistbox1 {
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 1.5vw;
    }

    .itemlistbox2 {
        grid-row: 1;
        grid-column: 2;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 1.5vw;
    }

    .itemlistbox3 {
        grid-row: 1;
        grid-column: 3;
        width: 100%;
        height: auto;
        float: center;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
        font-size: 1.5vw;
    }
}


/*footer */
@media only screen and (min-width: 0px) {
    footer {
        display: grid;
        margin-top: 5%;
        color: #FAF9F6;
        background-color: #1B2617;
        max-height: 500px;
        padding: 0 10% 2% 10%;
        overflow: hidden;
        border-radius: 30px 30px 0px 0px;
    }

    .footerBrand {
        grid-row: 1;
        text-align: center;
        margin: 0;
        max-height: auto;
        color: #FAF9F6;
        font-size: 4vw;
    }

    .footerBrand h1 {
        transition: color 0.3s;
    }
    .footerBrand h1:hover {
        color: #B8BDB5
    }
    
    .footerbox1 {
        display: block;
        grid-row: 2;
        color: #FAF9F6;
        padding: 0vw;
        text-align: center;
        width: 100%;
        height: auto;
        list-style-type: none;
    }

    .footerbox1 li {
        display: inline;
        padding-top: 3vw;
    }

    .footerbox1 h5 {
        display: inline;
        color: #FAF9F6;
        width: auto;
        font-size: 0;
        transition: color 0.3s;
    }

    .footerbox1 h5:hover {
        color: #B8BDB5;
    }

    .footerbox1 a {
        padding: 10px;
        color: #FAF9F6;
        transition: color 0.3s;
    }

    .footerbox1 a:hover {
        color: #B8BDB5;
    }

    .footerbox2 {
        grid-row: 3;
        font-size: 3vw;
        text-align: center;
    }
}
@media only screen and (min-width: 767px) {
    footer {
        max-height: 1000px;
    }

    .footerBrand {
        grid-row: 1;
        font-size: 24px;
        max-height: auto;
        padding: 0;
    }

    .footerBrand h1 {
        transition: color 0.3s;
    }
    .footerBrand h1:hover {
        color: #B8BDB5
    }

    .footerbox1 {
        display: block;
        grid-row: 2;
        margin: 0;
    }

    .footerbox1 a {
        display: block;
        color: #1B2617;
        padding: 5px;
    }

    .footerbox1 a:hover {
        color: #1B2617;
    }

    .footerbox1 h5 {
        font-size: 15px;
        padding: 0;
    }

    .footerbox1 li {
        padding-top: 0;
    }

    .footerbox1 i {
        width: 0;
    }

    .footerbox2 {
        margin-top: 10px;
        text-align: center;
        font-size: 10px;
    }
}
