.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.hero-photo-container {
    flex-shrink: 0;
}

.hero-photo {
    width: 200px;
    height: 200px;
    border-radius: 35%;
    object-fit: cover;
    border: 4px solid #27b;
}

.hero-text h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #aaccff;
    margin: 5px 0 20px 0;
    font-weight: normal;
}

.hero-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    /* margin-bottom: 30px; */
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #27b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #27b;
    color: #0a192f;
}

.cta-button.secondary {
    background-color: transparent;
    color: #27b;
}

.cta-button.secondary:hover {
    background-color: #27b;
    color: white;
}

.hero-socials a {
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.hero-socials a:hover {
    color: #27b;
    /* Highlight color on hover */
}


@media (min-width: 769px) {
    #home {
        z-index: 9999;
        -webkit-font-smoothing: antialiased;
        color: white;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(980px, 92vw);
        text-align: center;
        padding: 20px;
    }

}

@media (max-width: 768px) {
    #home {
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 94vw;
        height: calc(100svh - 160px);
        padding: 10px 6px 22px;
        overflow-y: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-photo-container {
        order: 1;
    }

    .hero-photo {
        width: 150px;
        height: 150px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        margin-bottom: 12px;
    }

    .hero-bio {
        margin-bottom: 16px;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}
