:root {
    --red: #cc0002;
    --dark: #2f4f4f;
    --abu: #d8bebe;
    --green: #25d366;
    --gold: #e6da19;
}
* {
     margin: 0px;
    padding: 0px;
    font-family: poppins;
    box-sizing: border-box;
   
}

a{
    text-decoration: none;

}
#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.testimonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding:  10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial-heading h1 {
    font-size: 2.2rem;
    font-weight: 500;
    background-color: #202020;
    color: #ffffff;
    padding: 10px 20px;
}
html,body {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#nav-container {
    background-color: black;
    position: sticky;
    top: 0px;
}
.nav-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60px;
}
.nav-flex label, #humberger {
    display: none;
}
nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0; 
}
nav ul li a {
    display: block;
    color:var(--gold);
    padding: 0 16px ;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 60px;
}
nav ul li a:hover {
    background-color: var(--gold);
    color: black;
    transition: 0.3s;
}
.nav-brand h2 {
    margin: 14px 0 0 10px;
    color: var(--gold);
}
#hero-container {
    background-image: url(../image/boslp040.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed !important;
}
.text {
    text-align: center;
    color: white;
    font-size: 24px;
}
.button {
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    background-color: var(--gold);
    padding: 10px;
    color: black;
    font-size: 32px;
    border-radius: 10px;
}
.button:hover {
    background-color: black;
    color: var(--gold);
}
main {
    width: 80%;
    margin: auto;
}
#about .about-deskripsi {
    text-align: center;
    color: black;
}
.about-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 30px auto;
}
/* bagian about*/
#about h1 {
    color: black;
    text-align: center;
    margin-top: 80px;
}
.about-image, about-text {
    width: 50%;
    margin: 14px;
}
.about-image img {
    width: 100%;
    object-fit: cover;
}
/* services */
#services h1 {
    color: black;
    text-align: center;
    margin-top: 80px;
}
#services .services-deskripsi {
    text-align: center;
    color: black;
}
.services-flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto;
}
.services-items {
    width: 25%;
    text-align: center;
    padding: 20px 10px;
}
.services-items .fas {
    color: var(--gold);
}
/* catalog */
#catalog h1 {
    color: black;
    text-align: center;
    margin-top: 80px; 
}
#catalog .catalog-deskripsi {
    text-align: center;
    color: black;
}
.catalog-flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
}
.catalog-items {
    width: 25%;
    text-align: center;
    padding: 20px 10px;
}
.catalog-items img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.catalog-items h3 {
    font-size: 18px;
    margin: 10px 0;
    color: black;
}
.catalog-items p {
    font-size: 14px;
    color: black;
}
.price-chat-container {
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
    padding: 5px;
}
.price-harga span {
    font-size: 14px;
    font-weight: bold;
    color: black;
}
.chat-button button {
     background-color: var(--gold);
     color: black;
     border: none;
     padding: 5px;
     font-size: 12px;
     cursor: pointer;
     border-radius: 10px;
}
.chat-button button:hover {
    background-color: black;
    color: var(--gold);
}
/* Game Gacor */
#gacor h1 {
    color: black;
    text-align: center;
    margin-top: 80px;
}
#gacor .gacor-deskripsi  {
    color: black;
    text-align: center;
}
.gacor-flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px auto;
}
.gacor-items {
    width: 25%;
    padding: 5px;
}
.gacor-items img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}
/* footer */
.fixed-footer {
    display: flex;
    justify-content: space-around;
    position: fixed;
    background: linear-gradient(to bottom, #000 0%, #000 50%, #000 100%);
    padding: 5px 0;
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0 0 8px 4px #ffd700;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    
    }
    .fixed-footer a {
        flex-basis: calc((100% - 15px*6)/ 5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--gold);
        max-width: 75px;
        font-size: 12px;
        text-decoration: none;
        }
        
        .fixed-footer .center {
        transform: scale(1.5) translateY(-5px);
        background: center no-repeat;
        background-size: contain;
        background-color: inherit;
        border-radius: 50%
        }
        
        .fixed-footer amp-img {
        max-width: 30%;
        margin-bottom: 5px
        }
/* versi tablet */
@media screen and (max-width:768px) {
    /* tampilkan icon humberger */
    #nav-container .nav-flex label {
        display: inline-block;
        color: var(--gold);
        font-style: normal;
        font-size: 32px;
        padding: 8px;
    }
    /* susun ulang menu dari vertikal menjadi horizontal */
    #nav-container .nav-flex {
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    }
    nav ul li a {
        display: block;
        color: var(--dark);
        background-color: var(--gold);
        padding: 0 30px;
        height: auto;
    }
    /* pindahkan posisi brand kekanan, dan perkecil */
    .nav-brand h2 {
    position: absolute;
    right: 20px;
}
/* Untuk menampilkan/menyembunyikan menu */
#nav-container nav {
    display: none;
}
#nav-container .nav-flex input:checked ~ nav {
    display: flex;
}
/* about */
.about-flex {flex-direction: column;
}
.about-image,.about-text {
    width: auto;
}
/* services our features */
.services-items {
    width: 50%;
}
/* catalog */
.catalog-items {
    width: 50%;
}
/* gacor */
.gacor-items {
    width: 30%;
}
}
/* versi Handphone */
@media screen and (max-width:481px) {
    .services-items {
        width: 100%;
    }
    #hero-container {
        background-image: url(../image/bos41phone.jpg);
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-attachment: fixed !important;
    }
    .catalog-items {
        width: 100%;
    }
    /* gacor */
.gacor-items {
    width: 100%;
}
}