@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    color:white;
    overflow-x:hidden;
    background:linear-gradient(-45deg,#0f172a,#1e3a8a,#2563eb,#38bdf8);
    background-size:400% 400%;
    animation:bg 12s ease infinite;
}

/* BACKGROUND ANIMATION */

@keyframes bg{
    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

/* NAVBAR */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    z-index:1000;

    backdrop-filter:blur(15px);
    background:rgba(255,255,255,0.08);

    border-bottom:1px solid rgba(255,255,255,0.1);
}

.logo{
    font-size:35px;
    font-weight:700;
    color:#fff;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:3px;
    background:#38bdf8;
    left:0;
    bottom:-8px;
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 8%;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    animation:slideLeft 1s ease;
}

.hero-text h2{
    font-size:35px;
    margin-bottom:10px;
}

.hero-text h1{
    font-size:75px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text p{
    font-size:22px;
    opacity:0.9;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    border-radius:50px;
    text-decoration:none;
    color:white;
    font-weight:600;

    background:linear-gradient(to right,#38bdf8,#2563eb);

    box-shadow:0 0 25px rgba(56,189,248,0.6);

    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 0 40px rgba(56,189,248,1);
}

/* FOTO */

.hero-image{
    position:relative;
}

.hero-image img{
    width:360px;
    border-radius:35px;
    animation:float 4s ease-in-out infinite;

    border:4px solid rgba(255,255,255,0.2);

    box-shadow:
    0 0 20px rgba(255,255,255,0.2),
    0 0 50px rgba(56,189,248,0.5);
}

/* CARD */

.fitur{
    padding:80px 8%;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:320px;
    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;
}

.card:hover{
    transform:translateY(-15px) scale(1.03);

    box-shadow:
    0 0 20px rgba(56,189,248,0.5),
    0 0 40px rgba(37,99,235,0.4);
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.card p{
    opacity:0.9;
}

/* TENTANG */

.tentang{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 8%;
}

.profil-card{
    width:100%;
    max-width:900px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:35px;

    padding:50px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.1);

    box-shadow:0 0 30px rgba(0,0,0,0.2);
}

.profil-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;

    border:5px solid #38bdf8;

    margin-bottom:20px;

    box-shadow:0 0 25px rgba(56,189,248,0.7);
}

.bio{
    margin-top:15px;
    opacity:0.9;
}

.data-diri{
    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

.item{
    background:rgba(255,255,255,0.08);

    padding:25px;

    border-radius:25px;

    transition:0.4s;
}

.item:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.15);
}

/* KONTAK */

.kontak-section{
    min-height:100vh;
    padding:120px 8%;
    text-align:center;
}

.kontak-section h1{
    font-size:60px;
    margin-bottom:15px;
}

.sub{
    opacity:0.8;
    margin-bottom:60px;
}

.sosial-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.sosial-card{
    width:280px;

    padding:40px;

    border-radius:30px;

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;

    position:relative;

    overflow:hidden;
}

.sosial-card::before{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
    );

    transform:rotate(45deg);
    top:-150%;
    left:-150%;
    transition:0.8s;
}

.sosial-card:hover::before{
    top:100%;
    left:100%;
}

.sosial-card:hover{
    transform:translateY(-12px) scale(1.04);

    box-shadow:
    0 0 20px rgba(56,189,248,0.6),
    0 0 40px rgba(37,99,235,0.5);
}

.sosial-card i{
    font-size:60px;
    margin-bottom:20px;
}

.sosial-card h3{
    font-size:28px;
    margin-bottom:10px;
}

/* BUTTON SCROLL */

#scrollTopBtn{
    position:fixed;
    bottom:30px;
    right:30px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    font-size:22px;

    color:white;

    background:linear-gradient(to right,#38bdf8,#2563eb);

    cursor:pointer;

    display:none;

    box-shadow:0 0 20px rgba(56,189,248,0.7);

    z-index:999;
}

/* ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero-text h1{
        font-size:50px;
    }

    .hero-text h2{
        font-size:28px;
    }

    .hero-image img{
        width:260px;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .kontak-section h1{
        font-size:40px;
    }
}

html{
    scroll-behavior:smooth;
}

/* SKILL */

.skill-section{
    padding:100px 8%;
    text-align:center;
}

.skill-section h1{
    font-size:50px;
    margin-bottom:50px;
}

