body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    margin-bottom: 0;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.full-page-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.overlay-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.menu-list {
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
}

.menu-list li {
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    color: white;
    transition: transform 0.3s, background 0.3s;
}

.menu-list li:hover {
    transform: scale(1.1);
    background: rgba(255, 140, 0, 0.8);
}
