/* ─── Fonts ────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@400;500;600;700&display=swap');

/* ─── Menu Wrapper ─────────────────────────────────────────────────────────── */
.cloe-menu-wrap {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    background: #242424;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─── Sidebar ──────────────────────────────────────────────────────────────── */
.cloe-menu-sidebar {
    width: 260px;
    min-width: 260px;
    background: #1a1a1a;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    border-right: 2px solid #3a3a3a;
}

.cloe-menu-title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
    font-size: 2.2rem;
    color: #d4a574;
    text-align: center;
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #3a3a3a;
}

.cloe-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cloe-menu-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #bbb;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.cloe-menu-btn:hover {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.08);
}

.cloe-menu-btn.active {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.12);
}

.cloe-menu-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #d4a574;
    border-radius: 0 4px 4px 0;
}

/* ─── Content Area ─────────────────────────────────────────────────────────── */
.cloe-menu-content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    position: relative;
    background:
        linear-gradient(rgba(36, 36, 36, 0.85), rgba(36, 36, 36, 0.85)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=800&q=60') center / cover no-repeat;
}

.cloe-menu-paper {
    position: relative;
}

/* ─── Section Content ──────────────────────────────────────────────────────── */
.cloe-menu-section {
    display: none;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.cloe-menu-section.visible {
    display: block;
    filter: blur(0);
    opacity: 1;
}

/* Blur out — current section fading away */
.cloe-menu-section.blur-out {
    display: block;
    filter: blur(16px);
    opacity: 0;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

/* Blur in — new section appearing */
.cloe-menu-section.blur-in {
    display: block;
    filter: blur(16px);
    opacity: 0;
}

.cloe-menu-section.blur-in.reveal {
    filter: blur(0);
    opacity: 1;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

/* ─── Coffee Loader Overlay ────────────────────────────────────────────────── */
.cloe-menu-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cloe-menu-loader.active {
    opacity: 1;
}

.cloe-menu-loader-video {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* ─── Menu Images ──────────────────────────────────────────────────────────── */
.cloe-menu-image-wrap {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cloe-menu-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.cloe-menu-empty {
    text-align: center;
    color: #666;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem;
    padding: 80px 0;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .cloe-menu-wrap {
        flex-direction: column;
        border-radius: 0;
    }

    .cloe-menu-sidebar {
        width: 100%;
        min-width: unset;
        padding: 24px 16px;
        border-right: none;
        border-bottom: 2px solid #3a3a3a;
    }

    .cloe-menu-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .cloe-menu-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }

    .cloe-menu-btn {
        width: auto;
        padding: 10px 16px;
        font-size: 0.85rem;
        text-align: center;
        letter-spacing: 1px;
    }

    .cloe-menu-btn.active::before {
        display: none;
    }

    .cloe-menu-content {
        padding: 16px;
    }

    .cloe-menu-loader-video {
        width: 80px;
        height: 80px;
    }
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
.cloe-menu-wrap * {
    box-sizing: border-box;
}
