/* Footer Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#footerContainer {
    margin-top: auto;
}

.site-footer {
    background: #FFE5E5;
    color: #333333;
    padding: 30px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #FFC0C0 0px,
        #FFC0C0 80px,
        #FF9090 80px,
        #FF9090 160px
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.footer-logo {
    height: 120px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2C2C2C;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.footer-links a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-links .separator {
    color: #CCC;
    user-select: none;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 90px;
    }

    .footer-brand-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 25px 15px;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-brand-name {
        font-size: 1.3rem;
    }
}
