.hero-section {
    padding-top: 5%;
    min-height: calc(100vh - 71px - 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    
    max-width: 80%; 
    margin: 0 auto; 
    padding: 2rem;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 5%;
    max-width: 70%;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 75%;
}

.greeting {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    /* background: linear-gradient(90deg, #ff4d6d, #b92b27); */
    background: #16a086;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bio {
    color: #f1f1f8;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    margin-left: 0.5rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #16a086;
    transform: translateY(-3px);
}

#portre img {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* #portre img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
} */

@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        max-width: 95%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        max-width: 95%;
    }

    .hero-content {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 95%;
    }

    /* .nav-links {
        display: none;
    } */
}

@media (max-width: 475px) {
    .cta-buttons {
        flex-direction: column;
    }
}