/* Base styles for Genesis Cruise Widgets */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.3), rgba(26, 54, 93, 0.7));
}

.genesis-hero-section {
    position: relative;
    height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.genesis-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Fix for Elementor full-width columns */
.elementor-widget-genesis_hero .elementor-widget-container {
    padding: 0 !important;
}

.genesis-hero-section {
    min-height: 85vh;
}

