/*
 * Overflow Fix - Prevents horizontal scrolling
 * This file fixes the horizontal scrollbar issue
 */

/* Main page wrapper */
#page,
.site {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Ensure all rows and sections don't overflow */
.row,
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix for very wide content */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Gallery and grid fixes */
.menu-items-grid,
.gallery-grid {
    width: 100%;
    max-width: 100%;
}

/* Ensure buttons don't cause overflow */
.hero-buttons,
.cta-buttons {
    flex-wrap: wrap;
    max-width: 100%;
}