.main-footer {
    background-color: #1b3022;
    color: #fcf9f2; /* Warm parchment text */
    padding: 80px 20px 40px;
    border-top: 4px solid #b39347; /* Logo gold accent line at the top */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-col.centre{
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin-top: 3em;
}

.footer-logo{
    height: 100px;
    width: auto;
}


.footer-col h4 {
    color: #b39347; /* Logo gold */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.give-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Styling the Bank Details Box */
.bank-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #b39347;
}

.bank-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #b39347;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.bank-details p {
    margin: 3px 0;
    font-size: 0.95rem;
    font-family: 'Courier New', Courier, monospace; /* Makes numbers easier to read */
}

/* Instagram Link */
.footer-socials {
    list-style: none;
    padding: 0;
}

.footer-address a{
    color: #fcf9f2;
    text-decoration: none;
}

.social-link {
    color: #fcf9f2;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #b39347;
}

.footer-address a:hover{
    color: #b39347;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .main-footer {
        text-align: center;
        padding: 60px 20px 30px;
    }
    .bank-details {
        text-align: left; /* Keep bank info left-aligned for clarity */
        display: inline-block;
    }
    .social-link {
        justify-content: center;
    }
}