/* === GLOBAL === */
body {
    margin: 0;
    background: #1e2028; /* Neutral dark slate */
    color: #E8EBED;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    text-align: center;
    scroll-behavior: smooth;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background-size: 50%; 
    background-position: left; 
    background-repeat: no-repeat;
    background-color: rgb(60, 64, 80);
    background-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
    color: #4DA8DA;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.85;
    color: #A7ABB3;
}

/* === SOCIALS === */
.socials a {
    margin: 0 0.6rem;
    font-size: 1.8rem;
    color: #E8EBED;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.icon:hover {
    filter: brightness(140%) saturate(130%) drop-shadow(0 0 8px #4DA8DA);
    transform: scale(1.1);
}

/* === CARD SECTIONS === */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    border: 1px solid rgba(77,168,218,0.05);
}

.card h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-decoration: underline;
    color: #4DA8DA;
}

/* === ABOUT === */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.profile-pic {
    width: 220px;
    border-radius: 50%;
    border: 3px solid rgba(77,168,218,0.25);
}

/* === SKILLS === */
.skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.skills ul {
    background: rgba(255,255,255,0.03);
    border-radius: 1rem;
    padding: 1rem 2rem;
    list-style: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    border: 1px solid rgba(77,168,218,0.05);
}

.skills h3 {
    color: #4DA8DA;
}

/* === PROJECTS === */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(53,124,171,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.project:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(77,168,218,0.25);
}

/* Prevent image from resizing on hover */
.project-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: block;
    object-fit: cover;
}

/* === FOOTER === */
footer {
    padding: 2rem;
    background: #14161C;
    color: #A7ABB3;
    font-size: 0.9rem;
}
