* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ===== Body ===== */
body {
    min-height: 100vh;
    background: #0f0f0f;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    filter: blur(8px);
    animation: pageReveal 0.6s ease-out forwards;
}

@keyframes pageReveal {
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* ===== Brand ===== */
.brand {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    color: #9a9a9a;
    text-decoration: none;
}

/* ===== Theme Toggle ===== */
#theme-toggle {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: 1px solid #444;
    color: inherit;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
}

/* ===== Container ===== */
.container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
}

/* ===== Profile ===== */
.profile img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ===== Content ===== */
.content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.content h3 {
    margin-bottom: 14px;
    font-weight: 500;
}

.content p {
    max-width: 420px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 26px;
}

/* ===== Buttons ===== */
.actions {
    display: flex;
    gap: 16px;
}

.btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.08);
}

.resume { background: #f5b000; }
.projects { background: #ff4b3e; }
.contact { background: #5ccfd6; }

/* ===== Footer ===== */
.footer-info {
    position: absolute;
    bottom: 10px;
    width: 92%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 0.7rem;
    color: #6f6f6f;
}

.footer-center {
    text-align: center;
}

.socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 4px;
}

.socials a {
    color: inherit;
    font-size: 1rem;
    text-decoration: none;
}

/* ===== Light Theme ===== */
body.light {
    background: #f5f5f5;
    color: #000;
}

body.light .content p {
    color: #333;
}

body.light .brand,
body.light .footer-info {
    color: #666;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    body {
        justify-content: flex-start;
        padding-bottom: 140px;
    }

    .container {
        flex-direction: column;
        text-align: center;
        margin-top: 80px;
    }

    .actions {
        justify-content: center;
    }

    .footer-info {
        position: static;
        margin-top: 40px;
        flex-direction: column;
        gap: 12px;
    }
}











