/* ===== Global Styles ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0F172A;
    color: #F8FAFC;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}


/* ===== Hero Section ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hello {
    color: #A78BFA;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

h2 {
    color: #94A3B8;
    font-size: 1.5rem;
    font-weight: 400;
}

.intro {
    max-width: 600px;
    margin: 25px 0;
    color: #CBD5E1;
}


/* ===== Buttons ===== */

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    color: white;
    background: #8B5CF6;
    padding: 12px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #A78BFA;
}

.btn-outline {
    background: transparent;
    border: 1px solid #8B5CF6;
}


/* ===== Sections ===== */

section {
    padding: 80px 0;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
}


/* ===== Skills ===== */

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-list span {
    background: #1E293B;
    padding: 10px 18px;
    border-radius: 20px;
    color: #C4B5FD;
}


/* ===== Projects ===== */

.project-card {
    background: #1E293B;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #334155;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #8B5CF6;
}

.project-card h4 {
    margin-bottom: 10px;
    color: #C4B5FD;
}


/* ===== Mobile ===== */

@media(max-width:700px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .buttons {
        flex-direction: column;
        width: fit-content;
    }

}
/* ===== Navbar ===== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #F8FAFC;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #A78BFA;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
/* ===== Hero Layout ===== */

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}


.hero-text {
    max-width: 650px;
}


.profile-placeholder {
    display: flex;
    justify-content: center;
}


.circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;

    background: #1E293B;
    border: 3px solid #8B5CF6;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 4rem;
    font-weight: 700;
    color: #C4B5FD;
}


/* Mobile */

@media(max-width:700px){

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .circle {
        width: 160px;
        height: 160px;
        font-size: 3rem;
    }

}
.project-link {
    display: inline-block;
    margin-top: 15px;

    color: #A78BFA;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

.project-link:hover {
    color: #C4B5FD;
}
/* ===== Contact ===== */

.contact-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.contact-links a {
    color: #C4B5FD;
    text-decoration: none;

    padding: 10px 18px;
    border: 1px solid #334155;
    border-radius: 8px;

    transition: 0.3s;
}

.contact-links a:hover {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}


@media(max-width:700px){

    .contact-links {
        flex-direction: column;
        width: fit-content;
    }

}
/* ===== Footer ===== */

footer {
    padding: 30px 0;
    text-align: center;
    color: #94A3B8;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}