body {
    margin: 0;
    padding: 0;
}

.footer {
    position: relative;
    width: 100%;
    height: auto;
}

.footer-bg-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

    .footer-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.footer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 30px;
    text-align: center;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
    margin-top: 140px;
}

.home-button-section {
    margin-top: -10px;
}

.home-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #2c5aa0;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .home-btn:hover {
        background: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* Social Section */
.social-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
    padding-top: 20px;
}

.follow-text {
    font-size: 1.9rem;
    font-weight: bold;
    font-family: #efe7e7;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-icon:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .social-icon i {
        font-size: 1.2rem;
    }

/* Footer Links */
.footer-links {
    margin: 20px 0;
}

.links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 0 15px;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

    .footer-link:first-child {
        border-left: none;
        padding-left: 0;
    }

    .footer-link:hover {
        color: white;
        transform: translateY(-1px);
    }

    .footer-link::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
    }

    .footer-link:hover::after {
        width: 100%;
    }

/* Copyright */
.copyright {
    text-align: center;
    margin-top: -40px;
    padding-top: 20px;
    width: 100%;
    font-size: 1.2rem;
}

    .copyright p {
        color: white;
        font-size: 1.2rem;
    }

/* Responsive */
@media (max-width: 768px) {

    .links-row {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }

    .home-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .footer-content {
        position: absolute;
        z-index: 2;
        gap: 25px;
        padding: 40px 15px 20px;
    }

    .footer-bg-image img {
        min-height: 850px; 
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 10px 15px;
        gap: 20px;
    }

    .links-row {
        gap: 15px;
        padding: 0 10px;
    }

    .home-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .follow-text {
        font-size: 1.6rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        margin-right: 4px;
    }

    .footer-link {
        font-size: 1rem;
        padding: 0 10px;
    }

    .copyright {
        font-size: 1rem;
        margin-top: -30px;
        padding-top: 15px;
    }
}
