/* =========================
   SCENE 4
========================= */

#scene4 {

    position: relative;
    width: 100vw;
    height: 100vh;
    padding-top: 140px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
    overflow-y: auto;
    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,

            #3E8C8F 0%,
            #1F5F6A 70%
        );
    
    background-image:
    url("../assets/BG1_s4.png");

    background-size: cover;
    background-position-x: 0px;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
    
}

/* =========================
   CATEGORY
========================= */

.menu-category {

    margin-bottom: 100px;
}
.menu-layout {

    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/*FENSTER GRÖSSEN*/
.tile-large {

    width: 190px;
    height: 120px;
}
.tile-medium {

    width: 140px;
    height: 120px;
}
.tile-small {

    width: 120px;
    height: 120px;
}
.menu-grid {

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}
.category-header {

    margin-bottom: 35px;
}

.category-title {

    color: #6A4A3C;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* =========================
   TILE
========================= */

.menu-item {

    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s;
}

.menu-item:hover {

    transform:
        translateY(-8px)
        scale(1.05);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

}
/* =========================
   IMAGE
========================= */

.menu-item img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.menu-item:hover img {

    transform: scale(1.12);
}

/* =========================
   INFO OVERLAY
========================= */

.item-info {
    position: absolute;
    inset: 0;
    background:
        rgba(5,42,59,0.92);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: .35s;
}

.menu-item:hover .item-info {

    opacity: 1;
}

.item-name {

    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F8C8D8;

}

.item-jp {

    color: #F8C8D8;
    font-size: 0.65rem;
    margin-bottom: 10px;
}

.item-price {

    display: none;
    /*color: rgb(255, 255, 255);
    font-size: 0.55rem;
    margin-top: 10px;*/
}

/* =========================
   COLORS
========================= */

.category-title {

    color: #F8C8D8;
}

/* =========================
   SCENE 4 OVERRIDE
========================= */

#scene4 {

    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    min-height: 100vh;
    height: auto !important;
    padding-top: 160px;
}

.menu-category {

    display: block !important;
    position: relative !important;
    width: 90% !important;
    float: none !important;
    clear: both !important;
    margin-bottom: 120px !important;
}


/* =========================
   LAYOUT
========================= */

/* Linke Seite */
.maple-foreground {

    position: fixed;
    right: 0;
    bottom: 0;
    width: 700px;
    z-index: 20;
    pointer-events: none;
}

.maple-foreground img {

    width: 100%;
    height: auto;
    display: block;
}
.maple-particles {

    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    pointer-events: none;

    z-index: 30;
}
.falling-maple {

    position: absolute;

    width: 30px;

    height: auto;

    opacity: 0.85;

    animation:
        mapleFall linear forwards;
}

@keyframes mapleFall {

    0% {

        transform:
            translate(0px,-100px)
            rotate(0deg);

        opacity: 0;
    }

    10% {

        opacity: 1;
    }

    20% {

        transform:
            translate(40px,20vh)
            rotate(70deg);
    }

    40% {

        transform:
            translate(-30px,40vh)
            rotate(160deg);
    }

    60% {

        transform:
            translate(50px,65vh)
            rotate(240deg);
    }

    80% {

        transform:
            translate(-20px,85vh)
            rotate(320deg);
    }

    100% {

        transform:
            translate(30px,110vh)
            rotate(420deg);

        opacity: 0;
    }
}

.menu-container {

    display: block;
    width: 100%;
    max-width: 1200px;

    margin: 10px auto;

    background: rgba(74,53,42,0.08);

    backdrop-filter: blur(8px);

    border-radius: 30px;

    padding-top: 30px;
    padding-left: 30px;
    padding-bottom: 10px;
    padding-right: 30px;

    box-sizing: border-box;
}



