
:root {
    --Gold: #ffd700;
    --White: #ffffff;
    --Black: #000000;
    --Gray: #f0f0f0;
}

.footer {
    background-color: var(--Black);
    color: var(--Gold);
    padding: 4px;
    border-top: 2px solid var(--Gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 0;
}

.footer-logo-section {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.logo-text {
    color: var(--Gold);
    font-size: 23px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.footer-links, .footer-resources {
    flex: 1 150px;
    margin-bottom: 20px;
    position: relative;
    top: 8px;
}

.footer-title {
    color: var(--Gold);
    font-size: 18px;
    margin-bottom: 5px;
    padding-bottom: 8px;
}

.footer-links ul, .footer-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    right: -20px;
}

.footer-links li, .footer-resources li {
    margin-bottom: 8px;
}

.footer-links a, .footer-resources a {
    color: var(--Gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-resources a:hover {
    color: var(--Gold);
}

.footer-contact {
    flex: 1 1 300px;
    margin-bottom: 20px;
    position: relative;
    top: 8px;
}

.contact1-info {
    position: relative;
    right: -20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--Gray);
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
    color: var(--Gold);
}

.social-title {
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    position: relative;
    right: -20px;
}

.social-icon img {
    width: 25px;
    height: 25px;
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--Gold);
    font-size: 15px;
    color: var(--White);
    margin-top: 10px;
    padding: 10px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .footer-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 992px) {
    .footer-container {
        justify-content: space-around;
    }
    .footer-logo-section {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .footer-links, .footer-resources, .footer-contact {
        flex: 1 1 30%;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo-section, .footer-links, .footer-resources, .footer-contact {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 25px;
    }
    .footer-links ul, .footer-resources ul {
        right: 0;
    }
    .contact1-info {
        justify-content: center;
        right: 0;
    }
    .social-links {
        justify-content: center;
        right: 0;
    }
    .footer-title {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .logo-img {
        width: 100px;
        height: 100px;
    }
    .logo-text {
        font-size: 18px;
    }
    .footer-title {
        font-size: 16px;
    }
    .footer-links a, .footer-resources a, .contact1-info {
        font-size: 14px;
    }
    .copyright {
        font-size: 12px;
    }
    .footer {
        padding: 20px 10px;
    }
}