.skill-box{
    max-width:700px;
    margin:auto;
}

.skill{
    margin-bottom:30px;
    text-align:left;
}

.bar{
    width:100%;
    height:15px;
    background:rgba(255,255,255,0.1);
    border-radius:20px;
    overflow:hidden;
}

.bar span{
    display:block;
    height:100%;
    border-radius:20px;

    background:linear-gradient(to right,#38bdf8,#2563eb);

    animation:load 3s ease;
}

.html{
    width:90%;
}

.css{
    width:85%;
}

.js{
    width:75%;
}

@keyframes load{
    from{
        width:0;
    }
}

/* GALERI */

.gallery{
    padding:100px 8%;
    text-align:center;
}

.gallery h1{
    font-size:50px;
    margin-bottom:50px;
}

.gallery-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.gallery-card{
    width:320px;
    height:220px;

    border-radius:25px;

    background:linear-gradient(
    135deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.05)
    );

    backdrop-filter:blur(10px);

    transition:0.5s;
}

.gallery-card:hover{
    transform:scale(1.05) rotate(2deg);
}

.email:hover{
    background:linear-gradient(
    135deg,
    #f59e0b,
    #f97316
    );

    box-shadow:
    0 0 25px rgba(249,115,22,0.8),
    0 0 50px rgba(245,158,11,0.6);
}

/* INSTAGRAM */

.instagram:hover{
    background:linear-gradient(
    135deg,
    #ff0080,
    #ff4d4d,
    #ff9900
    );

    box-shadow:
    0 0 25px rgba(255,0,128,0.8),
    0 0 50px rgba(255,153,0,0.6);
}

/* WHATSAPP */

.whatsapp:hover{
    background:linear-gradient(
    135deg,
    #00c853,
    #00e676
    );

    box-shadow:
    0 0 25px rgba(0,230,118,0.8),
    0 0 50px rgba(0,200,83,0.6);
}

/* TIKTOK */

.tiktok:hover{
    background:linear-gradient(
    135deg,
    #111,
    #00f2ff,
    #ff0050
    );

    box-shadow:
    0 0 25px rgba(255,0,80,0.8),
    0 0 50px rgba(0,242,255,0.6);
}

/* GITHUB */

.github:hover{
    background:linear-gradient(
    135deg,
    #2d2d2d,
    #4b4b4b
    );

    box-shadow:
    0 0 25px rgba(255,255,255,0.3),
    0 0 50px rgba(255,255,255,0.2);
}

/* EMAIL */

.email:hover{
    background:linear-gradient(
    135deg,
    #f59e0b,
    #f97316
    );

    box-shadow:
    0 0 25px rgba(249,115,22,0.8),
    0 0 50px rgba(245,158,11,0.6);
}

/* SOCIAL ICONS */

.social-icons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;
}

.social{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:18px;

    text-decoration:none;

    color:white;

    font-weight:500;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;

    position:relative;

    overflow:hidden;
}

/* EFEK KILAU */

.social::before{

    content:'';

    position:absolute;

    width:200%;

    height:200%;

    background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
    );

    transform:rotate(45deg);

    top:-150%;

    left:-150%;

    transition:0.8s;
}

.social:hover::before{

    top:100%;

    left:100%;
}

/* ICON */

.social i{
    font-size:22px;
}

/* HOVER INSTAGRAM */

.instagram:hover{

    transform:translateY(-10px) scale(1.05);

    background:linear-gradient(
    135deg,
    #ff0080,
    #ff4d4d,
    #ff9900
    );

    box-shadow:
    0 0 25px rgba(255,0,128,0.8),
    0 0 50px rgba(255,153,0,0.5);
}

/* HOVER WHATSAPP */

.whatsapp:hover{

    transform:translateY(-10px) scale(1.05);

    background:linear-gradient(
    135deg,
    #00c853,
    #00e676
    );

    box-shadow:
    0 0 25px rgba(0,230,118,0.8),
    0 0 50px rgba(0,200,83,0.5);
}

/* HOVER TIKTOK */

.tiktok:hover{

    transform:translateY(-10px) scale(1.05);

    background:linear-gradient(
    135deg,
    #111,
    #00f2ff,
    #ff0050
    );

    box-shadow:
    0 0 25px rgba(255,0,80,0.8),
    0 0 50px rgba(0,242,255,0.5);
}

/* HOVER GITHUB */

