.menu-grid {
    display: grid;
    /* Creates a responsive grid that tries to fit 300px columns */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.menu-card {
    background: var(--muted);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.menu-card .img-box {
    height: 220px;
    background-size: cover;
    background-position: center;
    /* Adds a subtle inner shadow to make text on top more readable if needed */
    box-shadow: inset 0 -80px 80px -50px rgba(0,0,0,0.5);
    position: relative;
}

.menu-card .price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--sand);
    color: var(--bg);
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.menu-info {
    padding: 20px;
    flex-grow: 1; /* Allows the info to fill space if cards have uneven heights */
}

.menu-info .h3 {
    margin-bottom: 10px;
    color: var(--sand);
}

.menu-info p {
    margin: 0;
    color: var(--sub);
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: var(--bg2);
    padding: 60px 0;
    border-top: 1px solid var(--line);
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    color: var(--sub);
    margin-bottom: 10px;
}

.contact-info .phone-number {
    color: var(--sand);
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border: 1px dashed var(--sand);
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-info .phone-number:hover {
    background: var(--sand);
    color: var(--bg);
}

/* ==========================================
   PARTY ROOM HERO STYLES
   ========================================== */
.party-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.party-media {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.party-info {
    flex: 1;
}

.party-price-box {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.party-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--sand);
}

.party-price-sub {
    font-size: 1.2rem;
    color: var(--sub);
}

.party-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.party-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.5;
}

.party-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sand);
    font-weight: bold;
}

.party-features li.note-highlight {
    color: #f87171; /* Soft red to make it stand out */
}
.party-features li.note-highlight::before {
    content: '!';
    color: #f87171;
}

.section-divider {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 40px 0;
}

/* Button style if it wasn't imported globally */
.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px; /* Using standard radius */
    font-weight: 700;
    border: 1px solid rgba(0,0,0,.12);
    background: var(--sand);
    color: #121212; /* Dark text for contrast */
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease, background .12s ease;
    font-family: inherit;
}

.btn-book:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Responsive Stacking for Mobile */
@media (max-width: 900px) {
    .party-hero {
        flex-direction: column;
        gap: 30px;
    }
    .party-media {
        width: 100%;
    }
}