.signature-dishes-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 80px 0;
}

/* The #331121 Overlay */
.signature-dishes-section .color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #331121;
    opacity: 0.92;
    /* Adjust transparency to see background pattern */
    z-index: 1;
}

.signature-dishes-section .container {
    z-index: 2;
    /* Sits above overlay */
}

/* Typography */
.signature-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--title-color);
}

.signature-description p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

/* Dish Card Styling */
.dish-card {
    text-align: left;
}

.dish-image-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    /* Slight round like Canva */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dish-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-short-desc {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.4;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 8px;
    min-height: 60px;
    /* Keeps dividers aligned */
}

.dish-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.dish-name {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
}

/* White Buttons */
.btn-canva-white {
    background-color: #ffffff;
    color: #331121 !important;
    padding: 10px 25px;
    border-radius: 2px;
    /* Square edges like image */
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-canva-white:hover {
    background-color: #eeeeee;
    transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .signature-dishes-section {
        background-attachment: scroll;
        /* Better performance for mobile */
    }

    .dish-short-desc {
        min-height: auto;
    }
}

/* --- Background & Overlay 22 --- */
.signature-dishes-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.signature-dishes-section .color-overlay {
    position: absolute;
    inset: 0;
    background-color: #331121;
    /* Transparent theme color */
    opacity: 0.92;
    z-index: 1;
}

/* --- Image Zoom Effect --- */
.dish-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    /* Clips the zoom */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth zoom */
}

.dish-card:hover .zoom-img {
    transform: scale(1.15);
    /* The Zoom effect */
}

/* --- Perfectly Responsive Buttons --- */
.signature-footer-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
    /* Wraps on mobile */
}

.btn-responsive-white {
    background-color: #ffffff;
    color: #331121 !important;
    padding: clamp(10px, 2vw, 10px) clamp(20px, 4vw, 20px);
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 16px);
    /* Fluid font-size */
    transition: 0.3s all ease;
    text-align: center;
   
    display: inline-block;
}

.btn-responsive-white:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .signature-dishes-section {
        background-attachment: scroll;
        /* Fixes lag on mobile browsers */
        padding: 50px 0;
    }

    .btn-responsive-white {
        width: 100%;
        /* Stack buttons on very small screens */
        max-width: 160px;
    }

    .dish-short-desc {
        min-height: auto;
		font-size:16px;
    }
	.signature-description p{
		font-size:16px;
	}
.signature-footer-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}
}