/* =============================================
   Homepage Hero Section - Vortice 2027
   ============================================= */

/* ---- Animations ---- */
@keyframes subtle-zoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ---- Force Fira Sans on everything inside hero ---- */
.vortice-hero,
.vortice-hero *,
.vortice-hero h1,
.vortice-hero h2,
.vortice-hero h3,
.vortice-hero p,
.vortice-hero a,
.vortice-hero span,
.vortice-hero div {
    font-family: 'Fira Sans', sans-serif !important;
}

/* ---- Hero Container ---- */
.vortice-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

/* ---- Video Background ---- */
.vortice-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vortice-hero-video-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 50, 20, 0.45);
    z-index: 1;
}

.vortice-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-out infinite alternate;
}

/* ---- Diagonal Green Slash Overlay ---- */
.vortice-hero-slash {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: polygon(0 0, 65% 0, 45% 100%, 0% 100%);
    background: linear-gradient(to right, rgba(0, 70, 28, 0.97), rgba(0, 80, 35, 0.92), rgba(0, 70, 28, 0.80));
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* ---- Decorative Line on Slash Edge ---- */
.vortice-hero-slash-border {
    position: absolute;
    inset: 0;
    z-index: 3;
    clip-path: polygon(64.8% 0, 65.2% 0, 45.2% 100%, 44.8% 100%);
    background: rgba(255, 255, 255, 0.30);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* ---- Content ---- */
.vortice-hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100%;
    align-items: center;
}

@media (min-width: 1024px) {
    .vortice-hero-content {
        padding: 0 64px;
    }
}

.vortice-hero-text {
    grid-column: 1 / -1;
    color: #fff;
    padding-top: 80px;
}

@media (min-width: 1024px) {
    .vortice-hero-text {
        grid-column: 1 / 7;
        padding-top: 0;
    }
}

/* ---- Badge ---- */
.vortice-hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: fadeInDown 1s ease-out both;
}

.vortice-hero-badge-line {
    height: 1px;
    width: 48px;
    background: rgba(255, 255, 255, 0.6);
}

.vortice-hero-badge span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Fira Sans', sans-serif !important;
}

/* ---- Title ---- */
.vortice-hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    margin: 0 0 32px 0;
    padding: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Fira Sans', sans-serif !important;
}

.vortice-hero-bold {
    font-weight: 600 !important;
    font-size: 1.05em;
}

.vortice-hero-italic {
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300 !important;
}

.vortice-hero-title strong,
.vortice-hero-title b {
    font-weight: 600 !important;
    font-size: 1.05em;
}

.vortice-hero-title em,
.vortice-hero-title i:not(.fa-solid):not(.fa-regular):not(.far):not(.fas) {
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300 !important;
}

@media (min-width: 768px) {
    .vortice-hero-title {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .vortice-hero-title {
        font-size: 72px;
    }
}

/* ---- Description ---- */
.vortice-hero-desc {
    position: relative;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.vortice-hero-desc p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.375;
    max-width: 520px;
    margin: 0;
    font-family: 'Fira Sans', sans-serif !important;
}

@media (min-width: 1024px) {
    .vortice-hero-desc p {
        font-size: 19px;
    }
}

/* ---- Floating Scroll Indicator (left side, rotated) ---- */
.vortice-hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 64px;
    z-index: 4;
    display: none;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: left center;
    translate: 0 12px;
    font-family: 'Fira Sans', sans-serif !important;
}

.vortice-hero-scroll-line {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 1024px) {
    .vortice-hero-scroll {
        display: flex;
    }
}

/* ---- Floating Arrow Down (bottom right) ---- */
.vortice-hero-arrow {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

.vortice-hero-arrow i {
    font-size: 14px;
}

@media (min-width: 1024px) {
    .vortice-hero-arrow {
        display: flex;
    }
}

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

/* ---- Mobile adjustments ---- */
@media (max-width: 767px) {
    .vortice-hero {
        min-height: 500px;
        height: 85vh;
    }

    .vortice-hero-slash {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    }

    .vortice-hero-slash-border {
        clip-path: polygon(100% 59.5%, 100% 60.5%, 0% 100.5%, 0% 99.5%);
    }

    .vortice-hero-content {
        padding: 0 20px;
        align-items: flex-start;
    }

    .vortice-hero-text {
        padding-top: 120px;
    }
}
