#hero{
    height: 30rem;
    margin-bottom: 0;
}

#hero #hero-img{
    height: calc(var(--vh, 1vh) * 100);
    object-position: bottom;
    filter: brightness(70%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

#hero #hero-text{
    top: 50% !important;
    gap: var(--gap-l);
}

#hero #hero-text #hero-text-bottom{
    line-height: 1.3;
}

#philosophy-desc {
    max-width: 65rem;
    margin: 0 auto;
}

/* --- Menu Section Styling --- */
#menu-heading {
    margin-bottom: calc(1.5 * var(--gap-xxl));
}

.menu-section-title {
    font-size: 4rem;
    color: var(--white);
    text-align: center;
    margin: var(--gap-xxl) 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl) var(--gap-xxl); /* Add a gap between columns */
    width: 85rem;
    margin-top: var(--gap-l);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.menu-category h1 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--gap-l);
    border-bottom: 0.1rem solid rgba(var(--white-rgb), 0.5);
    color: var(--white);
}

.menu-item {
    background-color: rgba(var(--black-rgb), .2);
    backdrop-filter: blur(1rem);
    border-radius: var(--gap-m);
    padding: var(--gap-xl);
    margin-bottom: var(--gap-l);
    display: flex;
    flex-direction: column;
    gap: var(--gap-m);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--gap-l);
    border-bottom: 1px dashed rgba(var(--white-rgb), 0.3);
    padding-bottom: var(--gap-m);
}

.menu-item-name {
    font-family: "LibreCalsonDisplay";
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: normal;
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--orange);
    white-space: nowrap;
}

.menu-item-desc {
    text-align: left;
    font-size: 0.9rem;
    font-weight: 200;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- Image Card Styling (New) --- */
.menu-image-card {
    border-radius: var(--gap-m);
    overflow: hidden;
    position: relative;
    background: rgba(0,0,0,0.1);
}

.menu-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.menu-image-card:hover img {
    transform: scale(1.05);
}

/* --- Responsive Design --- */

@media only screen and (max-width: 1460px) {
    .menu-grid {
        width: 60rem;
    }
}

@media only screen and (max-width: 1060px) {
    .menu-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: var(--gap-xxl) 0; /* Only vertical gap on mobile */
    }

    .menu-image-card {
        /* On single column, images can span the full width for impact */
        grid-column: 1 / -1; 
        height: 25rem; /* Give them a fixed height on mobile */
    }
}