/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;

    background: #0b0d12;

    color: #e8eaf0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.7;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    background: rgba(11, 13, 18, 0.9);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    letter-spacing: 1px;
}

.nav-link {
    color: #aeb4c0 !important;

    margin-left: 20px;

    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}


/* =========================================
   HERO
========================================= */

.hero-section {
    background:
        radial-gradient(
            circle at top right,
            #1c2840 0%,
            #0b0d12 45%
        );
}

.hero-subtitle,
.section-label {
    color: #7c9cff;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 3px;
}

.hero-section h1 {
    font-size: clamp(3rem, 7vw, 6rem);

    font-weight: 800;

    line-height: 1.05;
}

.hero-section h1 span {
    color: #7c9cff;
}

.hero-description {
    max-width: 650px;

    color: #aeb4c0;

    font-size: 1.1rem;
}


/* =========================================
   PAGE HEADER
========================================= */

.page-header {
    padding: 170px 0 90px;

    background:
        radial-gradient(
            circle at top right,
            #1c2840 0%,
            #0b0d12 50%
        );
}

.page-header h1 {
    font-size: 4rem;

    font-weight: 800;

    margin-bottom: 20px;
}


/* =========================================
   PROFILE IMAGE
========================================= */

.profile-image {
    width: 350px;
    height: 350px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.15);
}

.profile-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
    object-position: center 10%;
}


/* =========================================
   SECTIONS
========================================= */

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: #0f1219;
}

.section-heading {
    margin-bottom: 60px;

    max-width: 750px;
}

.section-heading h2 {
    font-size: 2.8rem;

    font-weight: 700;
}

.content-limit {
    max-width: 750px;

    color: #aeb4c0;
}


/* =========================================
   BUTTONS
========================================= */

.btn-primary {
    background: #7c9cff;

    border-color: #7c9cff;

    color: #0b0d12;

    font-weight: 600;
}

.btn-primary:hover {
    background: #9db4ff;

    border-color: #9db4ff;

    color: #0b0d12;
}


/* =========================================
   PROJECT CARDS
========================================= */

.project-card {
    height: 100%;

    background: #171b24;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.25s,
        border-color 0.25s;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: #7c9cff;
}

.project-image {
    height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #202633;
}

.project-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.project-card h3,
.project-card h2 {
    font-weight: 700;
}

.project-card p {
    color: #aeb4c0;
}

.project-tech {
    color: #7c9cff !important;

    font-size: 0.85rem;
}


/* =========================================
   SKILLS
========================================= */

.skill-card {
    height: 100%;

    padding: 35px;

    background: #171b24;

    border-radius: 16px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.25s,
        border-color 0.25s;
}

.skill-card:hover {
    transform: translateY(-5px);

    border-color: #7c9cff;
}

.skill-card i {
    font-size: 2rem;

    color: #7c9cff;
}

.skill-card h3 {
    margin-top: 20px;

    margin-bottom: 20px;
}

.skill-card p {
    color: #aeb4c0;
}

.skill-list {
    padding: 0;

    margin: 0;

    list-style: none;
}

.skill-list li {
    padding: 7px 0;

    color: #aeb4c0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}


/* =========================================
   EDUCATION
========================================= */

.education-card {
    max-width: 800px;

    padding: 40px;

    background: #171b24;

    border-radius: 16px;

    border-left:
        3px solid #7c9cff;
}

.education-card h4 {
    color: #7c9cff;
}

.education-card p {
    color: #aeb4c0;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 100px 0;
}

.contact-section h2 {
    font-size: 2.8rem;

    margin-bottom: 20px;
}

.contact-section p {
    color: #aeb4c0;
}

.contact-links {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-top: 30px;
}

.contact-links a {
    color: #aeb4c0;

    text-decoration: none;

    transition: 0.2s;
}

.contact-links a:hover {
    color: #7c9cff;
}

.contact-links i {
    margin-right: 8px;
}


/* =========================================
   RESUME
========================================= */

.resume-placeholder {
    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #171b24;

    border:
        1px dashed #586174;

    border-radius: 16px;
}

.resume-placeholder i {
    font-size: 4rem;

    color: #7c9cff;

    margin-bottom: 20px;
}

.resume-placeholder p {
    color: #aeb4c0;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 30px 0;

    background: #090b0f;

    color: #6f7787;

    font-size: 0.9rem;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .nav-link {
        margin-left: 0;

        margin-top: 10px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;

        margin-right: auto;
    }

    .profile-image {
        width: 280px;

        height: 280px;

        margin-top: 90px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

}


@media (max-width: 576px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

}