.github:hover{

    transform:translateY(-10px) scale(1.05);

    background:linear-gradient(
    135deg,
    #2d2d2d,
    #4b4b4b
    );

    box-shadow:
    0 0 25px rgba(255,255,255,0.3),
    0 0 50px rgba(255,255,255,0.2);
}

/* HOVER EMAIL */

.email:hover{

    transform:translateY(-10px) scale(1.05);

    background:linear-gradient(
    135deg,
    #f59e0b,
    #f97316
    );

    box-shadow:
    0 0 25px rgba(249,115,22,0.8),
    0 0 50px rgba(245,158,11,0.5);
}

/* NAV ICON */

.nav-links{
    display:flex;
    gap:18px;
    list-style:none;
}

.nav-icon{

    width:50px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:15px;

    color:white;
    font-size:20px;

    text-decoration:none;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.4s;

    position:relative;

    overflow:hidden;
}

/* EFEK KILAU */

.nav-icon::before{

    content:'';

    position:absolute;

    width:200%;
    height:200%;

    background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
    );

    transform:rotate(45deg);

    top:-150%;
    left:-150%;

    transition:0.8s;
}

.nav-icon:hover::before{

    top:100%;
    left:100%;
}

/* HOVER */

.nav-icon:hover{

    transform:translateY(-5px) scale(1.08);

    background:linear-gradient(
    135deg,
    #38bdf8,
    #2563eb
    );

    box-shadow:
    0 0 20px rgba(56,189,248,0.8),
    0 0 40px rgba(37,99,235,0.5);
}

/* NAVBAR ICON */

.nav-links{
    display:flex;
    gap:18px;
    list-style:none;
}

.nav-icon{

    width:50px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:16px;

    color:white;
    font-size:20px;

    text-decoration:none;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.4s;

    position:relative;

    overflow:hidden;
}

/* EFEK KILAU */

.nav-icon::before{

    content:'';

    position:absolute;

    width:200%;
    height:200%;

    background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
    );

    transform:rotate(45deg);

    top:-150%;
    left:-150%;

    transition:0.8s;
}

.nav-icon:hover::before{

    top:100%;
    left:100%;
}

/* HOVER */

.nav-icon:hover{

    transform:translateY(-5px) scale(1.08);

    background:linear-gradient(
    135deg,
    #38bdf8,
    #2563eb
    );

    box-shadow:
    0 0 20px rgba(56,189,248,0.8),
    0 0 40px rgba(37,99,235,0.5);
}

/* MENU ACTIVE */

.active-nav{

    background:linear-gradient(
    135deg,
    #38bdf8,
    #2563eb
    );

    box-shadow:
    0 0 20px rgba(56,189,248,0.8),
    0 0 40px rgba(37,99,235,0.5);
}

.skills h1{
    text-align:center;
    font-size:50px;
    margin-bottom:50px;
}

.skills{
    padding:100px 8%;
}

.skill-box{
    max-width:700px;
    margin:auto;
}

/* CARD LINK */

.card-link{
    text-decoration:none;
    color:white;
}

.card-link .card{
    cursor:pointer;
}

/* EFEK SAAT DIKLIK */

.card-link:hover .card{
    transform:translateY(-15px) scale(1.03);

    box-shadow:
    0 0 20px rgba(56,189,248,0.5),
    0 0 40px rgba(37,99,235,0.4);
}

/* CARD LINK */

.card-link{
    text-decoration:none;
    color:white;
}

/* EFEK HOVER */

.card-link .card{
    cursor:pointer;
    transition:0.5s;
}

.card-link:hover .card{
    transform:translateY(-15px) scale(1.03);

    box-shadow:
    0 0 20px rgba(56,189,248,0.5),
    0 0 40px rgba(37,99,235,0.4);
}

/* PROGRAMMING PAGE */

.gallery{
    padding:120px 8%;
    text-align:center;
}

.gallery h1{
    font-size:55px;
    margin-bottom:15px;
}

.gallery .sub{
    opacity:0.8;
    margin-bottom:60px;
}

