/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --light-green: #8fbc8f;
    --accent-green: #6b8e23;
    --white: #ffffff;
    --cream: #f5f5f0;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --gold: #d4af37;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Animation */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-container {
    text-align: center;
    color: var(--white);
}

.brand-logo {
    margin-bottom: 30px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: screen;
    border: none !important;
    outline: none !important;
}

.plate {
    width: 120px;
    height: 120px;
    border: 8px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    animation: plateSpin 2s linear infinite;
    background: radial-gradient(circle, var(--cream) 0%, var(--white) 100%);
}

.food-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.olive {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    animation: oliveBounce 1.5s ease-in-out infinite;
}

.olive:nth-child(1) {
    top: -30px;
    left: -10px;
    animation-delay: 0s;
}

.olive:nth-child(2) {
    top: 10px;
    left: -30px;
    animation-delay: 0.5s;
}

.olive:nth-child(3) {
    top: 10px;
    left: 10px;
    animation-delay: 1s;
}

.herb {
    width: 15px;
    height: 15px;
    background: var(--accent-green);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    animation: herbBounce 1.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

.grape {
    width: 12px;
    height: 12px;
    background: var(--secondary-green);
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    left: -15px;
    animation: grapeBounce 2s ease-in-out infinite;
    animation-delay: 0.7s;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes plateSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes oliveBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes herbBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(180deg); }
}

@keyframes grapeBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.1); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 300;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: screen;
    border: none !important;
    outline: none !important;
}

.nav-logo h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.order-btn {
    background: var(--gold) !important;
    color: var(--primary-green) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.order-btn:hover {
    background: var(--white) !important;
    color: var(--primary-green) !important;
    transform: translateY(-2px) !important;
}

.order-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   /* opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: fadeInOut 12s infinite;*/
}

.slide-image.active {
    opacity: 1;
}

.slide-image:nth-child(1) { animation-delay: 0s; }
.slide-image:nth-child(2) { animation-delay: 4s; }
.slide-image:nth-child(3) { animation-delay: 8s; }

