* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

/* HOME */
.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* TITLE */
.title {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeDown 1.2s ease;
}

.title span {
    color: #38bdf8;
}

/* SUBTITLE */
.subtitle {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.8s;
}

/* BUTTON */
.btn-custom {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 25px;
    background: #38bdf8;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 1.4s;
}

.btn-custom:hover {
    background: #0ea5e9;
}

/* ANIMATIONS */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #020617;
}

.navbar .nav-link {
    color: #cbd5f5;
    transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #38bdf8;
}

/* ================= HOME SECTION ================= */
.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* Gradient Text Effect */
.title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #38bdf8, #f43f5e, #facc15, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientMove 5s ease infinite;
}

.subtitle {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #cbd5f5;
}

/* ================= BUTTON ================= */
.btn-custom {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #38bdf8;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #f43f5e;
    color: white;
    transform: translateY(-3px);
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* ================= FOOTER ================= */
footer {
    width: 100%;
    background: #020617;
    padding: 50px 10%;
    text-align: center;
    margin-top: 50px;
}

footer h3 {
    color: #38bdf8;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a.tiktok:hover {
    background: #000000;
    color: #fff;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.social-icons a.email:hover {
    background: #38bdf8;
    color: black;
}

footer span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
    .title {
        font-size: 2rem;
    }
    .btn-custom {
        padding: 10px 20px;
    }
}

/* ================= ABOUT SECTION ================= */
.about {
    padding: 100px 10%;
    background: #0f172a;
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* responsive */
}

.about-image img {
    width: 300px;
    max-width: 100%;
    border-radius: 15px;
    border: 3px solid #38bdf8;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}

/* ================= SKILLS SECTION ================= */
.skills {
    padding: 100px 10%;
    background: #0f172a;
    color: white;
    text-align: center;
}

.skills h2 {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 40px;
}

.skills-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-card {
    background: #1e293b;
    padding: 30px 20px;
    border-radius: 15px;
    width: 220px;
    transition: transform 0.3s, background 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #38bdf8, #f43f5e);
    color: white;
}

.skill-icon {
    font-size: 50px;
    color: #38bdf8;
    margin-bottom: 15px;
}

.skill-icon-img {
    width: 50px;
    margin-bottom: 15px;
}

.skill-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skill-card p {
    font-size: 0.9rem;
    color: #cbd5f5;
}

/* Hover effect for text in card */
.skill-card:hover h3,
.skill-card:hover p {
    color: white;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .skills-grid {
        flex-direction: column;
        align-items: center;
    }

    .skill-card {
        width: 80%;
    }
}

/* ================= CONTACT SECTION ================= */
.contact {
    padding: 100px 10%;
    background: #0f172a;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1rem;
    color: #cbd5f5;
    margin-bottom: 40px;
}

/* Contact Cards Container */
.contact-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Card */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e293b;
    padding: 25px 20px;
    border-radius: 15px;
    width: 180px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-card i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* Card Hover Animations */
.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Instagram */
.contact-card.instagram:hover {
    background: radial-gradient(circle at 30% 30%, #f58529, #dd2a7b, #8134af);
    color: white;
}

.contact-card.instagram:hover i {
    color: white;
}

/* TikTok */
.contact-card.tiktok:hover {
    background: black;
    color: white;
}

.contact-card.tiktok:hover i {
    color: white;
}

/* Email */
.contact-card.email:hover {
    background: #38bdf8;
    color: black;
}

.contact-card.email:hover i {
    color: black;
}

.contact-card span {
    margin-top: 5px;
    font-weight: bold;
    font-size: 1rem;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 70%;
        margin-bottom: 20px;
    }
}

/* NAVBAR LUCU / PLAYFUL */
.navbar {
    background: #ffe6f0; /* pink pastel */
    padding: 10px 0;
    border-bottom: 3px dashed #38bdf8; /* lucu & playful */
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* section navbar */
.navbar .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #384aee;
    text-decoration: none;
    animation: bounce 2s infinite;
}

/* Brand playful animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Navbar links */
.navbar .nav-link {
    margin-left: 12px;
    font-weight: bold;
    color: #384aee;
    background: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Hover efek lucu */
.navbar .nav-link:hover {
    transform: rotate(-5deg) scale(1.1);
    background: #38bdf8;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Mobile responsive */
@media(max-width:768px){
    .navbar .nav-link {
        margin-left: 0;
        margin-top: 8px;
    }
}
