/* SVG KÉP */
#footer-img {
    margin-bottom: -20px;
}
/* KÜLSŐ KONTÉNER */
.footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--zold2);
    margin: 0;
    display: flex;
    padding-bottom: 30px;
}
/* KÉT OSZLOP */
.left-column,
.right-column {
    display: flex;
    flex: 50%;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    height: 100%;
    justify-content: center;
}
/* JOBBOLDALI OSZLOPBAN AZ IKONOK ÉS A SZÖVEG */
.right-column i {
    display: inline-block; /* Display icons inline */
    margin-right: 10px; /* Add some space between icons and text */
    margin-bottom: 20px;
    font-size: x-large;
    color: var(--sotet);
}
.right-column p {
    display: inline-block; /* Display text inline */
    margin-right: 20px; /* Add some space between text elements */
}
/* BALOLDALI OSZLOP MENÜJE */
#footer-menu li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}
#footer-menu li a {
    text-decoration: none;
    color: var(--zold);
    font-weight: 600;
    font-size: x-large;
    transition: var(--transitionMode);
}
#footer-menu li a:hover,
.footer a:hover {
    color: var(--sarga);

}
/* COPYRIGHT SZÖVEG ALUL LEGYEN */
.copyright2 {
    display: none;
}
/* FOOTER SZÖVEGEK FORMÁZÁSA */
.footer h2 {
    margin-bottom: 20px;
    color: var(--sotet);
    font-size: x-large;
}
.footer li {
    margin-bottom: 20px;
}
.footer p {
    font-weight: 500;
    color: var(--sotet);
    margin-bottom: 20px;
    font-size: x-large;
}
.footer a {
    text-decoration: none;
    color: var(--zold);
    transition: var(--transitionMode);
}
/* RESZPONZIVITÁS ==> */

@media screen and (max-width: 985px) {
    .footer {
        flex-direction: column; /* Change to single column layout */
        align-items: center; /* Center content horizontally */
    }

    .left-column,
    .right-column {
        flex: 100%; /* Set full width for both columns */
        margin-top: 30px;
    }

    .footer-icons {
        text-align: left; /* Center content within right column */
    }

    .right-column i,
    .right-column p {
        display: inline-block; /* Display elements as block for single column layout */
        text-align: center; /* Center text within right column */
        margin: 10 auto 30px; /* Add margin to separate elements */
    }

    .copyright {
        display: none;
    }
    .copyright2 {
        display: block;
        margin-top: 40px;
    }
}

@media screen and (max-width: 985px) {
    .footer h2,
    #footer-menu li a, 
    .footer p,
    .footer a {
        font-size: x-large;
    }
    .footer h2 {
        text-align: center;
    }
}

@media screen and (max-width: 530px) {
    .footer h2,
    #footer-menu li a, 
    .footer p,
    .footer a {
        font-size: large;
    }
}

@media screen and (max-width: 410px) {
    .footer h2,
    #footer-menu li a, 
    .footer p,
    .footer a {
        font-size: medium;
    }
    .footer p {
        margin-right: 0;
    }
}

@media screen and (max-width: 369px) {
    .footer h2,
    #footer-menu li a, 
    .footer p,
    .footer a {
        font-size: 14px;
    } 
}