@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Main Colors */
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --accent-color: #03A9F4;
    
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #FFFFFF;
    
    /* Link Colors */
    --link-color: #1976D2;
    --link-hover: #1565C0;
    --link-active: #0D47A1;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-accent: #E3F2FD;
    
    /* Border Colors */
    --border-color: #EEEEEE;
    --border-focus: #BBDEFB;
    
    /* Status Colors */
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --info-color: #2196F3;
}


*{
    margin: 0; padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
body{
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 18px;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.container-sm{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.spacer3rem{
    display: block;
    margin-top: 5rem;
}
.centered{
    text-align: center;
}

/* Header Css */
.header{
    width: 100%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0 10px 0;
    background-color: var(--bg-primary);
}
.header_inner{
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logoUri{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}
.logoImg{
    width: auto;
    height: 35px;
}
.logoText{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.navUl{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
#menuOpen{
    display: none;
}
.navUl li{
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    height: max-content;
}
.navUl li a{
    color: var(--text-primary);
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.abutton{
    background-color: var(--link-color);
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease-in-out;
    margin-left: 3rem;
}
.abutton:hover{
    background-color: var(--link-active);
}
.navUl li a:hover{
    color: var(--link-active);
}

/* flexboxMenu */
.flexBox{
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background-color: var(--primary-color);
    padding: 20px;
    transition: all 5s ease-in-out;
}
.flexBox.active{
    display: block;
}
#menuClose{
    display: block;
}
#menuClose svg{
    width: 30px;
    height: 30px;
    fill: var(--bg-accent);
}
.menuFlex{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}
.menuFlex li{
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    height: max-content;
}
.menuFlex li a{
    color: var(--text-light);
    transition: all .2s ease-in-out;
    text-decoration: none;
}

/* Menu Content QR Boxs */
.qrContent{
    width: 100%;
    max-width: 1000px;
    padding: 10px;
    background-color: #eaeaec;
    margin: 3rem auto 0 auto;
    border-radius: 7px;
}
.qrHeader{
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
}
.qrMenu{
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.qrMenu:hover{
    background-color: rgba(39, 162, 189, 0.3);
}
.qrMenu.active{
    background-color: rgba(39, 162, 189, 0.3);
}
.qrMenu svg{
    border: 1px solid var(--link-color);
    border-radius: 5px;
    padding: 4px;
    fill: var(--link-color);
}
.qrGrid{
    background-color: #fff;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 10px;
    border-radius: 7px;
}
.roms3{
    font-size: 14px;
    font-weight: 500;
    padding: 20px;
}
.spantop{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
}
.numb{
    background-color: var(--text-primary);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    border-radius: 3px;
}
.text{
    font-weight: 700;
}
.inputUrl, .inputUrl input, .urlabel{
    display: block;
    margin-bottom: .8rem;
}
.urlabel{
    font-weight: 400;
    color: var(--text-secondary);
}
.inputUrl input{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--accent-color);
    outline: none;
    font-size: 16px;
    color: var(--text-primary);
    box-sizing: border-box;
}
.inputUrl input:focus{
    border: 1px solid var(--link-active);
}
.inputUrl button{
    cursor: pointer;
    border: none;
    background-color: var(--link-color);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-light);
}
.garis{
    border: 1px solid rgba(39, 162, 189, 0.3);
    margin-bottom: 2rem;
}
.fChosing{
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    border-radius: 7px;
    margin-bottom: 10px;
    gap: 4px;
}
.choose{
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.choose:hover{
    background-color: rgba(39, 162, 189, 0.3);
}
.choose.active{
    background-color: rgba(39, 162, 189, 0.3);
}
.ssContoh{
    width: 100%;
    height: auto;
    border: 1px solid rgba(39, 162, 189, 0.3);
    border-radius: 5px;
    box-shadow: 3px 3px 3px rgba(39, 162, 189, 0.3);
}

.roms1{
    position: relative;
    background-color: #eaeaec;
    padding: 10px;
    border-radius: 7px;
    height: 100%;
    box-sizing: border-box;
}
.roms1 .spantop{
    justify-content: center;
    margin-top: 1rem;
}
.resulqr{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: 200px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(39, 162, 189, 0.3);
}
.resulqr #resilqrcode{
    width: 100%;
    height: auto;
}
.download-button{
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--link-color);
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.sectionTitle{
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 2rem;
}
.theContent p{
    font-weight: 300;
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 25px;
}

/* How To use */
.gridHow{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.steps {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepImage {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 3px 3px 3px rgba(39, 162, 189, 0.3);
}

.theNumbs {
    z-index: 8;
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--text-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.dataContent{
    display: block;
    text-align: left !important;
}
.titleCard{
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.7rem;
}
.dataContent p{
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
}
.howAction{
    cursor: pointer;
    border: none;
    background-color: var(--link-color);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-light);
    text-decoration: none;
}

/* FAQs Css */
.faqsContainer{
    background-color: #eaeaec;
    border-radius: 7px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faqItem{
    background: #fff;
    padding: 20px;
    border-radius: 7px;
}
.faqHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-color);
}
.faqHeader h3{
    color: var(--text-primary);
    font-size: 18px;
}
.faqToggle{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: var(--text-light);
    cursor: pointer;
}
.faqContent{
    font-weight: 300;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
    display: none;
}
.mailItem{
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Page css */
.thePageQR {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #eaeaec;
    border-radius: 7px;
    margin: 20px auto;
    max-width: 800px;
}
.pageHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-color);
}
.pageHeader h2{
    color: var(--text-primary);
    font-size: 24px;
}
.pageContent{
    font-weight: 300;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
}
.pageContent p, .pageContent h1, .pageContent h2, .pageContent h3, .pageContent h4, .pageContent h5, .pageContent h6, .pageContent ul, .pageContent ol, .pageContent li {
    margin-bottom: 1.5em;
}
.pageContent p img,
.pageContent p a img{
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Halaman post */
.blogPost{
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.posts_loop{
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.posts_loop article{
    display: block;
}
.permalinkh{
    text-decoration: none;
    color: var(--link-color);
}
.headingPost{
    font-size: 25px;
    line-height: 2;
    font-weight: 600;
}
.card{
    display: flex;
    gap: 1rem;
    font-size: 16px;
    font-weight: 100;
}
.autext{
    color: var(--link-color);
    font-weight: 400;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .qrGrid{
        grid-template-columns: 1fr;
    }
    .roms1{
        height: 400px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .header{
        padding: 10px 0 5px 0;
    }
    .logoImg{
        height: 30px;
    }
    .logoText{
        font-size: 20px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .navUl{
        display: none;
    }
    #menuOpen{
        display: block;
    }
    #menuOpen svg{
        width: 35px;
        height: 35px;
        fill: var(--primary-color)
    }
    .qrHeader{
        grid-template-columns: 1fr;
    }
    .qrMenu{
        display: none;
    }
    .qrMenu.active{
        display: flex;
        gap: 6px;
    }
    .fChosing{
        grid-template-columns: 1fr;
    }
    .choose{
        display: none;
    }
    .choose.active{
        display: block;
    }
    .gridHow{
        grid-template-columns: 1fr;
    }
    .steps{
        margin-bottom: 1rem;
    }
    .faqsContainer{
        padding: 0;
        background-color: #fff;
    }
    .faqHeader{
        display: grid;
        grid-template-columns: auto 40px;
        gap: 1rem;
    }
    .faqHeader h3{
        color: var(--text-primary);
        font-size: 16px;
    }
}
