/* Footer spacer to prevent content overlap with plants */
.footer-spacer {
    height: 184px; /* Matches max plant height */
    position: relative;
    z-index: 1; /* Same as main-content */
}

/* Footer styling */
footer {
    background: var(--footer-background);
    padding: 1rem;
    border-top: 2px solid var(--accent-primary);
    text-align: center;
    position: relative; /* For absolute positioning of plants */
    z-index: 0; /* Define z-index for footer background */
}

/* Footer content container */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative; /* Ensure text is above plants */
    z-index: 3; /* Above plants */
}

/* Footer text and links */
.footer-container p,
.footer-container a {
    font: 0.9rem 'Open Sans', Arial, sans-serif;
    margin: 0;
}

/* Footer link styling */
.footer-container a {
    color: var(--accent-primary);
    text-decoration: none;
}

/* Footer link hover state */
.footer-container a:hover {
    color: var(--accent-hover);
}

/* Age notice emphasis */
.age-notice {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Query 5: Larger Screens (≥ 1024px) */
@media (min-width: 1024px) {
    /* Larger footer text */
    .footer-container p,
    .footer-container a {
        font-size: 1rem;
    }
}