        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #f5f0e8;
            color: #2c2c2c;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #f5f0e8;
            z-index: 1000;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #d4c5b0;
        }

        .logo {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo-subtitle {
            font-size: 10px;
            letter-spacing: 3px;
        }

        nav {
            display: flex;
            gap: 40px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav a {
            text-decoration: none;
            color: #2c2c2c;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.6;
        }

        .book-btn {
            padding: 10px 25px;
            border: 1px solid #2c2c2c;
            border-radius: 30px;
            background: transparent;
            cursor: pointer;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .book-btn:hover {
            background: #2c2c2c;
            color: #f5f0e8;
        }

        /* Burger Menu */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1100;
        }

        .burger span {
            width: 25px;
            height: 2px;
            background: #2c2c2c;
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('restaurant-interior.jpg') no-repeat center center;           
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero h1 {
            font-size: 72px;
            color: white;
            letter-spacing: 8px;
            font-weight: 300;
            text-transform: uppercase;
            animation: fadeInUp 1s ease;
        }

        /* Take a Sit Section */
        .take-sit-section {
            padding: 100px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .take-sit-content h2 {
            font-size: 28px;
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .take-sit-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .img-box {
            width: 100%;
            height: 250px;
            background: #d4c5b0;
            border-radius: 8px;
            overflow: hidden;
        }

        .img-box.large {
            background: url('chef-cooking-kitchen-while-wearing-professional-attire.jpg') no-repeat center center;
            background-size: cover;
            grid-row: span 2;
            height: 520px;
        }


        .img-box.dish {
            background: url('side-view-shrimp-caesar-plate-topped-with-potato-shoestrings-min.jpg') no-repeat center center;
            background-size: cover;
        }

        .img-box.restaurant {
            background: url('dining-table-with-chairs-tableware.jpg') no-repeat center center;
            background-size: cover;
        }
        /* Chef Section */
        .chef-section {
            background: #f5f0e8;
            padding: 100px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .chef-image {
            width: 100%;
            height: 600px;
            background:url('portrait-man-smiling-kitchen.jpg') no-repeat center center;
            background-size: cover;
            border-radius: 8px;
        }

        .chef-content h2 {
            font-size: 42px;
            line-height: 1.3;
            margin-bottom: 30px;
             color: #7c0603;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .chef-content p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #4a4a4a;
        }

        .menu-card {
            border:solid 1px #7e0000;
            background: white;
            padding: 50px;
            border-radius: 8px;
            margin-top: 50px;
            position: relative;
        }

        .menu-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .menu-card p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .menu-link {
            text-decoration: underline;
            color: #2c2c2c;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 30px;
        }

        .leaf-icon {
            position: absolute;
            right: 30px;
            bottom: 30px;
            width: 60px;
            height: 60px;
            opacity: 0.3;
        }

        /* Chefs Grid */
        .dishes-grid {
            padding: 100px 60px;
            background: #f5f0e8;
        }

        .dishes-grid h2 {
            font-size: 48px;
            margin-bottom: 60px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .dishes-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .dish-card {
            text-align: center;
        }

        .dish-photo {
            width: 100%;
            height: 400px;
            background: #c4a574;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .dish-photo {
            width: 100%;
            height: 400px;
            background: #c4a574;
            border-radius: 8px;
            margin-bottom: 20px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* per-chef photos (place images in the project root or adjust paths) */
        .dish-photo.julien {
            background-image: url('images/beverages/cuban-libre.jpg');
        }

        .dish-photo.celine {
            background-image: url('images/desserts/Tres Leches Cake.jpg');
        }

  

        .dish-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }


        .dish-card p {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
        }

        .coming-soon {
            background: url('images/dishes/Yuca-Frita.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 200px 200px 0 0;
            font-size: 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* Club Section */
        .club-section {
            padding: 60px;
            background: #f5f0e8;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #d4c5b0;
            margin: 0 60px;
            border-radius: 8px;
        }

        .club-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .club-icon {
            width: 50px;
            height: 50px;
            border: 2px solid #2c2c2c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .club-text h3 {
            font-size: 24px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .club-text p {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Bar Section */
        .bar-section {
            background: #7e0000;
            color: white;
            padding: 100px 60px;
            margin-top: 100px;
        }

        .bar-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

          .bar-content h2{
z-index: 3;
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 3px;
          }

        .bar-image {
            width: 100%;
            height: 500px;
            background: url('dining-table-with-chairs-tableware.jpg') no-repeat center center;
            background-size: cover;
            border-radius: 8px;
        }

        .bar-text h2 {
            font-size: 48px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .bar-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            font-style: italic;
        }

        .bar-text p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* Cuban Experience Section */
        .cuban-section {
            padding: 100px 60px;
            text-align: center;
        }

        .cuban-section h2 {
            font-size: 36px;
            font-style: italic;
            margin-bottom: 60px;
        }

        .cuban-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .cuban-image {
            width: 100%;
            height: 400px;
            background: url('grapefruit-orange-juice-with-ice.jpg') no-repeat center center;
            background-size: cover;
            border-radius: 8px;
        }

        .info-box {
            background: #ede8df;
            padding: 50px;
            border-radius: 8px;
            text-align: left;
        }

        .info-box h3 {
            font-size: 18px;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .info-box p {
            font-size: 12px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: #2c2c2c;
            color: white;
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        footer nav {
            display: flex;
            gap: 30px;
        }

        footer a {
            color: white;
            text-decoration: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .take-sit-section,
            .chef-section,
            .bar-content,
            .cuban-content,
            .dishes-container {
                grid-template-columns: 1fr;
            }

            header {
                padding: 20px 30px;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #f5f0e8;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                font-size: 18px;
                z-index: 1000;
                transition: transform 0.3s ease;
                transform: translateX(-100%);
            }

            nav.active {
                display: flex;
                transform: translateX(0);
            }

            .book-btn {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .club-section {
                margin: 0 30px;
                padding: 40px 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .club-content {
                width: 100%;
                justify-content: space-between;
            }

            .club-text p {
                margin: 0;
            }

            .club-section .book-btn {
                display: block;
                width: 100%;
                text-align: center;
            }
        }