/* Hero Section with Video Background */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* Fallback background - black instead of green */
.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
}

/* Dark overlay on video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    z-index: 10;
    max-width: 900px;
    color: #fff;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 300;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.9;
    margin-bottom: 3rem;
}
