/* GENERAL */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    color: #0f172a;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    background-color: #020617;
}

.navbar a {
    color: #e2e8f0 !important;
}

.navbar a:hover {
    color: #38bdf8 !important;
}

/* HERO */
#hero {
    background: #ffffff;
    padding: 80px 0;
    border-radius: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

#hero h1 {
    font-size: 42px;
    color: #0f172a;
}

#hero h4 {
    color: #475569;
}

#hero p {
    color: #334155;
}

.profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(45deg, #38bdf8, #6366f1);
    border: none;
    border-radius: 8px;
}

/* SECTION */
section {
    margin-bottom: 60px;
}

section:not(#hero) {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
}

/* HEADINGS */
h2 {
    color: #0f172a;
    margin-bottom: 20px;
}

/* SKILLS */
.progress {
    height: 18px;
    background-color: #e2e8f0;
}

.progress-bar {
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    transition: width 1.5s;
}

/* CARDS */
.card {
    background-color: #f8fafc;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* FORM */
input, textarea {
    background-color: #ffffff;
    border: 1px solid #cbd5f5;
    color: #0f172a;
}

/* FOOTER */
footer {
    background-color: #020617;
    color: #94a3b8;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
