/* FOOTER CSS */
footer {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left h3 {
    margin: 0 0 0 0;
    color: #FDA500;
}

#footer-h3:hover{
  transform: scale(0.99); /* zoom */
  filter: brightness(60%); /* sötétítés */
}

.footer-left h3 {
    display: inline-block;
    margin: 0;
    color: #FDA500;
}


.footer-left p {
    margin: 0;
    font-size: 14px;
}

.footer-center a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-center a:hover {
    color: #FDA500;
}

.footer-right p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.social-icons a {
    margin-right: 10px;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
/*     filter: brightness(0) invert(1);
    transition: transform 0.2s, filter 0.2s; */
}

.social-icons img:hover {
    transform: scale(1.1);
/*     filter: brightness(1) invert(0.6);
 */}

/* Reszponzív */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-center a {
        display: inline-block;
        margin: 0 10px;
    }

    .social-icons {
        margin-top: 10px;
    }
}