.simple-footer {
    background-color: #1E5631;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border-top: none !important;
    flex-wrap: wrap;
    gap: 15px;
    flex-shrink: 0;
}

.footer-left p {
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
    font-family: 'Poppins', sans-serif;
}

.footer-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-right a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(100%);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 6px;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    filter: brightness(120%);
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

/* Mobilon a három rész (left, right, copyright) egymás alá kerüljön */
@media (max-width: 768px) {
    .simple-footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-left { text-align: center; }
    .footer-right { justify-content: center; }

    /* Eltűnik a “csak ©” probléma: külön sor, teljes szélesség, középre */
    .footer-copyright {
        order: 99;          /* mindig a végére kerüljön */
        flex: 0 0 100%;
        width: 100%;
        display: block;
        text-align: center;
        white-space: normal;  /* biztos, hogy törhet a szöveg */
        margin-top: 8px;
    }

    /* Ne limitálja feleslegesen a szélességet mobilon */
    .footer-left p { max-width: none; }
}

