.luxe-hero-wrapper-19a49a65 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.luxe-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 13, 20, 0.45);
    z-index: 1;
}

.luxe-hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Inner flex wrapper – ez kezeli a függőleges igazítást */
.luxe-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* default: alul */
    flex: 1 1 auto;
    min-height: inherit;
    padding: 60px;
    box-sizing: border-box;
}

.luxe-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-end;
    width: 100%;
}

.luxe-hero-main-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

.luxe-hero-right {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.luxe-hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.luxe-hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.luxe-hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #ffffff;
    color: #0A0D14;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-sizing: border-box;
    text-align: center;
}

.luxe-hero-btn:hover {
    background-color: #AB8A62;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(171, 138, 98, 0.3);
}

.luxe-hero-btn-sec {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 34px;
}

.luxe-hero-btn-sec:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .luxe-hero-inner {
        padding: 50px 40px;
    }
    .luxe-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .luxe-hero-right {
        max-width: 100%;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .luxe-hero-inner {
        padding: 40px 20px;
        justify-content: center; /* Center content vertically on small mobile if needed */
    }
    .luxe-hero-container {
        display: flex;
        flex-direction: column;
    }
    /* Reversed order logic using prefix_class */
    .luxe-hero-reverse-yes .luxe-hero-container {
        flex-direction: column-reverse;
    }
    .luxe-hero-main-title {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.2;
    }
    .luxe-hero-right {
        gap: 20px;
        width: 100%;
    }
    .luxe-hero-description {
        font-size: 15px;
        line-height: 1.5;
    }
    .luxe-hero-btn-group {
        flex-direction: column;
        gap: 12px;
    }
    .luxe-hero-btn {
        width: 100%;
        padding: 12px 24px;
    }
    .luxe-hero-btn-sec {
        padding: 10px 22px;
    }
}
