﻿#site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.footer-left a {
    margin-right: 0.8rem;
    text-decoration: none;
}

.footer-left svg {    
    width: 48px;
    height: 48px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.footer-left svg:hover {
    transform: scale(1.2);
}

.footer-right {
    color: #444;
    white-space: nowrap;
    text-align: right;
}

.footer-center {
    color: #444;
    white-space: nowrap;
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Default: align left */
#site-footer {
    justify-content: space-between;
}

/* Center the icons only in landscape mode */
@media screen and (orientation: landscape) {
    .footer-left {
        justify-content: center;
        width: 100%;
        margin-left: 10rem;
    }
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: var(--accent-color, #3366cc);
    }

@media (max-width: 300px) {
    .footer-right {
        white-space: wrap;
    }
}

