﻿footer {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #760e26;
    margin-top: 16px;
    opacity: 0.85;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.footer-wrapper {
    background-color: #f5f5f5;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.footer-logo img {
    max-width: 100px;
    border-radius: 10px;
    padding: 10px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-social-row a,
    button,
    form {
        color: var(--primary);
        text-decoration: none;
        font-size: 1.2em;
        font-weight: 600;
        position: relative;
        padding-bottom: 3px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-social-row .logout-btn {
        border: none;
        padding-top: 0.1em;
        font-family: inherit;
        font-size: 1em;
        cursor: pointer;
        background-color: transparent;
    }

@media screen and (max-width: 768px) {
    .footer-social-row {
        flex-direction: column;
        gap: 15px;
    }

        .footer-social-row a,
        .footer-social-row button {
            font-size: 1.1em;
            width: 100%;
            padding: 8px 0;
        }

    .footer-logo img {
        max-width: 80px;
    }

    footer {
        font-size: 12px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1366px) {
    .footer-social-row {
        gap: 20px;
    }

    .footer-wrapper {
        padding: 10px 20px;
    }
}
