.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* VIDEO */

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: rgba(15,17,21,0.55);
    
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(15, 17, 21, 0.87);
    padding: 40px;
    max-width: 650px;
}

.hero-location {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    color: #d1d5db;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(30,61,255,0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
}