.site-footer {
    background-color: #8b9982;
    color: #000;
    padding: 30px 40px 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

p, tr {
    unicode-bidi: isolate;
}

h4 {
    font-family: 'PlayfairDisplay', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px 40px 1px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}

/* Logo balra */
.footer-logo img {
    height: 330px;
}

/* Nyitvatartás + Elérhetőség középen */
.footer-info-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 260px;
    max-width: 350px;
}

/* Info dobozok stílusa */
.footer-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.footer-box h4 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: bold;
}

/* Nyitvatartás tábla */
.opening-hours table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.opening-hours td {
    padding: 4px 0;
}

/* Elérhetőségek */
.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-info a:hover {
    color: #a67852;
}

/* Google Maps doboz jobb oldalon */
.footer-map {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 326px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Lábléc alsó része */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 20px;
    font-size: 13px;
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom .developer a {
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.footer-bottom .developer a:hover {
    color: #a67852;
}

/* Mobil nézet */
@media (max-width: 930px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-info-sections {
        align-items: center;
    }

    .footer-box {
        text-align: center;
        width: 100%;
        max-width: 380px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .opening-hours table {
        text-align: left;
    }

    .footer-content {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-map {
        width: 100%;
        max-width: 300px;
        height: 270px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 13px;
        overflow: hidden;
        margin: 0 auto;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
}

@media (max-width: 405px) {
    .footer-logo img {
        height: auto;
        max-height: 180px;
        max-width: 80%;
    }

    .footer-map {
        min-width: auto;
        width: 100%;
        height: 200px;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer-info-sections,
    .footer-box {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-bottom {
        padding: 5px 10px;
    }
}
