/* ==========================
   RyrkinStore Style
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#8b0000;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#c40000;
}

/* ==========================
Particles
========================== */

#particles{
    position:fixed;
    inset:0;
    z-index:-2;
}

/* ==========================
Header
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#ff2d2d;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:18px;
}

nav a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:.3s;
    padding:10px 16px;
    border-radius:10px;
}

nav a:hover{
    background:#8b0000;
}

/* ==========================
Hero
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.banner{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomHero 18s linear infinite alternate;
}

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

.overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:rgba(0,0,0,.45);
    padding:20px;
}

.overlay h1{
    font-size:62px;
    margin-bottom:20px;
    color:#fff;
    text-shadow:0 0 25px rgba(255,0,0,.5);
}

.overlay p{
    max-width:750px;
    color:#ddd;
    font-size:18px;
    margin-bottom:35px;
}

/* ==========================
Button
========================== */

.btn{
    display:inline-block;
    padding:14px 32px;
    background:#8b0000;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:14px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#b30000;
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,0,0,.45);
}

/* ==========================
Social
========================== */

.social{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    padding:80px 20px;
}

.card{
    width:220px;
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:30px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(255,0,0,.35);
}

.card i{
    font-size:48px;
    color:#ff2d2d;
    margin-bottom:15px;
}

.card span{
    display:block;
    font-size:18px;
    font-weight:600;
}

/* ==========================
Our Service
========================== */

.menu{
    padding:100px 20px;
    text-align:center;
}

.menu h2{
    font-size:42px;
    margin-bottom:15px;
}

.menu p{
    max-width:700px;
    margin:0 auto 35px;
    color:#bbb;
    font-size:17px;
}

/* ==========================
STATS
========================== */

.stats{
    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(255,0,0,.35);
}

.stat-box h1{
    font-size:50px;
    color:#ff2d2d;
    margin-bottom:10px;
}

.stat-box p{
    color:#bbb;
    font-size:17px;
}

/* ==========================
WHY US
========================== */

.why{
    padding:100px 8%;
    text-align:center;
}

.why h2{
    font-size:42px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#111;
    border-radius:20px;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(255,0,0,.35);
}

.why-card h3{
    color:#ff2d2d;
    margin-bottom:18px;
    font-size:24px;
}

.why-card p{
    color:#bdbdbd;
}

/* ==========================
FAQ
========================== */

.faq{
    padding:100px 8%;
}

.faq h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.faq-box{
    margin-bottom:20px;
    overflow:hidden;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.08);
}

.faq-btn{
    width:100%;
    padding:20px;
    background:#111;
    color:#fff;
    border:none;
    text-align:left;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.faq-btn:hover{
    background:#181818;
}

.faq-content{
    display:none;
    background:#191919;
    padding:20px;
    color:#bbb;
}

/* ==========================
TESTIMONIAL
========================== */

.testimonial{
    padding:100px 8%;
    text-align:center;
}

.testimonial h2{
    font-size:42px;
    margin-bottom:40px;
}

.slider{
    max-width:700px;
    margin:auto;
}

.slide{
    display:none;
    background:#111;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.slide.active{
    display:block;
    animation:fade .5s;
}

.slide h3{
    color:#ffd700;
    margin-bottom:20px;
}

.slide p{
    color:#ddd;
    margin-bottom:20px;
}

.slide h4{
    color:#ff2d2d;
}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
PORTFOLIO
========================== */

.portfolio{
    padding:100px 8%;
    text-align:center;
}

.portfolio h2{
    font-size:42px;
    margin-bottom:15px;
}

.portfolio p{
    color:#bbb;
    margin-bottom:45px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:#111;
    cursor:pointer;
    transition:.35s;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(255,0,0,.35);
}

.gallery-item img{
    width:100%;
    display:block;
    transition:.45s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ==========================
LIGHTBOX
========================== */

#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
    box-shadow:0 0 40px rgba(255,0,0,.4);
}

/* ==========================
ORDER TRACKER
========================== */

.tracker{
    padding:100px 8%;
    text-align:center;
}

.tracker h2{
    font-size:42px;
    margin-bottom:15px;
}

.tracker p{
    color:#bbb;
}

.tracker-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.tracker-box input{
    width:350px;
    max-width:100%;
    padding:15px 20px;
    border:none;
    outline:none;
    border-radius:15px;
    background:#111;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
}

.coming{
    margin-top:25px;
    color:#888;
}

/* ==========================
PAYMENT
========================== */

.payment{
    padding:120px 8%;
    text-align:center;
}

.payment-card{
    max-width:700px;
    margin:auto;
    padding:35px;
    background:#111;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.qris{
    width:280px;
    max-width:100%;
    border-radius:15px;
    margin:25px 0;
}

.payment textarea{
    width:100%;
    min-height:260px;
    margin:25px 0;
    background:#181818;
    color:#fff;
    border:none;
    outline:none;
    resize:none;
    border-radius:15px;
    padding:18px;
    font-family:Poppins,sans-serif;
}

.payment input[type=file]{
    width:100%;
    margin:20px 0;
    color:#fff;
}

#statusUpload{
    color:#aaa;
    margin-bottom:20px;
}

