.bio-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 2rem;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(58, 202, 255, 0.2);
    color: white;
}

.bio-container h2 {
    color: #eab2bb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #ccc;
}

.separator {
    border: 1px solid #eab2bb;
    margin-bottom: 2rem;
}

.btn-cv {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 30px;
    background-color: #3C6CA8;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-cv:hover {
    background-color: #2f4f73;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {

    html, body {
        padding-inline: 1rem;
    }

    .main-header {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .logo {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* === RESPONSIVE DESKTOP === */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        gap: 2rem;
    }
}
