:root {
    --primary-color: #4a2c2a; /* chocolate brown */
    --secondary-color: #e8cfc4; /* soft pink/beige */
    --bg-color: #f8f5f2; /* cream */
    --text-color: #333333;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s, box-shadow 0.4s;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    height: 90px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Soft glow for visibility on dark animation */
}

header.scrolled .logo {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s, color 0.3s;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Soft glow for visibility */
}

header.scrolled .nav-links a {
    text-shadow: none;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-links a.active {
    opacity: 1;
    border-bottom: 2px solid var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-nav {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.scroll-container {
    position: relative;
    height: 400vh;
    background-color: #000;
}

@media (max-width: 768px) {
    .scroll-container {
        height: 200vh;
    }
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 0 5%;
    pointer-events: none;
    /* Aesthetic gradient to improve text visibility */
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, transparent 75%);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    opacity: 0; /* Initial state for JS choreography */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* Soft aesthetic shadow as per Apple-style requirements */
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0; /* Initial state for JS choreography */
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    pointer-events: auto;
    opacity: 0; /* Initial state for JS choreography */
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

/* Helper classes for JS choreography */
.hero-content.active .hero-title,
.hero-content.active .hero-subtitle,
.hero-content.active .hero-ctas {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(74, 44, 42, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Sections General */
.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 4rem;
    line-height: 1.2;
}


/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.product-img-wrapper {
    height: 400px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 3rem;
}

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

.product-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-text {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: gap 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px; /* Adjusted for better proportions */
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Custom Grid Layout from reference */
.masonry-item.item-1 { grid-column: 1; grid-row: 1; }
.masonry-item.item-2 { grid-column: 1; grid-row: 2; }
.masonry-item.item-3 { grid-column: 2; grid-row: 1 / span 2; } /* Tall */
.masonry-item.item-4 { grid-column: 3; grid-row: 1; }
.masonry-item.item-5 { grid-column: 4; grid-row: 1; }
.masonry-item.item-6 { grid-column: 3 / span 2; grid-row: 2; } /* Wide */

.masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: var(--bg-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    display: flex;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 44, 42, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-overlay span {
    transform: translateY(0);
}

/* Menu Section */
.menu-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.menu-section .section-subtitle {
    display: block;
    text-align: center;
}

.menu-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.item-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
}

/* Tighten the about grid */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;          /* was 6rem */
    align-items: center;
}

/* Constrain the image so it doesn't stretch tall */
.about-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    max-height: 560px;  /* ADD THIS */
}

.about-image img {
    width: 100%;
    height: 100%;       /* was just width: 100% */
    object-fit: cover;  /* ADD THIS — crops nicely instead of stretching */
    display: block;
}

.about-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #f5e6df;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Order Section */
.order-section {
    padding: 6rem 2rem;
    text-align: center;
}

.order-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 6rem 4rem;
    border-radius: 48px;
}

.order-card .section-title {
    margin-bottom: 1.5rem;
}

.order-card p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.order-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.order-actions .cta-button.secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.order-actions .cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background-color: #2a2a2a;
    color: var(--white);
    border-top: 3px solid var(--secondary-color);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(232, 207, 196, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--secondary-color);
    background-color: rgba(232, 207, 196, 0.15);
    transform: translateY(-3px);
}

.contact-info {
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--secondary-color);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(232, 207, 196, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Accessibility: Focus styles */
a:focus-visible, 
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    gap: 32px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-scene {
    position: relative;
    width: 160px;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.brownie-pan {
    position: relative;
    width: 110px;
    height: 80px;
}

.pan-body {
    position: absolute;
    bottom: 0; left: 0;
    width: 110px; height: 60px;
    background: #2a1a18;
    border-radius: 8px 8px 14px 14px;
}

.pan-rim {
    position: absolute;
    top: 10px; left: -6px;
    width: 122px; height: 12px;
    background: #3d2420;
    border-radius: 4px;
}

.brownie-block {
    position: absolute;
    top: -2px; left: 8px;
    width: 94px; height: 32px;
    background: #5c3325;
    border-radius: 6px 6px 2px 2px;
    overflow: hidden;
}

.brownie-shine {
    position: absolute;
    top: 4px; left: 10px;
    width: 30px; height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    transform: rotate(-15deg);
}

.brownie-crack {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 2px;
    background: #3d2218;
    border-radius: 1px;
}

.steam-group {
    position: absolute;
    top: -28px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.steam {
    width: 4px; height: 18px;
    background: linear-gradient(to top, rgba(200,160,130,0.5), transparent);
    border-radius: 2px;
    animation: steamRise 1.8s ease-in-out infinite;
    transform-origin: bottom center;
}
.steam:nth-child(1) { animation-delay: 0s; }
.steam:nth-child(2) { animation-delay: 0.4s; height: 22px; }
.steam:nth-child(3) { animation-delay: 0.8s; }

@keyframes steamRise {
    0%   { opacity: 0; transform: translateY(0) scaleX(1); }
    30%  { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-24px) scaleX(1.6); }
}

.drip-wrap {
    position: absolute;
    top: 22px; left: 0;
    width: 94px; height: 16px;
}

.drip {
    position: absolute;
    bottom: 0;
    width: 7px;
    background: #8b4513;
    border-radius: 0 0 50% 50%;
    animation: dripDown 2.4s ease-in-out infinite;
    transform-origin: top center;
}
.drip:nth-child(1) { left: 12px; height: 10px; animation-delay: 0s; }
.drip:nth-child(2) { left: 34px; height: 14px; animation-delay: 0.6s; }
.drip:nth-child(3) { left: 62px; height: 8px; animation-delay: 1.2s; }

@keyframes dripDown {
    0%,100% { transform: scaleY(0.6); opacity: 0.5; }
    50%      { transform: scaleY(1.2); opacity: 1; }
}

.progress-track {
    width: 160px; height: 3px;
    background: var(--secondary-color);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 99px;
    width: 0%;
    transition: width 0.3s ease;
}

.loader-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

/* Responsiveness */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-image {
        order: 2;
    }
    .about-text {
        order: 1;
    }
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    
    /* Hero section mobile optimization */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .order-card {
        padding: 3rem 1.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .order-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .order-actions .cta-button {
        width: 100%;
        max-width: 280px;
    }
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .masonry-item.item-1, 
    .masonry-item.item-2, 
    .masonry-item.item-3, 
    .masonry-item.item-4, 
    .masonry-item.item-5, 
    .masonry-item.item-6 {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category {
        padding: 2rem 1.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .menu-section {
        padding: 4rem 1.5rem;
    }
}
