/* VFX Hero Styles */
:root {
    --vh-amber: #E87722;
    --vh-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.vfx-hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Background & Media */
.vh-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.vh-bg-media {
    position: absolute;
    inset: -5%;
    /* Extra room for zoom */
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

/* Ken Burns Effect */
[data-zoom="yes"] .vh-bg-media {
    animation: vh-ken-burns 40s linear infinite alternate;
}

@keyframes vh-ken-burns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

.vh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    /* Vignette */
}

.vh-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Layout */
.vh-container {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.vh-content {
    max-width: 800px;
}

/* Typography */
.vh-title {
    font-size: 100px;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.vh-title-colored {
    color: var(--vh-amber);
    font-weight: 300;
    letter-spacing: -2px;
}

.vh-line-decor {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 45px;
    width: 102px;
}

/* Primary Amber Segment */
.vh-line-decor .vh-line-main {
    width: 20px;
    height: 1px;
    background: var(--vh-amber);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(232, 119, 34, 0.4);
}

/* Secondary Amber Segments */
.vh-line-decor .vh-line-dot {
    width: 5px;
    height: 1px;
    background: var(--vh-amber);
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.vh-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 60px;
    letter-spacing: 0.3px;
}

/* Features Icons */
.vh-features {
    display: flex;
    gap: 45px;
    margin-bottom: 70px;
}

.vh-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center icons/labels */
    text-align: center;
    gap: 12px;
}

.vh-feature-icon {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--vh-amber);
    filter: drop-shadow(0 0 8px rgba(232, 119, 34, 0.4));
}

.vh-feature-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.vh-feature-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Buttons */
.vh-buttons {
    display: flex;
    gap: 20px;
}

.vh-btn {
    padding: 14px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--vh-transition);
}

.vh-btn-primary {
    border-color: rgba(232, 119, 34, 0.5);
    color: var(--vh-amber);
}

.vh-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vh-btn-icon svg {
    width: 100%;
    height: 100%;
}

/* Specific icon styles to match design */
.vh-btn-primary .vh-btn-icon {
    transform: scaleY(0.9);
    /* Slightly flattened to match cinematic style */
}

.vh-btn:hover .vh-btn-icon {
    transform: translateX(6px);
}

.vh-btn-primary:hover .vh-btn-icon {
    transform: scaleY(0.9) translateX(6px);
}

.vh-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #E87722;
    transform: translateY(-2px);
}

.vh-btn-primary:hover {
    border-color: var(--vh-amber);
    background: rgba(232, 119, 34, 0.05);
    box-shadow: 0 0 20px rgba(232, 119, 34, 0.2);
}


/* Responsive */
@media (max-width: 1024px) {
    .vh-title {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .vh-title {
        font-size: 60px;
    }

    .vh-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .vh-buttons {
        flex-direction: column;
    }
}