/* 
 * Footer Position Fix
 * For Bruz Beers Website
 */

/* Override the fixed positioning of the footer */
footer {
    position: relative !important; /* Override the fixed position from style.css */
    z-index: 1 !important; /* Set z-index lower than content */
    bottom: auto !important; /* Remove bottom positioning */
}

/* Ensure proper padding on wrapper */
.wrapper {
    padding-bottom: 0 !important; /* Override any padding that might be set */
}

/* Add proper spacing to the last section before footer */
.section:last-of-type {
    margin-bottom: 0;
} 