@keyframes fadeInOut {
    0%, 25% { opacity: 0; }
    25%, 50% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(74, 124, 89, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    color: var(--white);
    z-index: 3;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.8s forwards;
}

.cta-button {
    background: var(--gold);
    color: var(--primary-green);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInLeft 1s ease-out 1.1s forwards;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInLeft 1s ease-out 1.1s forwards;
}

.order-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.order-button:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-olive,
.floating-herb,
.floating-grape,
.floating-pita,
.floating-tomato {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-olive {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-herb {
    width: 30px;
    height: 30px;
    background: var(--accent-green);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-grape {
    width: 25px;
    height: 25px;
    background: var(--secondary-green);
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.floating-pita {
    width: 35px;
    height: 35px;
    background: var(--cream);
    border-radius: 50%;
    top: 40%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-tomato {
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    border-radius: 50%;
    bottom: 20%;
    right: 30%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Talk of the Town Section */
.talk-of-town {
    margin-top: 4rem;
    text-align: center;
}

.talk-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    position: relative;
}

.talk-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Reviews Ticker */
.reviews-ticker {
    background: var(--cream);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    margin-top: 2rem;
}

.ticker-container {
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    position: relative;
}

.ticker-content {
    display: inline-flex;
    gap: 2rem;
    align-items: stretch;
}

.review-card {
    display: inline-flex;
    flex-direction: column;
    min-width: 450px;
    max-width: 450px;
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    cursor: pointer;
    flex-shrink: 0;
}

.review-card.expanded {
    min-width: 550px;
    max-width: 550px;
    padding: 40px;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.3);
}

.review-card:hover:not(.expanded) {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.25);
    border-color: var(--primary-green);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
    line-height: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-value {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    height: auto;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 2px;
}

.reviewer-title {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 400;
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.review-card.expanded .expanded-content {
    max-height: 200px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-green);
}

.expanded-text {
    font-style: italic;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.expanded-date {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 10px;
    font-style: normal;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(45deg, var(--light-green), var(--accent-green));
    position: relative;
    overflow: hidden;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.menu-item-description {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.5;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Order Section */
.menu-order-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    color: var(--white);
}

.menu-order-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-order-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.order-button-large {
    background: var(--gold);
    color: var(--primary-green);
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-button-large:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.order-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.catering-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catering-button:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chef-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.image-placeholder {
    text-align: center;
    color: var(--white);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 30px;
}

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--light-text);
}

.contact-form {
    background: var(--cream);
    padding: 30px;
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-form button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.contact-form button:disabled {
    background: var(--light-green);
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-status.loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--cream);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-info p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-green);
    color: var(--light-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .slide-image {
        object-position: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .nav-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .about-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .ticker-content {
        gap: 2rem;
    }
    
    .review-card {
        min-width: 350px;
        max-width: 350px;
        padding: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .review-card.expanded {
        min-width: 420px;
        max-width: 420px;
        padding: 35px;
    }
    
    .review-text {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        overflow: hidden;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        top: -8px;
        left: 15px;
    }
    
    .talk-title {
        font-size: 2rem;
    }
    
    .menu-order-section h3 {
        font-size: 2rem;
    }
    
    .order-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .order-button-large,
    .catering-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .category-btn {
        width: 200px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Menu Item Modal Styles */
.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-modal.active .menu-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-image-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    min-height: 400px;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.category-badge {
    background: rgba(45, 80, 22, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2d5016;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-order-btn,
.customize-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-order-btn {
    background: linear-gradient(135deg, #2d5016, #4a7c23);
    color: white;
}

.add-to-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.customize-btn {
    background: #f8f9fa;
    color: #2d5016;
    border: 2px solid #e9ecef;
}

.customize-btn:hover {
    background: #e9ecef;
    border-color: #2d5016;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #666;
}

.info-item i {
    color: #4a7c23;
    width: 16px;
    text-align: center;
}

/* Click hint on menu items */
.click-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #2d5016;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-item:hover .click-hint {
    opacity: 1;
}

/* Enhanced menu item hover effect */
.menu-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.menu-item-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .menu-modal-content {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-image-container {
        border-radius: 20px 20px 0 0;
        min-height: 250px;
    }
    
    .modal-image {
        min-height: 250px;
    }
    
    .modal-details {
        padding: 30px 25px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-price {
        font-size: 1.6rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .add-to-order-btn,
    .customize-btn {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .modal-details {
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}
/* Catering Section Styles */
.catering-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.catering-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catering-content {
    max-width: 1200px;
    margin: 0 auto;
}

.catering-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.catering-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 25px;
    font-weight: 600;
}

.catering-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.catering-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #555;
}

.feature-item i {
    color: #4a7c23;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.catering-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.catering-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catering-image:hover .catering-hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 80, 22, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catering-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    width: 100%;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
}

.catering-packages h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #4a7c23);
}

.package-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured::before {
    background: linear-gradient(90deg, #c17817, #e89611);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #c17817, #e89611);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(193, 120, 23, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.package-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 10px;
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c23;
    font-family: 'Playfair Display', serif;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.package-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.package-items li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.package-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c23;
    font-weight: bold;
}

.package-serves {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.catering-cta {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.catering-order-btn,
.catering-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catering-order-btn {
    background: linear-gradient(135deg, #2d5016, #4a7c23);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.catering-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
    text-decoration: none;
    color: white;
}

.catering-contact-btn {
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.catering-contact-btn:hover {
    background: #2d5016;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .catering-section {
        padding: 60px 0;
    }
    
    .catering-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .catering-features {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
    }
    
    .catering-hero-image {
        height: 300px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .catering-cta {
        padding: 40px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .catering-order-btn,
    .catering-contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .catering-text h3 {
        font-size: 1.8rem;
    }
    
    .catering-packages h3 {
        font-size: 1.8rem;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-header h4 {
        font-size: 1.4rem;
    }
    
    .package-price {
        font-size: 1.6rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}
/* Google Rating Section Styles */
.google-rating-section {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.google-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.google-rating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 30px;
}

.google-rating-icon {
    margin-bottom: 25px;
}

.google-rating-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.google-rating-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 15px;
    font-weight: 600;
}

.google-rating-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.google-rating-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #2d5016;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.google-rating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.google-rating-btn:hover::before {
    left: 100%;
}

.google-rating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #2d5016;
    border-color: #4285f4;
}

.google-rating-btn i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars-preview {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-left: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(45, 80, 22, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating animation for Google icon */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.google-rating-icon i {
    animation: float 3s ease-in-out infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .google-rating-section {
        margin-top: 40px;
        padding: 40px 0;
        border-radius: 20px;
    }
    
    .google-rating-content {
        padding: 0 20px;
    }
    
    .google-rating-icon i {
        font-size: 3rem;
    }
    
    .google-rating-content h3 {
        font-size: 1.8rem;
    }
    
    .google-rating-content p {
        font-size: 1rem;
    }
    
    .google-rating-btn {
        padding: 15px 25px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .rating-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .google-rating-content h3 {
        font-size: 1.6rem;
    }
    
    .google-rating-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .rating-stats {
        gap: 15px;
    }
}
/* Dietary Tags Styles */
.dietary-tag {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 12px !important;
    margin: 4px 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dietary-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.dietary-tag[data-tag="vegan"] {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.dietary-tag[data-tag="vegetarian"] {
    background: rgba(139, 195, 74, 0.1);
    border-color: rgba(139, 195, 74, 0.3);
}

.dietary-tag[data-tag="dairy-free"] {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
}

.dietary-tag[data-tag="gluten-free"] {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
}

.dietary-tag span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dietary-tag i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Enhanced modal info section */
.modal-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #666;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.modal-info .info-item:not(.dietary-tag) i {
    color: #4a7c23;
    width: 16px;
    text-align: center;
}

/* Mobile responsiveness for dietary tags */
@media (max-width: 768px) {
    .dietary-tag {
        padding: 6px 10px !important;
        margin: 3px 0 !important;
    }
    
    .dietary-tag span {
        font-size: 0.85rem;
    }
    
    .dietary-tag i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
}
/* Menu Ribbon Styles */
.menu-ribbon {
    position: absolute;
    top: 12px;
    right: -5px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 10;
    transform: rotate(12deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.menu-ribbon.popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    right: -8px;
    top: 15px;
}

.menu-ribbon.signature {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    right: -6px;
    top: 12px;
}

.menu-ribbon.award {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    position: absolute;
    right: -12px;
    top: 10px;
    padding: 6px 25px;
    min-width: 100px;
    transform: rotate(10deg);
}

.menu-ribbon.award::before {
    content: '🏆';
    margin-right: 4px;
    font-size: 0.8rem;
}

/* Ribbon hover effects */
.menu-item:hover .menu-ribbon {
    transform: rotate(12deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.menu-item:hover .menu-ribbon.award {
    transform: rotate(10deg) scale(1.05);
}

/* Mobile responsiveness for ribbons */
@media (max-width: 768px) {
    .menu-ribbon {
        font-size: 0.65rem;
        padding: 5px 15px;
        top: 8px;
        right: -5px;
        min-width: 60px;
    }
    
    .menu-ribbon.popular {
        right: -6px;
        top: 10px;
    }
    
    .menu-ribbon.signature {
        right: -4px;
        top: 8px;
    }
    
    .menu-ribbon.award {
        right: -8px;
        top: 6px;
        padding: 5px 18px;
        min-width: 75px;
    }
    
    .menu-ribbon.award::before {
        font-size: 0.7rem;
        margin-right: 2px;
    }
}