﻿.app-footer {
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    color: white;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #1f2937;
}

    .app-footer .left {
        padding-left: 20px;
        flex: 3;
        display: flex;
        justify-content: flex-start;
        text-align: center;
    }

        .app-footer .left h1 {
            margin: 0;
            font-size: 1.1rem;
            color: #f9fafb;
            /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0 0 10px rgba(59, 130, 246, 0.6);*/
            transition: transform 0.3s ease, text-shadow 0.3s ease;
        }

            .app-footer .left h1:hover {
                transform: scale(1.05);
                /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(59, 130, 246, 0.8);*/
            }

    .app-footer .center {
        flex: 1;
        display: flex;
        justify-content: center;
        gap: 40px;
    }

        .app-footer .center a img {
            height: 40px;
            width: auto;
            cursor: pointer;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }

            .app-footer .center a img:hover {
                transform: scale(1.1);
            }

    .app-footer .right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
        gap: 20px;
    }

        .app-footer .right .logo {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            filter: grayscale(30%) brightness(0.9);
        }

            .app-footer .right .logo:hover {
                transform: scale(1.1);
                filter: grayscale(0%) brightness(1);
            }

@media (max-width: 768px) {
    .app-footer {
        flex-direction: column;
        padding: 15px 20px;
        height: 100px;
    }

        .app-footer .left, .app-footer .center, .app-footer .right {
            flex: none;
            margin: 10px 0;
            justify-content: center !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            text-align: center;
        }

        .app-footer .center {
            gap: 10px;
            flex-wrap: wrap;
        }

        .app-footer .right {
            width: 80%;
            max-width: none;
            background-position: right 10px center;
        }

            .app-footer .right .logo {
                display: none;
            }
}
