/* ========== Footer Styling ========== */
.footer {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #212529;
    border-top: 2px solid #ddd;
    padding: 3rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    z-index: 100;
}

/* Social icons adjustments - make them display horizontally */
.footer .social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}

.footer .social-icons a {
    display: inline-flex;
    margin-right: 15px;
}

/* Make footer stick to bottom with no gap */
.footer {
    margin-bottom: 0;
    width: 100%;
    margin-top: auto;
}

/* Add these to ensure no gap at bottom */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Footer Heading Styling */
.footer .footer-heading {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Footer Text Styling */
.footer .footer-text {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Contact Info Compact Styling */
.footer .contact-info {
    display: flex;
    flex-direction: column;
}

.footer .contact-info .footer-text {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

/* Admin Link Styling - Less Obvious */
.footer .admin-link {
    color: #999;
    font-size: 1.7rem;
    text-decoration: none;
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer .admin-link:hover {
    color: #555;
    background-color: #f8f9fa;
}

/* Footer Social Media Button Styling */
.footer .social-icons a {
    font-size: 1.7rem;
    margin-right: 15px;
    padding: 5px;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-icons a:hover {
    background-color: #495057;
}

.footer .social-icons i, .footer .social-icons img {
    width: 24px;
    height: 24px;
}

/* Optional: If you want the images to fit within the button, use the following */
.footer .social-icons img {
    max-width: 80%;
    max-height: 80%;
}

/* Footer Columns Styling */
.footer .col-md-4 {
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Footer Copyright Styling */
.footer .footer-copyright {
    font-size: 1.5rem;
    color: #6c757d;
    margin-top: 20px;
}

/* Flexbox layout for footer */
.footer .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .col-md-4 {
    width: 30%;
    text-align: left;
}

.footer .text-md-end {
    text-align: right;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    /* Stack columns vertically on small screens */
    .footer .row {
        flex-direction: column;
        align-items: center;
    }

    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer .text-md-end {
        text-align: center;
    }

    /* Center social media icons on smaller screens */
    .footer .social-icons {
        justify-content: center;
    }

    /* Center contact info on smaller screens */
    .footer .contact-info .footer-text {
        justify-content: center;
    }
}
