/* Styling for the Homepage Featured Weekend Deals Banner */

.promo-banner-wrapper {
    max-width: 500px;
    width: 100%;
    margin: 40px auto 0;
    text-align: center;
}

.promo-banner-frame {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    /* Premium border matching Bhai Pizza Hut branding: 5px solid gold/yellow */
    border: 5px solid var(--accent, #FFD500);
    box-shadow: 0 20px 45px rgba(46, 26, 15, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    background-color: var(--white);
    line-height: 0; /* Remove inline whitespace spacing under image */
}

/* Maintain aspect ratio and ensure sharp display without cropping */
.promo-banner-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5; /* Exact vertical aspect ratio of the weekend deals poster */
    object-fit: contain;
    image-rendering: auto;
}

/* Elegant hover animation: scale 1.02 with smooth transition */
.promo-banner-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(46, 26, 15, 0.25), 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Vignette overlay */
.promo-banner-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.promo-banner-cta {
    margin-top: 24px;
}

.promo-banner-cta .btn {
    box-shadow: var(--shadow-md);
}

/* Navigation button to switch to Digital Menu Board */
.menu-board-link-container {
    text-align: center;
    margin-top: 60px;
}

.menu-board-promo-card {
    background: linear-gradient(135deg, #2E1A0F 0%, #4A2815 100%);
    border: 2px solid var(--accent, #FFD500);
    border-radius: var(--radius-xl, 16px);
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.menu-board-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-board-promo-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.menu-board-promo-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent, #FFD500);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.menu-board-promo-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .menu-board-promo-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 40px;
        text-align: left;
        align-items: center;
    }
    .menu-board-promo-content {
        max-width: 60%;
        align-items: flex-start;
    }
    .menu-board-promo-card .btn {
        margin-top: 0;
    }
}
