/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the background color of the webpage */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f3d3e1;
    color: black;
}

/* Remove margin from the header */
header {
    margin: 0;
    padding: 0;
    background-color: #f3d3e1;
}




/* New Home Button Style */
.home-button {
    color: black; /* Black text */
    text-decoration: underline; /* Underline text */
    font-size: 16px; /* Font size */
    display: inline-block; /* Inline-block display */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
}

.home-button .arrow {
    font-size: 16px; /* Font size for the arrow */
    margin-left: 5px; /* Space between text and arrow */
    transform: rotate(180deg); /* Rotate the arrow 180 degrees */
}

.home-button:hover .arrow {
    text-decoration: none; /* Remove underline on hover */
}

/* Dark mode styles */
/*
@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #2c0c1a;
        color: white;
    }

    header {
        background-color: #2c0c1a;
    }

    .home-button {
        color: white;
    }
}
*/
footer {
    background-color: #333;
    color: #fff;
    padding: 12px; /* Reduced from 20px */
    width: 100%;
    margin-top: auto;
}

/* Main footer content container */
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 12px; /* Reduced from 20px */
}

/* Column styling */
.footer-column {
    flex: 1;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Heading style in footer */
.footer-column h3 {
    color: #fff;
    font-size: 1rem; /* Slightly smaller */
    margin-bottom: 8px; /* Reduced from 15px */
}

/* Contact information styling */
.footer-column p {
    margin: 4px 0; /* Reduced from 8px */
    font-size: 0.9rem;
}

/* Social links styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links img {
    width: 20px; /* Slightly smaller */
    height: 20px; /* Slightly smaller */
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 0.8;
}

/* Bottom copyright section */
.footer-bottom {
    text-align: center;
    padding-top: 12px; /* Reduced from 20px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem; /* Slightly smaller */
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 12px; /* Reduced from 20px */
    }
    
    .footer-column {
        padding: 0;
    }
}

/* Make sure the footer stays at the bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Allows main content to push footer down */
}

/* Add some hover effects if you have links in footer */
footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #9b6b9d; /* Light purple color to match Wisteria theme */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    footer {
        padding: 15px;
    }
    
    footer p {
        font-size: 0.8rem;
    }
}