/* Footer Background */
.footer {
    position: relative;
    background: url("img/bgblr.jpg") center/cover no-repeat;
    color: white;
    padding: 60px 40px 20px;
    animation: fadeIn 1.8s ease-in-out;
}

/* Dark overlay */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Logo */
.footer-logo {
    width: 120px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px #000);
}

/* Text */
.footer-text {
    line-height: 1.6;
    max-width: 280px;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 3px solid #e1a448;
    padding-left: 8px;
    text-transform: uppercase;
}

/* Links styles */
.footer-links li {
    list-style: none;
    margin: 8px 0;
}

.footer-links a {
    text-decoration: none;
    color: #f5f5f5;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e1a448;
    padding-left: 6px;
}

/* Contact list */
.footer-contact li {
    margin: 10px 0;
    list-style: none;
    opacity: 0.9;
}

/* Divider */
.footer-line {
    margin-top: 30px;
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

/* Bottom text */
.footer-bottom {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-heading {
        border-left: none;
        padding-left: 0;
    }
}
