/* GLOBAL */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}


/* NAVBAR */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
}

.nav-link {
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}


/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background: linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    color: white;
    padding-top: 80px;
}

.hero h1 {
    font-size: 55px;
    font-weight: bold;
}

.hero h1 span {
    color: #0d6efd;
}

.hero h3 {
    margin: 20px 0;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
}

.hero .btn {
    margin-right: 10px;
    margin-top: 15px;
}


/* FOTO PROFIL */
.profile-img {
    width: 300px;
    height: 300px;

    object-fit: cover;

    border-radius: 50%;

    border: 8px solid white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


/* SECTION */
section {
    scroll-margin-top: 80px;
}

section h2 {
    font-weight: bold;
    margin-bottom: 10px;
}


/* TENTANG */
.about-icon {
    font-size: 180px;
    color: #0d6efd;
}


/* KEAHLIAN */
.skill-card {
    background: white;
    text-align: center;

    padding: 30px 20px;

    border-radius: 15px;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-card i {
    font-size: 55px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.skill-card h4 {
    font-weight: bold;
}


/* PROJECT */
.project-card {
    border: none;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    height: 220px;

    object-fit: cover;
}

.project-card .card-body {
    padding: 25px;
}


/* FORM */
.form-control {
    padding: 12px;

    border-radius: 8px;
}

.form-control:focus {
    box-shadow: none;

    border-color: #0d6efd;
}


/* FOOTER */
footer {
    margin-top: 0;
}

.social {
    color: white;

    font-size: 22px;

    margin: 0 8px;

    transition: 0.3s;
}

.social:hover {
    color: #0d6efd;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        text-align: center;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .profile-img {
        width: 230px;
        height: 230px;

        margin-top: 40px;
    }

    .about-icon {
        font-size: 120px;

        margin-bottom: 30px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin-left: 0;
    }
}