/* ============================================
   QDOBA NUTRITION CALCULATOR - STARBUCKS STYLE
   Dark Yellow/Gold Single Color Theme
   ============================================ */

:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --primary-light: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-white: #FFF;
    --bg-light: #F9F9F9;
    --border: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none; /* Remove underline from logo */
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--bg-white);
}

.nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-light);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* FEATURES SECTION */
.features-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-link:hover {
    color: var(--primary-dark);
}

/* SALIENT FEATURES */
.salient-features {
    padding: 3rem 0;
    background: var(--bg-white);
}

.salient-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ABOUT SECTION */
.about-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.about-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-section blockquote {
    background: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 4px;
}

.about-section blockquote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-section cite {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 3rem 0;
    background: var(--bg-white);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.reason-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--primary);
}

.testimonial-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-card footer {
    color: var(--primary);
    font-weight: 600;
}

/* CTA SECTION */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-button-large:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 768px) {
    /* HEADER & NAVIGATION */
    .header .container {
        justify-content: space-between;
    }

    .nav {
        /* Hide full navigation on mobile */
        display: none;
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--primary-dark); /* Dark background for menu */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .nav.nav-open {
        display: flex; /* Show navigation when open */
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* GENERAL LAYOUT ADJUSTMENTS */
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .calculator-section {
        padding: 0 10px !important;
    }

    .calculator-section > div {
        grid-template-columns: 1fr !important; /* Stack columns */
    }

    .calculator-layout {
        grid-template-columns: 1fr; /* Stack columns */
        margin: 1rem auto;
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }

    .footer-section h4 {
        margin-top: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CALCULATOR LAYOUT */
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 20px;
}

.products-column {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.products-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 1.5rem;
}

.products-header h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.filters {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.search-box,
.filter-select {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
}

.search-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-select {
    background: var(--bg-white);
    color: var(--text-dark);
}

.products-list {
    max-height: 800px;
    overflow-y: auto;
    padding: 1rem;
}

.product-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.product-item:hover {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding-left: calc(1rem - 4px);
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    background: var(--bg-light);
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-calories {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* NUTRITION COLUMN */
.nutrition-column {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--bg-white);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.nutrition-summary h2 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    color: var(--bg-white);
}

.selected-items {
    margin-bottom: 1.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.empty-state {
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

.selected-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.nutrition-totals {
    margin-bottom: 1.5rem;
}

.nutrition-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.nutrition-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-light);
}

.nutrition-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* MAIN CONTENT STYLES */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 2rem 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .nutrition-column {
        position: static;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    /* Mobile styles will be added in media query */
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-list {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    /* Mobile styles will be added in media query */
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media print {
    .header,
    .footer,
    .filters,
    .action-buttons {
        display: none;
    }

    .nutrition-column {
        position: static;
        background: none;
        color: var(--text-dark);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* ============================================
   BLOG POST STYLES
   ============================================ */

/* Blog Post Container */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.blog-post {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Back to Blog Link */
.back-to-blog {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.back-to-blog:hover {
    color: var(--primary-dark);
    transform: translateX(-4px);
}

/* Blog Post Title */
.blog-post h1 {
    color: var(--text-dark);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.75rem;
}

/* Blog Post Meta */
.blog-post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

/* Blog Post Images - Consistent Sizing */
.blog-post img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Optional: Fixed aspect ratio for all blog images */
.blog-post img {
    aspect-ratio: 16 / 9;
}

/* Blog Post Content Typography */
.blog-post p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.blog-post h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.blog-post h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Blog Post Lists */
.blog-post ul,
.blog-post ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.blog-post li strong {
    color: var(--primary);
}

/* Blog Post Tables */
.blog-post table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.blog-post table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.blog-post table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.blog-post table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.blog-post table tbody tr:hover {
    background: var(--bg-light);
}

/* Back to All Posts Button */
.blog-post .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 2rem;
}

.blog-post .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Blog Post Responsive Design */
@media (max-width: 768px) {
    .blog-post-container {
        padding: 1rem 15px;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h1 {
        font-size: 1.6rem;
    }

    .blog-post h2 {
        font-size: 1.4rem;
    }

    .blog-post h3 {
        font-size: 1.2rem;
    }

    .blog-post img {
        margin: 1.5rem 0;
    }

    .blog-post table {
        font-size: 0.9rem;
    }

    .blog-post table th,
    .blog-post table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post h1 {
        font-size: 1.4rem;
    }

    .blog-post p,
    .blog-post li {
        font-size: 1rem;
    }

    .blog-post table {
        font-size: 0.85rem;
    }
}
/* Nutrition Table Styles */
.nutrition-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.nutrition-table th,
.nutrition-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.nutrition-table th {
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

.nutrition-table tr:hover {
    background: var(--bg-light);
}

/* Menu Grid Styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--primary);
}

.menu-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.menu-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
