@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');


*, *::before, *::after {
    box-sizing: border-box;
}

.food-menu {
    position: relative;
    min-height: 100vh;
    background-image: url('/wp-content/uploads/2025/10/Untitled-design-2025-10-08T120447.191.png');
    background-size: cover;
    background-position: center;
    display: flex;
    font-family: 'Jost', sans-serif;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    margin: 2% auto;
    box-sizing: border-box;
}

.food-menu-decorative {
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.food-menu-decorative--left {
    left: 0;
}

.food-menu-decorative--right {
    right: 0;
}

.decorative-vegetables {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.decorative-vegetables--left {
    transform: scaleX(-1);
}

.food-menu-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.food-menu-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}

.food-menu-header {
    margin-bottom: 50px;
}

.decorative-line--center {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #1e3f73);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.food-menu-subheader {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #1a2f79;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.food-menu-main-header {
    font-family: 'Jost', sans-serif;
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.food-menu-description {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.food-menu-shortcode-area {
    margin: 50px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}

.menu-placeholder {
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.placeholder-text {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    color: #1a2f79;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.placeholder-note {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.food-menu-cta {
    margin-top: 40px;
}

.cta-button--menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a2f79, #1a2f79);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button--menu:hover {
    background: white;
    color: #1a2f79;
    border-color: #1a2f79;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.cta-button--menu:hover .cta-arrow {
    transform: translateX(5px);
}


.food-menu-vegetable-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.vegetable-image {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.vegetable-image:hover {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.vegetable-image-1 {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    animation: floatGentle 8s ease-in-out infinite;
}

.vegetable-image-2 {
    top: 72%;
    right: 3%;
    width: 350px;
    height: 350px;
    animation: floatGentle 10s ease-in-out infinite reverse;
}

.vegetable-image-3 {
    bottom: 15%;
    left: 5%;
    width: 250px;
    height: 250px;
    animation: floatGentle 12s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}


@media (max-width: 1200px) {
    .food-menu-decorative {
        width: 150px;
    }
    
    .food-menu-container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .food-menu {
        padding: 60px 15px;
    }
    
    .food-menu-decorative {
        width: 120px;
    }
    
    .food-menu-content {
        padding: 50px 30px;
    }
    
    .food-menu-main-header {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .food-menu {
        padding: 40px 20px;
    }
    
    .food-menu-decorative {
        width: 80px;
        opacity: 0.5;
    }
    
    .food-menu-container {
        padding: 40px 20px;
    }
    
    .food-menu-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .food-menu h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .food-menu-main-header {
        font-size: 28px;
    }
    
    .food-menu-description {
        font-size: 16px;
    }
    
    .food-menu-shortcode-area {
        margin: 30px 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        padding: 0;
        box-sizing: border-box;
    }
    
    .food-menu-shortcode-area * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .menu-placeholder {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .food-menu-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .vegetable-image {
        width: 60px !important;
        height: 60px !important;
        opacity: 0.6;
    }
    
    .vegetable-image-1 {
        top: 10%;
        left: 5%;
    }
    
    .vegetable-image-2 {
        top: 70%;
        right: 5%;
    }
    
    .vegetable-image-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .food-menu {
        padding: 30px 5px;
    }
    
    .food-menu-decorative {
        width: 60px;
    }
    
    .food-menu-container {
        padding: 0 15px;
    }
    
    .food-menu-content {
        padding: 30px 20px;
    }
    
    .food-menu-main-header {
        font-size: 24px;
    }
    
    .food-menu-subheader {
        font-size: 16px;
    }
    
    .cta-button--menu {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .menu-placeholder {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .placeholder-text {
        font-size: 18px;
    }
    
    .food-menu-shortcode-area {
        margin: 20px 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        padding: 0;
        box-sizing: border-box;
        min-height: 200px;
    }
    
    .food-menu-shortcode-area * {
        max-width: 100%;
        box-sizing: border-box;
    }
}