   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background-color: #fef8f0;
            color: #231f1b;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        header {
            background: #ffffff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
            position: sticky;
            top: 0;
            z-index: 200;
            border-bottom: 1px solid #f0e2d4;
        }

        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 18px 0;
            gap: 20px;
        }

        .logo h1 {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, #b45f2b, #9b4a1a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .logo p {
            font-size: 0.8rem;
            color: #aa5c28;
            font-weight: 500;
        }

        /* Desktop navigation */
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #2f2a24;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #b45f2b;
        }

        /* Hamburger icon - hidden on desktop view*/
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            gap: 6px;
            padding: 8px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: #b45f2b;
            border-radius: 4px;
            transition: 0.2s;
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }
        .mobile-menu-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: min(280px, 75%);
            height: 100%;
            background: #ffffff;
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            padding: 2rem 1.5rem;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 1001;
        }
        .mobile-menu-overlay.active .mobile-menu {
            transform: translateX(0);
        }
        .close-menu {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #b45f2b;
            margin-bottom: 2rem;
            line-height: 1;
        }
        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .mobile-menu-links a {
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            color: #2f2a24;
            transition: color 0.2s;
        }
        .mobile-menu-links a:hover {
            color: #b45f2b;
        }

        /* Buttons */
        .btn-primary {
            background-color: #b45f2b;
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary:hover {
            background-color: #934a1c;
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid #b45f2b;
            color: #b45f2b;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }

        .btn-outline:hover {
            background: #b45f2b;
            color: white;
        }

        /* Slideshow */
        .slideshow-container {
            position: relative;
            width: 100%;
            max-height: 550px;
            overflow: hidden;
            background: #2c241c;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 550px;
        }

        .slide {
            min-width: 100%;
            height: 550px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 2rem 2rem 1.5rem;
            color: white;
        }

        .slide-overlay h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-weight: bold;
            font-size: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: 0.2s;
            user-select: none;
        }

        .prev:hover, .next:hover {
            background: #b45f2b;
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        .dots {
            text-align: center;
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 10;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s;
            cursor: pointer;
        }

        .active-dot, .dot:hover {
            background-color: #b45f2b;
        }

        /* features */
        .features {
            padding: 70px 0;
            background: white;
        }

        .grid-3 {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .feature-card {
            flex: 1;
            min-width: 240px;
            text-align: center;
            background: #fef7ef;
            padding: 32px 20px;
            border-radius: 32px;
            transition: 0.2s;
        }

        .feature-card h3 {
            font-size: 1.7rem;
            margin-bottom: 12px;
            color: #b45f2b;
            font-weight: 700;
        }

        /* menu */
        .menu-section {
            padding: 70px 0;
            background: #fefaf4;
        }

        .section-title {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 48px;
            color: #2c241a;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 40px;
        }

        .dish-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #f0e2d4;
        }

        .dish-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 28px rgba(0, 0, 0, 0.08);
        }

        .dish-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .dish-info {
            padding: 22px 20px 26px;
        }

        .dish-info h3 {
            font-size: 1.45rem;
            margin-bottom: 8px;
        }

        .dish-info p {
            color: #5a4a34;
            margin: 12px 0;
            font-size: 0.95rem;
        }

        .price {
            font-weight: 800;
            font-size: 1.5rem;
            color: #b45f2b;
            margin: 12px 0 16px;
        }

        .order-btn {
            background: #b45f2b;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
            transition: background 0.2s;
        }

        .order-btn:hover {
            background: #8f441b;
        }

        /* message section */
        .message-section {
            padding: 80px 0;
            background: linear-gradient(115deg, #fff2e6, #ffe6d5);
        }

        .message-card {
            max-width: 720px;
            margin: 0 auto;
            background: white;
            border-radius: 44px;
            padding: 44px 36px;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
            color: #2c241a;
        }

        input, textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0cfbf;
            border-radius: 32px;
            font-size: 1rem;
            background: #fefcf9;
            transition: 0.2s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #b45f2b;
            box-shadow: 0 0 0 3px rgba(180, 95, 43, 0.2);
        }

        .btn-message {
            background-color: #b45f2b;
            width: 100%;
            padding: 14px;
            font-size: 1.1rem;
            border-radius: 60px;
            font-weight: bold;
        }

        /* Toast container */
        .toast-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .toast {
            background: white;
            border-radius: 60px;
            padding: 14px 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            font-weight: 500;
            animation: slideIn 0.3s ease;
            border-left: 6px solid;
            max-width: 320px;
        }
        .toast.success {
            border-left-color: #2e7d32;
            background: #e8f5e9;
            color: #1b5e20;
        }
        .toast.error {
            border-left-color: #c62828;
            background: #ffebee;
            color: #b71c1c;
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* story */
        .story {
            padding: 80px 0;
            background: white;
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .story-content p {
            font-size: 1.05rem;
            margin-bottom: 24px;
            color: #3b3227;
        }

        /* footer */
        footer {
            background: #1f1b16;
            color: #e9dfd3;
            padding: 50px 0 32px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            color: #c77e42;
            margin-bottom: 16px;
            font-size: 1.2rem;
        }

        .footer-col p, .footer-col a {
            color: #d9cdbd;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-col a:hover {
            color: #e7a05e;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #30281f;
            padding-top: 28px;
            font-size: 0.85rem;
            color: #b7a68e;
        }

        /* Responsive: hide desktop nav and show hamburger on small screens */
        @media (max-width: 750px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .slides, .slide {
                height: 380px;
            }
            .slideshow-container {
                max-height: 380px;
            }
            .slide-overlay h3 {
                font-size: 1.2rem;
            }
            .message-card {
                padding: 28px 20px;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .toast-container {
                bottom: 20px;
                right: 20px;
                left: 20px;
            }
            .toast {
                max-width: none;
                width: auto;
            }
        }
