/* CSS for the Premium Digital Menu Board Page */

.menu-board-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.menu-board-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-board-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.menu-board-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
}

.menu-board-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Menu Board Container & Styling */
.menu-board-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.menu-board-frame {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    /* Premium border matching Bhai Pizza Hut: 5px solid gold with dark outline shadow */
    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: #2E1A0F; /* Dark backup background matching menu board background */
}

/* Maintain crisp image rendering & responsive aspect-ratio */
.menu-board-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Ensure 16:9 aspect ratio is strictly maintained */
    object-fit: contain;
    image-rendering: auto;
    transition: filter 0.3s ease;
}

/* Light hover animation: scale 1.02 with smooth transition */
.menu-board-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);
}

/* Overlay highlights/effects to make it look even more premium */
.menu-board-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3); /* Subtle inner vignette */
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .menu-board-title {
        font-size: var(--text-2xl);
    }
    
    .menu-board-frame {
        border-width: 3px;
        border-radius: var(--radius-lg, 12px);
    }
}
