:root {
    --cyan: #e0ffff;
    --dark: #2f4f4f;
    --green: #25d366;
    --brown: #3e2723;
    --peach: #ffdab9;
    --azure: #99b5f7;
    --text: #eceefe;
}
* {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #ddd;
}
html {
    scroll-behavior: smooth;
}
.nav-container {
    background-color: var(--green);
    position: sticky;
    top: 0;
    z-index: 1;
}
.nav-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60px;
}
.nav-flex label,#hamberger {
    display: none;
}
.nav-container .nav-flex nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.nav-flex nav ul li a {
    text-decoration: none;
    display: block;
    color: var(--dark);
    padding: 0 16px;
    text-transform: uppercase;
    line-height: 60px;
    font-weight: bold;
}
.nav-flex nav ul li a:hover {
    background-color: var(--peach);
    transition: all 0.3s;
}
.brand h2 {
    margin: 14px 0 0 10px;
    color: var(--dark);
    text-transform: uppercase;
}
#hero-container {
    height: 100vh;
    background-image: url(../image/pexels-arthurbrognoli-2260933.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-hero {
    text-align: center;
    color: var(--text);
    font-size: 22px;
}
.text-hero p, a {
    text-transform: capitalize;
}
.text-hero p {
    font-size: 20px;
}
.text-hero hr {
    width: 23%;
    border: 1.5px solid var(--peach);
    margin-bottom: 50px;
}
.text-hero a {
    text-decoration: none;
    color: var(--text);
    background-color: var(--green);
    border-radius: 10px;
    padding: 8px;
    margin: 5px;
    margin-top: 30px;
    font-size: 18px;
}
.text-hero a:hover {
    background-color: var(--cyan);
    color: var(--dark);
    transition: all 0.5s;
}
main {
    width: 80%;
    margin: auto;
}
#about-us {
    margin-top: 80px;
    width: 100%;
}
.deskripsi-about {
    text-align: center;
    color: var(--dark);
}
.deskripsi-about p {
    font-size: 18px;
}
.about-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 30px auto;
    padding: 20px auto;
}
.img-about, .text-img {
    width: 50%;
    margin: 15px;
}
.text-img {
    line-height: 24px;
    color: var(--dark);
}
.img-about img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
#testimoni {
    width: 100%;
    margin-top: 80px;
}
.deskripsi-test {
    text-align: center;
    color: var(--dark);
}
.deskripsi-test p {
    font-size: 18px;
}
.testi-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}
.testi-item {
    width: 25%;
    margin: 10px;
    text-align: center;
    box-shadow: 0.1px 1px 1.1px 1.1px var(--cyan);
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.testi-item img {
    width: 50%;
    height: auto;
    border-radius: 50%;
}
.testi-item h4 {
    font-size: 16px;
    color: var(--dark);
}
.testi-item q {
    font-size: 14px;
    color: var(--dark);
}
.icon-testimoni {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    justify-items: center;
    margin: 20px auto;
}
.icon-item {
    width: 25%;
    text-align: center;
    padding: 12px;
    margin: 10px;
    box-shadow: 0px 0px 20px -10px;
    border-radius: 10%;
    transition: transform 0.5s ease;
}
.icon-item:hover {
    transform: scale(1.1);
}
.icon-item .fab, .fas {
    color: var(--green);
}
.tittle-icon {
    margin: 10px 0 5px 0;
    font-weight: bold;
}
.icon-item p {
    font-size: 15px;
}
.icon-testimoni h2 {
    line-height: 80px;
}
.icon-testimoni span {
    font-size: 18px;
}
#service {
    width: 100%;
    padding-left: 12px;
    color: var(--dark);
}
#service p {
    font-size: 18px;
}
.garis hr {
    width: 20%;
    border: 1px solid var(--green);
    margin-right: 80%;
}
.title-catalog {
    margin-top: 80px;
    text-align: center;
    color: var(--dark);
}
.title-catalog p {
    font-size: 18px;
}
.catalog-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    flex-flow: row wrap;
}
.item-catalog {
    width: 25%;
    text-align: center;
    margin: 2px;
    box-shadow: 0 0 20px -10px var(--green);
    border-radius: 5px;
    padding: 20px 10px;
    
}
.item-catalog p {
    font-size: 15px;
    color: var(--dark);
    line-height: 25px;
}
.item-catalog h4 {
    color: var(--dark);
}
.item-catalog img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.5s ease;
}
.item-catalog img:hover {
    opacity: 0.7;
    cursor: pointer;
}
.price-tag {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin: 45px 0 5px 0;
}
.price-produk span {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark);
}
.tag-produk a button {
    border-radius: 4px;
    border: none;
    padding: 5px;
    font-weight: bold;
    background-color: var(--green);
    color: var(--cyan);
}
.tag-produk a button:hover {
    background-color: var(--dark);
    transition: all 0.3s;
    cursor: pointer;
}
.garis2 hr {
    width: 50%;
    border: 2px solid;
}
.title-galeri {
    margin-top: 80px;
    color: var(--dark);
    text-align: center;
}

.title-galeri p {
    font-size: 18px;
}
.galeri-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 30px auto;
    flex-flow: row wrap;
}
.item-galeri {
    width: 30%;
    margin: 15px;
}
.item-galeri img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.item-galeri img:hover {
    cursor: pointer;
    transform: scale(1.1);
    opacity: 0.8;
}
.footer {
    margin-top: 100px;
    background-color: rgb(80, 112, 140);
    padding: 1px;
    color: #ddd;
}
.display-footer {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: space-between;
}
.display-footer section {
    text-align: center;
    width: 25%;
    padding: 5px;
}
.display-footer section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.display-footer section ul li a {
    text-decoration: none;
    color: #ddd;
}
.display-footer section ul li a:hover {
    text-decoration: underline;
}
.copyright {
   display: flex;
   justify-content: space-evenly;
   width: 50%;
   margin: 20px auto;
}
.copyright a {
    text-decoration: none;
    color: var(--text);
    padding: 2px;
}
.copyright a:hover {
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .nav-container .nav-flex label {
        display: inline-block;
        color: var(--dark);
        font-style: normal;
        font-size: 32px;
        padding: 8px;
    } 
    .nav-container .nav-flex {
        width: 100%;
        height: auto;
    }
    .nav-flex nav ul {
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
    }
    .nav-flex nav ul li a {
        display: block;
        color: var(--dark);
        background-color: var(--cyan);
        padding: 0 30px;
        height: auto;
    }
    .brand h2 {
        position: absolute;
        right: 20px;
    }
    .nav-container .nav-flex nav {
        display: none;
    }
    .nav-container .nav-flex input:checked ~ nav {
        display: flex;
    }
    .img-about, .text-img {
        width: auto;
    }
    .about-flex {
        flex-direction: column;
    }
    .testi-item {
        width: 100%;
        height: auto;
        margin: 20px;
    }
    .testi-flex {
        flex-direction: column;
    }
    #service {
        text-align: center;
        width: 100%;
    }
    .garis hr {
        margin-right: 29%;
        width: 40%;
    }
    .icon-testimoni {
        flex-direction: column;
    }
    .icon-item {
        width: 100%;
    }
    .item-catalog {
        width: 100%;
    }
    .item-galeri {
        width: 30%;
    }
    .item-galeri img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .display-footer section {
        width: 100%;
    }
    .display-footer {
        padding: 20px 10px;
    }
    .text-hero {
        padding: 20px 10px;
    }
    .copyright {
        width: 100%;
    }
}