/* Fonts now loaded via HTML link tags for better performance */

*{
    padding:0;
    margin:0;
}

/* Screen reader only content */
.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;
}

.color1{
    background-color: #322c25;
}

.color2{
    background-color: #f6f3f0;
}

.text-color1{
    color: #322c25;
}

.text-color2{
    color: #f6f3f0;
}

.text-font2{
    font-family: 'Work Sans', sans-serif, Arial, Helvetica;
}

/* General styles with Gochi Hand font */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Gochi Hand', cursive, Arial, sans-serif;
    height: 100%;
}

/* Fullscreen div */
.fullscreen {
    width: 100vw;
    height: 100vh;
}

/* Center container */
.center-container {
    text-align: center;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .divider {
        display: none !important;
    }
    
    .opening-times {
        width: 100% !important;
        max-width: 300px;
    }
}