:root {
    --gold-primary: #c5a059;
    --dark-green: #0b4a3f;
    --font-heading: 'Playfair Display', serif;
}

/* Parent Container */
.food-vibrant-section .d-flex {
    justify-content: flex-end;
    padding-right: 50px;
    gap: 50px;
    padding: 80px 0;
    overflow: hidden;
}

.food-whiteboard {
    background: white;
    min-height: 620px;
    border-radius: 40px;
    width: 55%; 
    flex: none; 
    position: relative;
    overflow: hidden;
    margin-right: auto;
    margin-left: 20px;
}

/* Clean */
.food-whiteboard::before, 
.food-whiteboard::after,
.board-center-action::before,
.board-center-action::after {
    display: none !important;
    content: none !important;
}

.mini-luxury-heading {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 7rem; 
    font-weight: 600;
}

.board-center-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    background: transparent !important;
}


.food-info-board {
    background: white;
    width: 28%; 
    flex: none;
    border-radius: 40px;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culinary-title {
    font-family: var(--font-heading);
    color: var(--dark-green);
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
}
.culinary-title .highlight {
    color: var(--gold-primary);
    font-style: italic;
    font-weight: 400;
}
.sub-heading-elegant {
    letter-spacing: 5px;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}
.food-poetry {
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
}

/* Buttons  */
.arrow-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 12px;
}
.btn-gold-luxury {
    background: var(--gold-primary);
    color: white; padding: 12px 30px; border-radius: 50px;
    text-decoration: none; font-weight: bold; display: inline-flex; align-items: center;
}
.btn-green-luxury {
    background: var(--dark-green);
    color: white; padding: 14px 32px; border-radius: 50px;
    text-decoration: none; font-weight: bold; display: inline-flex; align-items: center;
}

/* Image Animations */
.food-circle-item {
    position: absolute; width: 170px; height: 170px;
    border-radius: 50%; overflow: hidden; border: 6px solid white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); opacity: 0;
    animation: depthFloat 15s infinite ease-in-out;
}
.food-circle-item img { width: 100%; height: 100%; object-fit: cover; }

.c-1 { top: 5%; left: 5%; animation-delay: 0s; }
.c-2 { top: 8%; right: 8%; animation-delay: 2.5s; }
.c-3 { bottom: 8%; left: 8%; animation-delay: 5s; }
.c-4 { bottom: 5%; right: 5%; animation-delay: 7.5s; }
.c-5 { top: 40%; left: -5%; animation-delay: 10s; } 
.c-6 { top: 40%; right: -5%; animation-delay: 12.5s; }
.c-7 { 
    top: -5%; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: 12s; 
}

.c-8 { 
    bottom: -5%; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: 14s; 
} 

.c-7, .c-8 {
    animation: depthFloatCenter 15s infinite ease-in-out;
}
@keyframes depthFloat {
    0% { opacity: 0; transform: scale(0.7) translateY(30px); filter: blur(5px); }
    20%, 80% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
    100% { opacity: 0; transform: scale(0.7) translateY(-30px); filter: blur(5px); }
}

@media (max-width: 991px) {
    

    .food-vibrant-section .d-flex {
        display: flex !important;
        flex-direction: column-reverse !important; 
        gap: 25px !important; 
        align-items: center !important;
    }

   
    .food-whiteboard, .food-info-board {
        width: 95% !important;
        min-height: 450px !important; 
        max-height: 450px !important; 
        border-radius: 25px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; 
        align-items: center !important;
    }

    .food-whiteboard {
        position: relative !important;
        background-color: #fff !important;
        overflow: hidden !important;
    }

  
    .food-info-board {
        background-color: #ffffff !important;
        padding: 30px 20px !important;
    }

   
    .food-circle-item {
        width: 75px !important;
        height: 75px !important;
        position: absolute !important;
    }

    .c-1 { top: 8%; left: 10% !important; }
    .c-2 { top: 8%; right: 10% !important; }
    .c-3 { bottom: 8%; left: 10% !important; }
    .c-4 { bottom: 8%; right: 10% !important; }
    .c-5 { top: 45%; left: 5% !important; transform: translateY(-50%); }
    .c-6 { top: 45%; right: 5% !important; transform: translateY(-50%); }

   
    .culinary-title { 
        font-size: 1.6rem !important; 
        margin-bottom: 15px !important;
    }
}