*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
html, body{
    background-color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    padding: 0.2px 20px;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.navigation-container{
    height: 148px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    letter-spacing: -1.5px;
}
.logo{
    font-size: 30px;
    font-weight: 500;
}

/* nav fixed */
nav ul{
    /* border: 2px solid black; */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    gap: 27px;
    font-weight: bold;
    font-size:  clamp(2px, 20px ,1.4rem);
    padding: 5px 20px;
    position: fixed;
    width: 50%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: 9999;
    backdrop-filter: blur(20px); /* Efek blur */
    text-wrap: nowrap;
}
nav ul li a{
    color: #000000;
}
.navigation-container button{
    background-color: #485C11;
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
}
.fa-arrow-down{
    margin-left: 5px;
    transform: rotate(230deg);
    transition: transform 0.5s;
}
.navigation-container button:hover{
    opacity: 0.7;
}
.navigation-container button:hover .fa-arrow-down{
     transform: rotate(230deg) translateY(7px);
}
.hamburger-menu{
    display: none;
}
/* Hero section */
.hero-section{
    font-family: "Crimson Text", serif;
    text-align: center;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.hero-section h1{
    font-size: clamp(3rem, 9vw, 10rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.0425em;
    margin-bottom: clamp(2rem, 5vw, 5rem);
}
.img{
    width: 100%;
}
.img img{
    border: 10px solid rgb(18, 18, 18);
    border-bottom: none;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    position: relative;
    display: block;
    margin: 0 auto;
    width: 70%;
    height: 70%;
    object-fit: cover;
}
.img-bg{
    background-color: #8E9C78;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 50%;
    border-radius: 20px;
}
.sponsor{
    padding: 2rem 0;
}
.sponsor p{
    margin-bottom: 1rem;
    font-size: 1rem;
    color: darkgray;
}
.sponsor-item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.benefit{
    font-family: "Roboto Mono", monospace;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.benefit h2{
    font-size: 1rem;
    color: darkgray;
}
.benefit h2 + p{
    font-family: "Crimson Text", serif;
    font-size: 3.5rem;
    color: black;
    letter-spacing: -0.0425em;
    font-weight: 100px;
}
.benefit p{
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    color: darkgray;
}

.things-container{
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}
.things-item{
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.things-item img{
    width: 21px;
}
.things-item h3{
    font-family: "Crimson Text", serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.033rem;
}
.things-item p{
    color: #6F6F6F;
    text-align: justify;
}
.img-banner{
    margin-bottom: 4rem;
}
.img-banner img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
.feature-container{
    display: flex;
    justify-content: center ;
    gap: 40px;
    counter-reset: feature-content;
}
.feature-content{
    counter-increment: feature-content 0;
    counter-reset: feature-content-counter;
}
.feature-content h1{
    font-family: "Crimson Text", serif;
    font-weight: 500;
    letter-spacing: -0.033rem; /* -0.3% */
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: 3.6rem;
}
.feature-content h1 + p{
    font-size: 1rem;
    color: #6F6F6F;
    margin-bottom: 40px;
}
.feature-content p{
    letter-spacing: -0.005rem; /* -0.5% */
    text-align: justify;
}
.feature-content-counter{
    padding: 20px 80px 20px 0;
    display: flex;
    gap: 30px;
}
p.feature-content-counter{
    counter-increment: feature-content-counter;
}

p.feature-content-counter::before{
    content: counter(feature-content)counter(feature-content-counter);
    color: #6F6F6F;
    letter-spacing: -0.005rem; /* -0.5% */
}
.discover{
    margin-top: 40px;
    padding: 15px 15px;
    border-radius: 1000px;
    cursor: pointer;
    background-color: #DFECC6;
    border: none;
    font-weight: 600;
    box-shadow: 0px 4px 10px #ddd;
    transition: background-color 500ms;
}
.discover:hover{
    background-color: #485C11;
    opacity: 0.7;
    color: white;
}
.reason-container{
    margin-top: 80px;
    width: 100%;
}
.why{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 10px;
}
.why .specs-label{
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    letter-spacing: -0.001rem;
    color: #485C11;
    font-weight: 500;
}
.why h1{
    text-align: center;
    font-family: "Crimson Text", serif;
    font-size: 4.2rem;
    letter-spacing: -0.126rem;
    font-weight: 500;
}
.why p{
    font-size: 1rem;
    text-align: center;
    letter-spacing: -0.005rem; /* -0.5% */
    font-weight: 400;
    color: #6F6F6F;
}
.reason-container table{
    border-collapse: collapse;
    border: none;
    margin: 0 auto;
    width: 100%;
}
.reason-container table tbody tr i{
    margin-right: 1.5rem;
}
.reason-container table thead tr th{
    padding: 40px 30px;
}
.reason-container table tbody tr td{
    padding: 32px 30px;
}
.reason-container table thead tr th{
    border-right: 1px solid #ddd;
    border-bottom: 2px solid black;
}
.reason-container table thead tr th:last-child{
    border-right: none;
}
.reason-container table tbody tr td{
    border: 1px solid #ddd;
}
.reason-container table tbody tr td:first-child{
    border-left: none;
}
.reason-container table tbody tr td:last-child{
    border-right: none;
}
.reason-container table thead tr th{
    font-size: 1.7rem;
    letter-spacing: -0.136rem;
    font-weight: 500;
    color: black;
}
.area{
    font-family: "DM Sans", sans-serif;
}
.reason-container table thead tr .area + th{
    font-family: "Rethink Sans", sans-serif;
    color: #6F6F6F;
}
.reason-container table thead tr th:last-child{
    font-family: "Reddit Mono", monospace;
    color: #6F6F6F;
}
.reason-container table tbody tr td{
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    letter-spacing: -0.01rem;
}
.comments-container{
    margin-top: 50px;
    padding-bottom: 120px;
    display: flex;
    gap: 20px;
}
.comments{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    padding-left: 50px;
}
.comments h2{
    font-family: "Crimson Text", serif;
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
    font-weight: 500;
}
.comments-author p:last-child{
    font-family: "Roboto Mono", monospace;
    color: #485C11;
}
.comments-author p{
    margin-bottom: 8px;
}

.map-container{
    max-width: 100%;
    counter-reset: map 0;
    padding: 80px 0px 120px 0px;
}
.head-of-map{
    display: flex;
    justify-content: space-between;
}
.head-of-map h1{
    font-family: "Crimson Text", serif;
    font-weight: 500;
    font-size: 3.5rem;
    letter-spacing: -0.175rem;
}
.point-of-map-container{
    counter-increment: map 0;
    counter-reset: map-content 0;
    display: flex;
    justify-content:space-between;
    
}
.point-of-map{
    counter-increment: map-content;
    padding: 60px 30px 20px 0px;
    width: 390px;
    height: 300px;
}
.map-counter{
    margin-bottom: 60px;
}
.map-counter::before{
    content: counter(map) counter(map-content);
    font-size: 5rem;
    color: #929292;
    letter-spacing: -0.2rem;
}
.point-of-map h3{
    font-family: "Crimson Text", serif;
    font-weight: 550;
    font-size: 1.5rem;
    letter-spacing: -0.045rem;
    margin-bottom: 20px;
}
.point-of-map p{
    color: #6F6F6F;
}


.maps{
    padding-bottom: 40px;
}
.maps img{
    width: 100%;
    border-radius: 40px;
    background-repeat: no-repeat;
}


.contact-us-container{
    padding: 120px 500px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    box-sizing: border-box;
}
.contact-us-container p{
    color: #6F6F6F;
    text-align: center;
}
.contact-us-container p:first-child{
    font-family: "Crimson Text", serif;
    font-size: 4.3rem;
    letter-spacing: -0.129rem;
    color: #000000;

}
.contact-us-container button{
    background-color: #485C11;
    color: #FFFFFF;
    padding: 15px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
}
.contact-us-container button:hover{
    opacity: 0.7;
}
.contact-us-container button:hover .fa-arrow-down{
     transform: rotate(230deg) translateY(7px);
}
/* Footer */
footer{
    border-top: 2px solid #ddd;
    margin-top: 30px;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}
footer ul{
    display: flex;
    gap: 27px;
}
footer ul li a{
    color: black;
    font-size: 1rem;
    font-weight: 600;
}
.copyright{
    font-family: "Roboto Mono", monospace;
    color: #485C11;
    font-size: .75rem;
    display: flex;
    justify-content: space-between;
}
.copyright div a{
    font-family: "Roboto Mono", monospace;
    color: #485C11;
}



/* Responsive Breakpoints */
/* Tablet */
@media screen and (max-width: 1042px) {
    .hero-section h1{
        font-size: 7rem;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .navigation-container{
        width: 100%;
    }
    nav{
        display: none;
    }
    .navigation-container button{
        display: none;
    }
    .hamburger-menu{
        display: block;
    }
    .things-container{
        grid-template-columns: repeat(2, 1fr);
  
    }
    .feature-container{
        flex-direction: column;
    }
    .hero-section .img img{
        content: url(img/hero-img/InnerscreenTablet.jpg);
    }
    .img-banner img{
        content: url(img/Hero\ Image-tablet.jpg);
    }
    .product-img img{
        content: url(img/feautures/Features-carousel-tablet.jpg);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .comments-container{
        flex-direction: column;
    }
    .comments-img img{
        content: url(img/comments/Image-tablet.jpg);
        width: 100%;
    }
    .comments{
    padding-left: 0px;
    } 
    .contact-us-container{
        padding: 120px 100px;
    }
    .maps img{
        content: url(img/section-map-img/ImageTablet.jpg);
    }
}

/* Mobile */
@media screen and (max-width: 784px){
    /* body{
        background-color: blue;
    } */
    .hero-section .img img{
        content: url(img/hero-img/InnerscreenMobile.jpg);
        border-top-right-radius: 60px;
        border-top-left-radius: 60px;
    }
    .img-banner img{
        content: url(img/Hero\ Image-mobile.jpg);
    }
    .product-img img{
        content: url(img/feautures/Features-carousel-mobile.jpg);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .comments-img img{
        content: url(img/comments/Image-mobile.jpg);
    }

    /* Footer */
    footer ul{
        flex-direction: column;
    }
    .copyright{
    display: block;
    }
    .copyright div{
        text-wrap: wrap;
    }
    .head-of-map{
        flex-direction: column;
    }
    .point-of-map-container{
        flex-direction: column;
    }
    .map-counter::before{
        font-size: 3rem;
    }
    .point-of-map{
    width: 100%;
    height: 300px;
    }
    .maps img{
        content: url(img/section-map-img/ImageMobile.jpg);
    }
    .contact-us-container{
        padding: 120px 16px;
    }
}