/* ==========================================
   VIDEO BACKGROUND HERO
   ========================================== */

.video-background-holder {
    position: relative;
    background-color: #0a0a0a;
    height: 100vh;
    min-height: 30rem;
    width: 100%;
    overflow: hidden;
}

.video-background-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    object-position: center;
}

.video-background-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

/* ==========================================
   HERO CONTENT
   ========================================== */

.hero-inner {
    max-width: 640px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    line-height: 1.65;
}

/* Play button */
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, color 0.2s ease;
}

.play-btn:hover {
    color: var(--bs-primary);
    transform: scale(1.04);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.play-btn:hover .play-icon {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.play-icon .icon-play {
    font-size: 1rem;
    color: #fff;
    margin-left: 3px;
}

.play-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

/* Estate badge */
.hero-badge {
    display: inline-block;
}

.badge-text {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
}

/* ==========================================
   MOBILE ADJUSTMENTS
   ========================================== */

@media (max-width: 767px) {
    .video-background-holder {
        height: 100svh; /* Use small viewport height on mobile */
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .play-icon {
        width: 44px;
        height: 44px;
    }

    .hero-inner {
        padding-top: 80px; /* clear the navbar */
    }

    .btn-outline-light {
        font-size: 0.85rem;
        padding: 8px 18px !important;
    }
}

/* ==========================================
   NAVBAR POLISH
   ========================================== */

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.site-nav .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -0.3px;
}

@media (max-width: 767px) {
    .site-nav .logo {
        font-size: 0.95rem;
    }
}
