/* Lábléc stílusok */
.main-footer {
    background-color: #34495e;
    color: white;
    padding: 30px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Vissza gomb */
.footer-back {
    text-align: center;
}

.back-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.back-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Szociális média */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #3498db;
    text-decoration: none;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Jogi linkek */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    border-top: 1px solid #4a6278;
    padding-top: 20px;
}

.footer-copyright p {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

/* Reszponzív lábléc */
@media (max-width: 768px) {
    .footer-container {
        gap: 20px;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 20px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link img {
        width: 18px;
        height: 18px;
    }
}