.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
    background-image:
        linear-gradient(rgba(28, 24, 21, 0.85), rgba(26, 16, 5, 0.95)),
        url('../assets/media/webteam.webp');
    /* Added ../ here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    transition: min-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.scrolled {
    min-height: 250px;
}

.hero-logo {
    max-width: 300px;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(166, 106, 56, 0.3));
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(166, 106, 56, 0.3);
    line-height: 1.1;
}

.hero-text p {
    font-size: 2.05rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(166, 106, 56, 0.3);
    line-height: 1.4;
}

@media (max-width: 820px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

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

.video {
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: 2rem auto;
    background-color: var(--surface-hover);

    video {
        height: 100%;
        width: 100%;
        border-radius: var(--border-radius);
    }

    border: 6px solid rgba(166, 106, 56, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}


.section-container {
    margin-bottom: 2rem;
}

.text-block {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}