
/* Video Background */
.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Header Overlay */
.overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #1C1C1C;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.search-box input[type="search"] {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #ccc;
    width: 250px;
    background: rgba(255, 255, 255, 0.85);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    outline: none;
}

.menu-button button {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    background-color: #FFE002;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}
