/* Ensure the body takes full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Main content wrapper to flex and grow */
.wrapper {
    flex: 1;
}

/* Footer Styling */
footer {
    background-color: #333; /* Dark background */
/*    color: white;*/
    padding: 1rem 0;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    position: relative;
    bottom: 0;
}

/* Footer container flex and center */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Responsive flexbox layout */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Footer links and hover effects */
footer a {
/*    color: white;*/
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Social icons styling */
.social-links a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700; /* Highlight icons */
}

/* Adjust font sizes on small screens */
@media (max-width: 768px) {
    footer span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    footer span {
        font-size: 0.75rem;
    }
}
