/* Footer Styles */
.footer-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding-top: 3rem;
    margin-top: auto; /* Push to bottom if flex column layout */
    font-family: "Caveat Brush", cursive;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section-title {
    font-family: "Fjalla One", sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #7D3131;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-info-item:hover {
    color: white;
}

.footer-info-item i {
    width: 20px;
    text-align: center;
    color: #7D3131;
}

.footer-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-brand-img {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.footer-brand-img:hover {
    transform: scale(1.02);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-btn:hover {
    background: #7D3131;
    transform: translateY(-3px);
    color: white;
    border-color: #7D3131;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
