/* Footer Styling */
.footer {
    background-color: #6200ea; /* Adjust to match site theme */
    color: white;
    text-align: center;
    padding: 20px 10px;
    border-top: 5px solid #9b7ede; /* Lighter shade for contrast */
}

/* Footer Links */
.footer a, .footer a:visited {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer a:hover {
    color: #9b7ede;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 15px;
}

/* Social Media Links Styling */
#social-media-links-footer {
    display: inline-block;
    margin-top: 10px;
}

#social-media-links-footer img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

#social-media-links-footer img:hover {
    transform: scale(1.2);
}

/* Layout for wider screens */
@media (min-width: 768px) {
    .footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        margin: 0 10px;
        min-width: 250px;
    }

    .footer-center {
        flex-basis: 100%;
        order: -1;
        margin-top: 0;
        text-align: center;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 20px 5px;
    }

    .footer-section {
        margin-bottom: 10px;
    }

    .footer a {
        margin: 0 10px;
    }
}

/* Ensure footer stays at the bottom on short pages */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