/* ==========================
FOOTER
========================== */

footer{
    padding:35px;
    text-align:center;
    background:#080808;
    color:#777;
    border-top:1px solid rgba(255,255,255,.05);
}

/* ==========================
FLOATING WHATSAPP
========================== */

.wa-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 0 25px rgba(37,211,102,.5);
    transition:.3s;
    z-index:999;
}

.wa-float:hover{
    transform:scale(1.1);
}

/* ==========================
BACK TO TOP
========================== */

#topBtn{
    position:fixed;
    right:25px;
    bottom:105px;
    width:55px;
    height:55px;
    background:#8b0000;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
    z-index:998;
}

#topBtn:hover{
    transform:scale(1.1);
}

/* ==========================
POPUP
========================== */

.popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:flex;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(8px);
    z-index:99999;
}

.popup-box{
    width:480px;
    max-width:92%;
    background:#111;
    border-radius:20px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    animation:popup .4s;
}

.popup-box h2{
    margin-bottom:20px;
}

.popup-box p{
    color:#ccc;
    margin-bottom:30px;
    line-height:1.8;
}

@keyframes popup{

    from{
        opacity:0;
        transform:scale(.8);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* ==========================
LOADER
========================== */

#loader{
    position:fixed;
    inset:0;
    background:#050505;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.loader-logo{
    font-size:42px;
    color:#ff2d2d;
    font-weight:700;
    animation:pulse 1.2s infinite;
}

@keyframes pulse{

    50%{
        transform:scale(1.1);
    }

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:900px){

header{
    padding:15px 20px;
}

nav{
    gap:8px;
}

nav a{
    font-size:14px;
    padding:8px 10px;
}

.overlay h1{
    font-size:42px;
}

.overlay p{
    font-size:16px;
}

.menu h2,
.stats h2,
.why h2,
.faq h2,
.testimonial h2,
.portfolio h2,
.tracker h2{
    font-size:32px;
}

.gallery{
    grid-template-columns:1fr;
}

}

@media(max-width:600px){

.logo{
    font-size:22px;
}

header{
    flex-direction:column;
    gap:15px;
}

.social{
    padding:60px 15px;
}

.card{
    width:100%;
}

.btn{
    width:100%;
}

.overlay h1{
    font-size:34px;
}

.overlay p{
    font-size:15px;
}

.payment-card{
    padding:20px;
}

.tracker-box input{
    width:100%;
}

.wa-float{
    width:58px;
    height:58px;
    font-size:28px;
}

#topBtn{
    width:50px;
    height:50px;
}

}

/* ==========================
ANIMATION
========================== */

section{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

table{

width:100%;

border-collapse:collapse;

margin-top:25px;

}

th,td{

padding:15px;

border:1px solid rgba(255,255,255,.1);

text-align:center;

}

th{

background:#8b0000;

}

td{

background:#111;

}

.action{

display:flex;

justify-content:center;

gap:10px;

}

.small-btn{

padding:8px 15px;

border:none;

border-radius:8px;

cursor:pointer;

background:#8b0000;

color:white;

}