/**
 * Custom Hero Section Styles
 * Replaces Slider Revolution hero
 */

.elvita-hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #000;
    height: 900px;
}

.elvita-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.elvita-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.elvita-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.elvita-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.elvita-hero-content-inner {
    text-align: center;
    max-width: 800px;
}

.elvita-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 30px 0;
    text-shadow: 7px 7px 10px rgba(0, 0, 0, 0.75);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.elvita-hero-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 15px 40px;
    border-radius: 3px;
    background-color: #76AAD2;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.elvita-hero-button:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .elvita-hero-section {
        height: 700px;
    }
    
    .elvita-hero-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .elvita-hero-section {
        height: 500px;
    }
    
    .elvita-hero-title {
        font-size: 18px;
        max-width: 80%;
    }
    
    .elvita-hero-button {
        font-size: 14px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .elvita-hero-section {
        height: 450px;
    }
    
    .elvita-hero-title {
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 85%;
    }
    
    .elvita-hero-button {
        font-size: 13px;
        padding: 10px 25px;
    }
}

/* Extra small mobile devices */
@media (max-width: 390px) {
    .elvita-hero-section {
        height: 400px;
    }
    
    .elvita-hero-title {
        font-size: 15px;
        max-width: 90%;
    }
}
