@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: poppins;
    margin: 0;
    color: #fff;

    background-color: #0b1120;

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 80px 80px;

    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;

    p {
        margin: 4px;
    }

}

.container {
    display: block;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    padding: 18px 28px;
    background: rgba(22, 27, 34, 0.7);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.logo h3 {
    margin: 0;
}

.nav-items {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.nav-items li {
    list-style: none;
    cursor: pointer;
}

.nav-items a {
    color: inherit;
    text-decoration: none;
}

.content {
    padding-top: 120px;
}

.hero-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    gap: 42px;
}

.profile-image-section img {
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.profile-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
}

.hero-description {
    font-size: 24px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin-top: 18px;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-links img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.resume-button {
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    background: rgba(22, 27, 34, 0.7);
    color: #fff;
    padding: 12px 36px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.page-not-found {
    display: flex;
    flex-direction: column;
}

/* Contact Page */
.contact-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.contact-message {
    font-size: 36px;
    font-weight: 600;
    color: rgba(255,255,255, 0.9);
}

.contact-email {
    font-size: 22px;
    color: rgba(255,255,255,0.75);
}

.interests {
    display: flex;
    flex-direction: column;

    hr {
        width: 100%;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.75);
        margin: 16px 0;
    }
}

.interest-title {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255, 0.9);
}

.interest-description {
    color: rgba(255,255,255,0.75);
}

/* Footer Section */
.footer {
    padding: 12px 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}