/* =========================================
   Elysian Hero Widget Styles
   ========================================= */
.elysian-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: #fff;
    overflow: hidden;
}

.elysian-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.elysian-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.elysian-hero-content {
    max-width: 800px;
}

.elysian-hero-subheading {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ce982b;
    text-transform: uppercase;
}

.elysian-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.1;
}

.elysian-hero-heading em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ce982b;
    /* Gold tint for emphasis */
}

.elysian-hero-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.elysian-hero-buttons {
    display: flex;
    gap: 20px;
}

.elysian-btn {
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.elysian-btn-solid {
    background-color: #f7f3ec;
    color: #1a1a1a;
}

.elysian-btn-solid:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.elysian-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.elysian-btn-outline:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.elysian-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Animations */
.elysian-animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .elysian-hero-heading {
        font-size: 42px;
    }

    .elysian-hero-buttons {
        flex-direction: column;
        align-items: start;
    }
}