.warpdrive-hero {
    width: 100%;
    height: 100vh;
    background-image: url('../images/HeaderBackgroundWarpcore.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.3);
    color: white;
    padding: 50px 60px;
    border-radius: 15px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.hero-overlay h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
}

.hero-overlay p {
    margin: 0;
    font-size: clamp(18px, 3vw, 28px);
}

@media screen and (max-width: 768px) {
    .hero-overlay {
        padding: 25px 20px;
        max-width: 90%;
        gap: 15px;
    }
    .hero-overlay h1 {
        font-size: clamp(28px, 8vw, 48px);
    }
    .hero-overlay p {
        font-size: clamp(14px, 4vw, 22px);
}
