body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pulsing-text {
    font-size: 3em;
    color: #8B0000;
    font-family: 'Great Vibes', cursive;
    animation: pulseOpacity 2s infinite;
}

@keyframes pulseOpacity {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

#main-content {
    display: none;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f7f7f7; 
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #A0522D; 
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    transition: opacity 0.3s ease; 
}

nav ul li a:hover {
    opacity: 0.8; 
}

#home {
    padding: 50px;
    background: url('restaurant-image.jpg') center/cover no-repeat;
    width: 100%;
    min-height: 60vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home h1 {
    font-size: 6em;
    font-family: 'Great Vibes', cursive;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#home p {
    font-size: 3em;
    font-family: 'Great Vibes', cursive;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#menu {
    background-color: #ffffff;
    padding: 50px;
    text-align: center;
}

#menu h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    color: #8B0000;
}

#menu p {
    font-size: 1.5em;
    margin: 10px 0;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item img {
    width: 400px;
    height: auto;
    margin: 10px 0;
}

.menu-description {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.menu-description h3 {
    font-size: 1.8em;
    color: #8B0000;
    margin: 0;
}

.menu-description p {
    font-size: 1em;
    color: #333;
}

#menu .divider {
    border-top: 2px solid #8B0000;
    margin: 20px 0;
}

#about {
    background-color: #f7f7f7;
    padding: 50px;
}

#about h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    color: #8B0000;
}

#about p {
    font-size: 1.2em;
}

#contact {
    background-color: #ffffff;
    padding: 50px;
}

#contact h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    color: #8B0000;
}

#contact p {
    font-size: 1.2em;
}

footer {
    background-color: #A0522D;
    color: white;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

footer p {
    margin: 0;
}
