@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Poppins:wght@300;400;500;600&display=swap');

:root{
    --bg:#050505;
    --card:#0e0e0e;
    --text:#ffffff;
    --gold:#d4af37;
    --gold2:#f6d67a;
    --muted:#b8b8b8;
}

body.light{
    --bg:#fafafa;
    --card:#ffffff;
    --text:#111;
    --gold:#c89a1e;
    --gold2:#e6c363;
    --muted:#666;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    transition:.4s;
}

.hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.hero-content{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.hero-left{
    flex:1;
    animation:fadeUp 1s ease;
}

.badge{
    display:inline-block;
    padding:12px 20px;
    border:1px solid rgba(212,175,55,.3);
    border-radius:50px;
    color:var(--gold);
    margin-bottom:25px;
}

.hero-left h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-left p{
    max-width:650px;
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );
    color:#000;
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    border:1px solid var(--gold);
    color:var(--gold);
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
}

.hero-proof{
    display:flex;
    align-items:center;
    gap:20px;
}

.avatars{
    display:flex;
}

.avatars img{
    width:50px;
    height:50px;
    border-radius:50%;
    border:3px solid var(--bg);
    margin-left:-12px;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.phone-wrapper{
    position:relative;
}

.phone{
    width:340px;
    height:680px;
    background:var(--card);
    border:2px solid rgba(212,175,55,.25);
    border-radius:50px;
    padding:40px;
    text-align:center;
    position:relative;
    z-index:2;
    box-shadow:
    0 0 50px rgba(212,175,55,.2);
}

.phone img{
    width:120px;
    margin-bottom:20px;
}

.phone h2{
    letter-spacing:3px;
    margin-bottom:10px;
}

.phone small{
    color:var(--gold);
}

.divider{
    width:100px;
    height:1px;
    background:var(--gold);
    margin:30px auto;
}

.phone h3{
    font-family:'Cormorant Garamond',serif;
    font-size:46px;
    color:var(--gold);
    margin-bottom:20px;
}

.phone p{
    margin-bottom:40px;
}

.phone button{
    background:var(--gold);
    color:#000;
    border:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
}

.orb{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
}

.orb-1{
    width:250px;
    height:250px;
    background:rgba(212,175,55,.4);
    top:-40px;
    left:-80px;
    animation:float 8s infinite;
}

.orb-2{
    width:300px;
    height:300px;
    background:rgba(212,175,55,.2);
    bottom:-50px;
    right:-50px;
    animation:float 10s infinite;
}

.theme-toggle{
    position:fixed;
    top:25px;
    right:25px;
    z-index:999;
}

.theme-toggle button{
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    font-size:22px;
    background:var(--gold);
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-30px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:992px){

.hero-content{
    flex-direction:column;
    text-align:center;
    padding:120px 0;
}

.hero-left h1{
    font-size:50px;
}

.hero-buttons{
    justify-content:center;
}

.hero-proof{
    justify-content:center;
}

.phone{
    width:300px;
    height:600px;
}

}
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 6%;

    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.4);

    border-bottom:1px solid rgba(212,175,55,.1);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
}

.logo span{
    font-weight:700;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:var(--text);
    text-decoration:none;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:var(--gold);

    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-cta{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );

    color:#000;
    text-decoration:none;
    padding:14px 26px;
    border-radius:50px;
    font-weight:600;
}

.theme-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:var(--card);
    color:var(--gold);
    font-size:20px;
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}
@media(max-width:992px){

    .nav-links{
        position:fixed;
        top:90px;
        right:-100%;
        width:300px;
        height:calc(100vh - 90px);

        flex-direction:column;

        background:var(--card);

        padding:40px;

        transition:.4s;
    }

    .nav-links.active{
        right:0;
    }

    .hamburger{
        display:block;
    }

    .nav-links li{
        margin-bottom:25px;
    }

    .nav-cta{
        display:none;
    }

}   
.features-section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--gold);
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    font-size:52px;
    margin-top:15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    
    border-radius: 24px;
    
    padding: 35px;
    
    transition: .4s;
}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.5);

    box-shadow:
    0 0 40px rgba(212,175,55,.15);
}

.icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    border-radius:20px;

    color:var(--gold);

    background:
    rgba(212,175,55,.08);

    font-size:30px;
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    color:#999;
    line-height:1.8;
}.themes-section{
    padding:120px 0;
}

.theme-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.theme-track{
    display:flex;
    gap:30px;
    align-items:center;
}

.theme-card{
    width:220px;
    transition:.5s;
    opacity:.6;
}

.theme-card.active{
    transform:scale(1.12);
    opacity:1;
}

.theme-card img{
    width:100%;
    border-radius:25px;

    box-shadow:
    0 0 40px rgba(212,175,55,.2);
}

.slider-btn{

    width:65px;
    height:65px;

    border-radius:50%;

    border:1px solid var(--gold);

    background:none;

    color:var(--gold);

    cursor:pointer;
}

.theme-button{
    text-align:center;
    margin-top:60px;
}

.theme-button a{

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #f4d06f
    );

    color:#000;

    text-decoration:none;

        padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
} /* Pembuka atau penutup selector sebelum media query */

@media (max-width: 992px) {
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

.section-title h2{

    font-size:36px;
}

.theme-track{

    overflow-x:auto;

    padding-bottom:20px;
}

.theme-card{

    min-width:180px;
}

.slider-btn{
    display:none;
}

}

.myThemes{
    padding:40px 0;
}

.swiper-slide{
    transition:.5s;
    transform:scale(.85);
    opacity:.5;
}

.swiper-slide-active{
    transform:scale(1.09);
    opacity:1;
}

.swiper-slide img{
    width:100%;
    border-radius:25px;
    display:block;
}

.swiper-slide-active img{
    box-shadow:
    0 0 40px rgba(212,175,55,.35);
}
.testimonial-section{
    padding:120px 0;
}

.testimonial-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    border-radius:30px;

    padding:35px;

    height:100%;

    transition:.4s;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 40px rgba(212,175,55,.15);
}

.testimonial-head{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;
}

.testimonial-head img{

    width:70px;
    height:70px;

    border-radius:50%;
}

.stars{

    color:var(--gold);

    margin-top:5px;
}

.testimonial-card p{

    line-height:1.8;

    color:var(--muted);
}

.cta-section{

    padding:100px 0 140px;
}

.cta-box{

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,.15),
        rgba(0,0,0,.4)
    );

    border:1px solid rgba(212,175,55,.2);

    border-radius:40px;

    padding:60px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    position:relative;

    overflow:hidden;
}

.cta-box::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(212,175,55,.15),
        transparent 70%
    );
}

.cta-logo img{

    width:180px;
}

.cta-content{

    flex:1;
}

.cta-content h2{

    font-size:46px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;
}

.cta-content p{

    color:var(--muted);

    line-height:1.8;
}
@media(max-width:992px){

    .cta-box{

        flex-direction:column;

        text-align:center;
    }

    .cta-content h2{

        font-size:34px;
    }

}