/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", Arial, sans-serif;
}

/* BODY */
body{
    background:#0b0f0d;
    color:#e6f5ee;
}

/* CONTAINER */
.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

/* HEADER */
header{
    text-align:center;
    padding:30px 20px 20px;
}


.logo-img{
    width:260px;
    max-width:90%;
    margin-bottom:12px;
}



.logo-text{
    font-size:48px;
    font-weight:800;
    margin-bottom:4px;
    color:#f07808;
    animation: blinkGlow 1.8s infinite;
}

.tagline{
    margin-top:16px;
    font-size:0px;
    color:#1fe40d;
}

/* MAP */
.map{
    margin-top:40px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,255,156,0.15);
}

.map iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:15px;
}

/* FOOTER */
footer{
    text-align:center;
    margin:40px 0 10px;
    font-size:14px;
    color:#6fae97;
}

/* RESPONSIVE */
@media(max-width:600px){
    .logo-img{
        width:90px;
    }

    .logo-text{
        font-size:28px;
    }

    .map iframe{
        height:300px;
    }
}
/* BACKGROUND CANVAS */
#bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    background:#0b0f0d;
}

/* PASTIKAN KONTEN DI ATAS */
.content{
    position:relative;
    z-index:2;
}
/* SOCIAL ICON IMAGE */
.contact{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0;
}

.icon{
    width:56px;
    height:56px;
    background:#132b24;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.icon img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.icon:hover{
    background:#00ff9c;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,255,156,0.35);
}

/* RESPONSIVE */
@media(max-width:600px){
    .icon{
        width:48px;
        height:48px;
    }

    .icon img{
        width:24px;
        height:24px;
    }
}
@media(max-width:600px){
    header{
        padding:25px 15px 15px;
    }

    .logo-img{
        width:180px;
    }

    .logo-text{
        font-size:26px;
    }

    .tagline{
        font-size:14px;
    }
}
.tagline{
    font-size:16px;
    color:#18e211;
    margin-top:0;
    position:relative;
    z-index:5;
}
/* RUNNING TEXT BOX */
.running-box{
    max-width:1000px;
    margin:0 auto 20px;
    padding:12px 0;
    border-radius:12px;
    background:rgba(0, 255, 156, 0.08);
    border:1px solid rgba(0, 255, 156, 0.25);
    box-shadow:0 0 20px rgba(0,255,156,0.15);
    position:relative;
    z-index:6;
}

/* AREA TEKS */
.running-text{
    overflow:hidden;
    white-space:nowrap;
}

/* TEKS BERJALAN */
.running-text span{
    display:inline-block;
    padding-left:100%;
    animation: marquee 14s linear infinite;
    font-size:16px;
    letter-spacing:0.6px;
    color:#00ff9c;
}

/* ANIMASI */
@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* MOBILE */
@media(max-width:600px){
    .running-box{
        max-width:100%;
        margin-bottom:15px;
    }

    .running-text span{
        font-size:13px;
        animation-duration:24s;
    }
}
.running-text .brand{
    font-weight:800;
    color:#ff8c1a;
    text-shadow:0 0 6px rgba(255,140,26,0.6);
}
@media(max-width:600px){
    .running-text span{
        font-size:12px;
        animation-duration:18s;
    }
}
@keyframes blinkGlow{
    0%, 100%{
        opacity:1;
        text-shadow:0 0 8px rgba(255,140,26,0.6);
    }
    50%{
        opacity:0.5;
        text-shadow:0 0 2px rgba(255,140,26,0.3);
    }
}
@media(max-width:600px){
    .logo-text{
        font-size:32px;
        animation-duration:2.2s; /* lebih pelan di HP */
    }
}
