/* style.css */

/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.bg-image {
    background: url('images/background.jpg') no-repeat center center/cover;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

h1, h2 {
    font-weight: 600;
    margin-bottom: 1rem;
}

button {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
}

button:hover {
    background: #0056b3;
}

.section {
    display: none;
    padding: 2rem;
    text-align: center;
}

.section.active {
    display: block;
}

img {
    border-radius: 10px;
}

.back-button {
    margin-top: 1rem;
    background: #6c757d;
}

.back-button:hover {
    background: #5a6268;
}

/* Auth Containers */
.auth-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.auth-container .auth-form {
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.auth-container .auth-form input {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.auth-container .auth-form button {
    width: 100%;
    margin-top: 1rem;
}

.auth-link {
    margin-top: 1rem;
}

.auth-link a {
    color: #007BFF;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Dishes Section */
.dishes-section {
    margin-top: 2rem;
}

.dishes-section ul {
    list-style: none;
    padding: 0;
}

.dishes-section li {
    margin: 0.5rem 0;
}
