.site-footer {
    background-image: url('/images/navbar.png');
    color: #fff;
    padding: 30px 0;
    font-size: 0.95rem;
    font-family: 'Pretoria', serif;
    border-top: 2px solid black;
}

.site-footer .container {
    max-width: 1200px;
    margin: auto;
}

/* Row 1 */
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}



.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-height: 120px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #3b1f0e;
}

.footer-desc {
    font-size: 0.95rem;
    margin: 0;
    color: #3b1f0e;
}

/* Social Link Styling */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1); /* subtle background */
    border-radius: 50%;
    color: white; /* icon color */
    font-size: 20px; /* icon size */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.social-link:hover {
    background-color: #000; /* Black hover (matches X branding) */
    color: #fff;
    transform: scale(1.1);
}

/* Optional: Glow Effect */
.social-link:hover i {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


.social-icon {
    font-size: 1.8rem;
    color: #3b1f0e;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
    transform: scale(1.1);
    color: #fff;
}

.footer-disclaimer {
    color: #3b1f0e;
    font-size: 0.9rem;
    margin: 0;
    max-width: 300px;
}


/* Row 2 - Legal footer */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #3b1f0e;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-legal span {
    color: #3b1f0e;
}

/* Row 3 - Designer credit */
.footer-credit {
    color: #3b1f0e;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 10px;
}

.designer-logo {
    max-height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-center, .footer-right {
        margin: 10px 0;
    }
}
