/* Global Styles */
html, body {
    height: 100%;           /* Ensures the body takes full height of the viewport */
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;          /* Use flexbox to structure the page */
    flex-direction: column; /* Stack content and footer vertically */
}

/* Main content area */
.content {
    flex: 1;                /* Allow content to take available space */
    padding: 20px;
    padding-bottom: 60px;   /* Space for footer */
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;     /* Makes footer flow naturally at the bottom of the content */
    bottom: 0;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Links and Social Media Styling */
.footer-links, .footer-social {
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #FFD700;
}

footer p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-links, .footer-social {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a, .footer-social a {
        margin-bottom: 10px;
    }
}
