.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 1;
}

@media (max-width: 3532px) {
    .hero-image {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-logo-vertical {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vertical-logo {
    height: auto;
    max-width: 350px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .vertical-logo {
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        padding: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
