body {
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
}
.navbar {
    background-color: #343a40;
}
.navbar-brand img {
    height: 40px;
}
.header-video {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.header-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-overlay .video-logo {
    max-height: 200px;
    width: auto;
}
.video-overlay button {
    z-index: 10;
    margin-top: 20px;
}
.about-section, .gallery-section, .menu-section, .contact-section, .order-section {
    padding: 60px 0;
}
.about-content, .contact-info {
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.gallery-item .description {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: white;
}
.menu-section h2 {
    margin-bottom: 30px;
}
.menu-item {
    margin-bottom: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}
.order-buttons .btn {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    margin: 10px ;
    padding: 5px ;
}
.contact-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer img {
    height: 50px;
    margin-bottom: 10px;
}
.accessibility-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}
.accessibility-dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 2px solid #343a40;
    z-index: 2000;
    max-width: 500px;
    width: 90%;
}
.accessibility-dialog.show {
    display: block;
}
.high-contrast {
    background: black !important;
    color: yellow !important;
}
.high-contrast a, .high-contrast p, .high-contrast h1, .high-contrast h2, .high-contrast h3 {
    color: yellow !important;
}
.highlight-headers h1, .highlight-headers h2, .highlight-headers h3 {
    background: yellow;
    color: black;
}
/* Mobile optimizations */
@media (max-width: 768px) {
    .header-video {
        height: 50vh;
    }
    .video-overlay .video-logo {
        max-height: 60px;
    }
    .order-buttons .btn {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }
    .contact-section iframe {
        height: 300px;
    }
}