main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.landing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    padding: 40px;
}

/* --- KÉP --- */
.landing-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.kiki-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(54, 20, 104, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* --- SZÖVEG --- */
.landing-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.landing-logo {
    width: 180px;
    margin-bottom: 40px;
}

.landing-text-col h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.landing-text-col p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.8;
}

/* --- KÉP ANIMÁCIÓ - lebegés --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- RESZPONSZÍV MOBIL NÉZET --- */
@media (max-width: 900px) {
    .landing-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .landing-image-col {
        justify-content: center;
    }

    .landing-text-col {
        align-items: center;
    }

    .landing-logo {
        margin-bottom: 20px;
    }

    .landing-text-col h1 {
        font-size: 2.2rem;
    }
}