.gallery-container{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.gallery-card{
    width:380px;

    background:rgba(255,255,255,0.08);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;
}

.gallery-card:hover{
    transform:translateY(-12px) scale(1.03);

    box-shadow:
    0 0 20px rgba(56,189,248,0.5),
    0 0 40px rgba(37,99,235,0.4);
}

.gallery-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.gallery-content{
    padding:25px;
}

.gallery-content h2{
    margin-bottom:15px;
}

.gallery-content p{
    opacity:0.8;
    margin-bottom:25px;
}

.project-btn{
    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:linear-gradient(
    to right,
    #38bdf8,
    #2563eb
    );

    transition:0.4s;
}

.project-btn:hover{
    transform:scale(1.05);

    box-shadow:
    0 0 20px rgba(56,189,248,0.7);
}

/* CREATIVE DESIGN */

.creative-hero{

    padding:150px 8% 80px;

    text-align:center;
}

.creative-hero h1{

    font-size:70px;

    margin-bottom:20px;
}

.creative-hero span{

    color:#38bdf8;
}

.creative-hero p{

    font-size:20px;

    opacity:0.8;
}

/* PROJECT DESIGN */

.design-project{

    padding:40px 8% 100px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

/* CARD */

.design-card{

    background:rgba(255,255,255,0.08);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;
}

.design-card:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    box-shadow:
    0 0 25px rgba(56,189,248,0.5),
    0 0 50px rgba(37,99,235,0.4);
}

/* IMAGE */

.design-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:0.5s;
}

.design-card:hover img{

    transform:scale(1.08);
}

/* CONTENT */

.design-content{

    padding:25px;
}

.design-content h2{

    margin-bottom:12px;

    font-size:28px;
}

.design-content p{

    opacity:0.8;

    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:768px){

    .creative-hero h1{

        font-size:45px;
    }

    .creative-hero p{

        font-size:17px;
    }
}

/* ========================= */
/* FUTSAL PAGE */
/* ========================= */

.futsal-hero{

    padding:150px 8% 80px;

    text-align:center;
}

.futsal-hero h1{

    font-size:70px;

    margin-bottom:20px;

    font-weight:700;
}

.futsal-hero span{

    color:#38bdf8;

    text-shadow:
    0 0 20px rgba(56,189,248,0.7);
}

.futsal-hero p{

    font-size:20px;

    opacity:0.85;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* CONTAINER */

.futsal-container{

    padding:40px 8% 100px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

/* CARD */

.futsal-card{

    background:rgba(255,255,255,0.08);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.5s;

    position:relative;
}

/* EFEK KILAU */

.futsal-card::before{

    content:'';

    position:absolute;

    width:200%;

    height:200%;

    background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
    );

    transform:rotate(45deg);

    top:-150%;

    left:-150%;

    transition:0.8s;
}

.futsal-card:hover::before{

    top:100%;

    left:100%;
}

/* HOVER */

.futsal-card:hover{

    transform:
    translateY(-12px)
    scale(1.03);

    box-shadow:
    0 0 25px rgba(56,189,248,0.5),
    0 0 50px rgba(37,99,235,0.4);
}

/* IMAGE */

.futsal-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:0.5s;
}

.futsal-card:hover img{

    transform:scale(1.08);
}

/* CONTENT */

.futsal-content{

    padding:28px;
}

.futsal-content h2{

    font-size:28px;

    margin-bottom:15px;

    font-weight:600;
}

.futsal-content p{

    opacity:0.85;

    line-height:1.8;

    font-size:15px;
}

/* FOOTER */

footer{

    text-align:center;

    padding:30px;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(10px);

    border-top:1px solid rgba(255,255,255,0.1);
}

footer p{

    opacity:0.8;
}

/* RESPONSIVE */

@media(max-width:768px){

    .futsal-hero{

        padding-top:130px;
    }

    .futsal-hero h1{

        font-size:45px;
    }

    .futsal-hero p{

        font-size:16px;
    }

    .futsal-card img{

        height:210px;
    }

    .futsal-content h2{

        font-size:24px;
    }
}

/* LOGO HEADER */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:32px;

    font-weight:700;

    color:white;
}

/* IMAGE LOGO */

.logo img{

    width:50px;

    height:50px;

    object-fit:cover;

    border-radius:50%;

    border:2px solid rgba(255,255,255,0.2);

    box-shadow:
    0 0 15px rgba(56,189,248,0.6);

    transition:0.4s;
}

/* HOVER */

.logo img:hover{

    transform:rotate(10deg) scale(1.08);

    box-shadow:
    0 0 25px rgba(56,189,248,0.9);
}

/* TEXT */

.logo span{

    color:#38bdf8;
}