/* ============================================
   SARATOGA WATCH CO. — Hero Section
   Scoped to: .swc-hero-wrapper
   ============================================ */

.swc-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--swc-black) !important;
}

/* ── Video Background ── */
.swc-hero__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.swc-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.swc-hero__fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── Overlay ── */
.swc-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
}

/* ── Content ── */
.swc-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 40px 24px;
}

.swc-hero__heading {
    font-family: var(--swc-font-heading) !important;
    font-size: 56px !important;
    font-weight: 700;
    color: var(--swc-white) !important;
    margin: 0 0 8px !important;
    letter-spacing: 1px;
    line-height: 1.1 !important;
}

.swc-hero__subheading {
    font-family: var(--swc-font-heading) !important;
    font-size: 22px !important;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 24px !important;
    letter-spacing: 2px;
}

.swc-hero__description {
    font-family: var(--swc-font-body) !important;
    font-size: 16px !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 0 40px !important;
    line-height: 1.7 !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── CTA Button ── */
.swc-hero__cta {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--swc-font-body) !important;
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--swc-white) !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 0;
    cursor: pointer;
    transition: var(--swc-transition);
    text-decoration: none !important;
}

.swc-hero__cta:hover {
    background-color: var(--swc-white) !important;
    color: var(--swc-black) !important;
    border-color: var(--swc-white) !important;
}

/* ── Scroll Indicator ── */
.swc-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    cursor: pointer;
}

.swc-hero__scroll::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: swc-scroll-bounce 2s infinite;
}

@keyframes swc-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .swc-hero__heading {
        font-size: 42px !important;
    }
    .swc-hero__subheading {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .swc-hero-wrapper {
        min-height: 80vh;
    }
    .swc-hero__heading {
        font-size: 32px !important;
    }
    .swc-hero__subheading {
        font-size: 16px !important;
    }
    .swc-hero__description {
        font-size: 14px !important;
    }
    .swc-hero__cta {
        padding: 12px 32px;
        font-size: 12px !important;
    }
}
