.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-tagline {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.hero-tagline h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
    .hero-tagline h1 {
        font-size: 2rem;
    }
}

#typed-text {
    color: #fff;
}

.chevron-down {
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% + 200px);
    z-index: 2;
    animation: pulse 2s infinite;
}

.chevron-down:hover {
    color: #16292F;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
    100% { transform: translateX(-50%) scale(1); }
}