/**
 * Base CSS for Okoboji Theme
 * Core styles, fonts, backgrounds, and fundamental utilities
 */

/* Global Font Family - Lato */
* {
    font-family: 'Lato', sans-serif;
}


body {
    font-family: 'Lato', sans-serif;
}

/* Background styles moved to common.css */

/* Common utilities moved to common.css */

/* Screen reader text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus utilities */
.focus\\:outline-none:focus {
    outline: none;
    box-shadow: none;
}

/* Basic responsive utilities */
@media (max-width: 768px) {
    body.rough-beige-wall {
        background-size: 100px 100px, 80px 80px, 2px 2px, 2px 2px !important;
    }
    
    .content-grid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    body.rough-beige-wall {
        background-size: 50px 50px, 40px 40px, 1px 1px, 1px 1px !important;
    }
}