/* --- interior & gallery pages styles   --- */
.interior-content {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.style-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .style-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.style-text h2 {
    font-size: 3rem;
    color: var(--clr-blue-light);

    margin-bottom: 1.5rem;
}

.style-text p {
    font-size: 1.2rem;
    color: #555;
    /* keeping this for now as it generic grey */
    margin-bottom: 1.5rem;
}

.style-image {
    position: relative;
}

.style-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--clr-blue-light);
}


.menu-gallery-section {
    padding: 8rem 1.5rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.menu-item-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    height: 300px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.menu-item-info {
    padding: 1.5rem;
    text-align: center;
}

.menu-item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2D2D2D;
}

.menu-item-info p {
    color: #777;
    font-size: 1rem;
}



/* --- Party Page Styles --- */
.party-image-section {
    padding: 0;
    margin-top: 92px;
    text-align: center;
    min-height: auto;
}

.party-image-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.party-image-container img {
    width: 25%;
    min-width: 250px;
    flex-grow: 1;
    height: auto;
    display: block;
    box-shadow: none;
    border-radius: 0;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .party-image-section {
        margin-top: 92px;
    }

    .party-image-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .party-image-container img {
        width: 100%;
        min-width: 100%;
    }
}



/* Menu Page Specific Layout */
.menu-display-section {
    padding: 140px 1.5rem 5rem;
    text-align: center;
    background: url('../pricebackground.png') center/cover no-repeat;
    background-attachment: fixed;
    /* Optional: for a nice parallax effect, but let's stick to standard first unless asked */
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Text-Based Menu Layout */
.menu-list {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h2 {
    font-size: 2rem;
    color: var(--clr-lilac-deep);
    border-bottom: 2px solid var(--clr-glass);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--ff-heading);
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
    position: relative;
}

/* Create dotted line connecting item name and price */
.menu-item-row::after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 0;
    right: 0;
    border-bottom: 2px dotted #e0e0e0;
    z-index: 1;
}

.menu-item-text {
    background: var(--clr-white);
    padding-right: 15px;
    z-index: 2;
    max-width: 80%;
}

.menu-item-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-dark);
}

.menu-item-desc {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.25rem;
    font-style: italic;
}

.menu-item-price {
    background: var(--clr-white);
    padding-left: 15px;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-blue);
    white-space: nowrap;
}

/* Larger screens adjustments for menu */
@media (min-width: 900px) {
    .menu-item-name {
        font-size: 1.4rem;
    }

    .menu-item-desc {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1.5rem;
    }

    .menu-category h2 {
        font-size: 2.5rem;
    }
}

/* Page spacing utilities */
.mt-3 {
    margin-top: 3rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.pt-150 {
    padding-top: 150px;
}

.text-center {
    text-align: center;
}

