/* ALAPOK */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
}

.hero-bg.active { opacity: 1; }

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
 
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TARTALOM ELRENDEZÉS */
.hero-slides-wrapper {
    position: relative;
    z-index: 5;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* SZÖVEG */
.hero-content {
    flex: 0 1 500px;

    z-index: 10;
}

.hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(6rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-50px);
}

.hero-slide.active h1 {
    animation: pastryIn 0.8s forwards 0.2s;
}

/* KÉP ÉS ÁRNYÉK */
.hero-asset {
    flex: 0 1 500px;
    display: flex;
    justify-content: center;
}

.hero-asset img {
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3)) 
            drop-shadow(0 25px 35px rgba(0,0,0,0.4)) 
            drop-shadow(0 40px 60px rgba(0,0,0,0.2));
    opacity: 0;
    transform: translateX(50px);
}

.hero-slide.active .hero-asset img {
    animation: pastryIn 0.8s forwards 0.4s, pastryFloat 6s ease-in-out infinite;
}

/* MOBIL NÉZET - Itt javítjuk a hibákat */
@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column; /* Egymás alá rakja őket */
        text-align: center;
        padding-top: 80px; /* Hely a fejlécnek */
        justify-content: flex-start;
        gap: 20px;
    }

    .hero-content {
        flex: 0 0 auto;
        order: 1; /* Szöveg felül */
        width: 100%;
    }

    .hero-asset {
        flex: 0 0 auto;
        order: 2; /* Kép alul */
        width: 100%;
    }

    .hero-asset img {
        width: 70%; /* Kisebb süti mobilon */
        max-width: 380px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        transform: translateY(-30px);
        translateX: 0;
    }
}

/* ANIMÁCIÓK */
@keyframes pastryIn {
    to { opacity: 1; transform: translate(0,0); }
}

@keyframes pastryFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #c08d5d;
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}