        :root {
            --brand-green: #4A5D3F; 
            --brand-beige: #EADBC8;
            --text-dark: #2C2C2C;
            --whatsapp-green: #25D366;
            --facebook-blue: #1877F2;
            --white: #FFFFFF;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--brand-beige);
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Rye', serif; 
            color: var(--brand-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        header {
            position: relative;
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(to bottom, rgba(234, 219, 200, 0.9), rgba(234, 219, 200, 1));
            border-bottom: 4px solid var(--brand-green);
        }

        .logo-container img {
            max-width: 100%;
            height: auto;
            width: 500px; 
            filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
        }

        .slogan {
            font-size: 1.5rem;
            margin-top: 10px;
            color: var(--text-dark);
            font-weight: bold;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        .card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(74, 93, 63, 0.15);
            text-align: center;
            border: 1px solid rgba(74, 93, 63, 0.2);
            overflow: hidden;
        }

        .intro-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--brand-green);
            margin-bottom: 20px;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

        .feature-item {
            flex: 1 1 300px;
            background: var(--brand-beige);
            padding: 15px;
            border-radius: 8px;
            border: 2px dashed var(--brand-green);
        }

        .menu-section img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--brand-green);
        }

        .delivery-badge {
            background-color: var(--brand-green);
            color: var(--brand-beige);
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            width: 100%;
        }

        .price-tag {
            font-size: 1.4rem;
            font-family: 'Rye', serif;
        }

        iframe {
            width: 100%;
            height: 400px;
            border: 2px solid var(--brand-green);
            border-radius: 10px;
            margin-top: 20px;
        }

        .cta-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
            align-items: center;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
            max-width: 350px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: white;
        }

        .btn-facebook {
            background-color: var(--facebook-blue);
            color: white;
        }

        footer {
            text-align: center;
            padding: 30px;
            background-color: var(--brand-green);
            color: var(--brand-beige);
            margin-top: 40px;
        }

        @media (max-width: 600px) {
            h1 { font-size: 2rem; }
            .slogan { font-size: 1.2rem; }
            .card { padding: 20px; }
            iframe { height: 300px; }
        }

        .showcase-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--brand-green);
            display: block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        #myBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 30px;
            z-index: 99;
            border: none;
            outline: none;
            background-color: var(--brand-green);
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            font-size: 18px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: background-color 0.3s, transform 0.3s;
        }

        #myBtn:hover {
            background-color: #3a4a32;
            transform: translateY(-3px);
        }

        #myImg {
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        #myImg:hover {
            opacity: 0.7;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.9);

            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            object-fit: contain;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        .modal-content {  
            animation-name: zoom;
            animation-duration: 0.6s;
        }

        @keyframes zoom {
            from {transform:scale(0)} 
            to {transform:scale(1)}
        }

        /* Mobile Tweak */
        @media only screen and (max-width: 700px){
            .modal-content {
                width: 100%;
            }
        }

        .promo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .promo-grid img {
            width: 100%;
            height: 100%;
            max-height: 250px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--brand-green);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            display: block;
        }

        .clickable-image {
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .clickable-image:hover { opacity: 0.7; }

        @media (max-width: 600px) {
            .promo-grid {
                grid-template-columns: 1fr;
            }
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 40px;
            transition: 0.3s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            -webkit-user-select: none;
            text-decoration: none;
            z-index: 1001;
        }

        .next {
            right: 15px;
            border-radius: 3px 0 0 3px;
        }
        
        .prev {
            left: 15px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(74, 93, 63, 0.8);
            color: white;
        }

        .contact-header {
            margin-top: 15px;
        }
        
        .contact-header a {
            display: inline-block;
            background-color: var(--brand-green);
            color: var(--brand-beige);
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        }

        .contact-header a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            background-color: #3a4a32;
        }