/* Hero section styling with video background */
.hero {
    position: relative;
    background-color: wheat; /* Fallback color */
    margin-bottom: 0;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    opacity: 0.3; /* 30% visibility */
    filter: sepia(0.5) contrast(1.1) brightness(0.9) grayscale(0.2); /* Vintage filter */
    transition: opacity 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    color: var(--seed);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--creek);
    max-width: 650px;
    margin: 0 auto;
}

.hero img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Video clone for smooth looping */
.hero-video-clone {
    opacity: 0;
}

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .hero .d-flex {
        justify-content: center;
    }
    
    .hero img {
        margin-top: 2rem;
        max-height: 400px !important;
    }
}