/* =========================================================
   VIDEO HERO COMPONENT — mobile-first
   ========================================================= */

:root {
    --hero-overlay-default: rgba(0, 0, 0, 0.4);
    --hero-overlay-light:   rgba(0, 0, 0, 0.25);
    --hero-overlay-dark:    rgba(0, 0, 0, 0.55);
    --hero-text-shadow:     0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1c1c1c;
}

.video-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

/* Overlays */
.video-hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--hero-overlay-default);
    z-index: 2;
    pointer-events: none;
}

.video-hero__overlay--gradient-bottom {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.video-hero__overlay--gradient-top {
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.video-hero__overlay--gradient-center {
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
}

.video-hero__overlay--light  { background: var(--hero-overlay-light); }
.video-hero__overlay--dark   { background: var(--hero-overlay-dark); }

.video-hero__overlay--gold-tint {
    background: linear-gradient(135deg, rgba(198,176,105,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

/* Content */
.video-hero__content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.video-hero__content--full-width {
    width: 100%;
    max-width: none;
    padding: 3rem 5%;
}

.video-hero__content--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-hero__content--left {
    text-align: left;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-hero__content--right {
    text-align: right;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.video-hero__content--right .video-hero__actions { align-self: center; }

.video-hero__content--bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding-bottom: 3rem;
}

.video-hero__content--top {
    align-self: flex-start;
    padding-top: 6rem;
}

/* Typography */
.video-hero__title {
    font-size: clamp(1.8rem, 6vw, 3.8rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem;
    text-shadow: var(--hero-text-shadow);
    line-height: 1.2;
}

.video-hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem;
    text-shadow: var(--hero-text-shadow);
    line-height: 1.6;
    max-width: 700px;
}

.video-hero__content--center .video-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.video-hero__title--gold-accent {
    background: linear-gradient(135deg, #ffffff 0%, #C6B069 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.1em;
}

/* Actions — stacked on mobile, inline on md+ */
.video-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
    width: 100%;
}

.video-hero__content--center .video-hero__actions {
    align-items: center;
}

.video-hero__btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: none;
    backdrop-filter: blur(10px);
    text-align: center;
}

.video-hero__btn--primary {
    background: rgba(198, 176, 105, 0.95);
    color: #1c1c1c;
    border: 2px solid transparent;
}

.video-hero__btn--primary:hover {
    background: rgba(198, 176, 105, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 176, 105, 0.4);
}

.video-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.video-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.video-hero__btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(198, 176, 105, 0.8);
}

.video-hero__btn--outline:hover {
    background: rgba(198, 176, 105, 0.2);
    border-color: rgba(198, 176, 105, 1);
}

/* Scroll indicator — hidden on mobile */
.video-hero__scroll-indicator {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.video-hero__scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

/* md+ */
@media (min-width: 768px) {
    .video-hero {
        min-height: 70vh;
    }

    .video-hero__content {
        padding: 4rem 2rem 5rem;
    }

    .video-hero__content--left  { padding-left: 4rem; }
    .video-hero__content--right { padding-right: 4rem; }

    .video-hero__content--bottom { padding-bottom: 4rem; }
    .video-hero__content--top    { padding-top: 7rem; }

    .video-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        gap: 1.2rem;
    }
}

/* lg+ */
@media (min-width: 1024px) {
    .video-hero {
        min-height: 85vh;
    }

    .video-hero__content {
        padding: 4rem 2rem 6rem;
    }

    .video-hero__content--bottom { padding-bottom: 5rem; }
    .video-hero__content--top    { padding-top: 8rem; }

    .video-hero__btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .video-hero__scroll-indicator {
        display: flex;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%  { transform: translateX(-50%) translateY(-10px); }
    60%  { transform: translateX(-50%) translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
    .video-hero__content,
    .video-hero__scroll-indicator { animation: none; }
    .video-hero__btn { transition: none; }
    .video-hero__background { display: none; }
    .video-hero { background: linear-gradient(135deg, #1c1c1c 0%, #2c2c25 100%); }
}
