 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            background-color: #f7f6f2;
        }
        
        /* Header with Hero Image */
        .dine-hero {
            position: relative;
            width: 100%;
            margin-top: -40px !important; /* Prevent unwanted top margin */
            height: 110vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .dine-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

         @media (max-width: 768px) {
            .dine-hero-image {
                object-position: 60% center;
            }
        }
        
        .dine-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .dine-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        
        .dine-hero p {
            font-size: 1rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            font-weight: 400;
            line-height: 1.6;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        
        /* Common Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #c19a6b;
            color: white;
            text-decoration: none !important;
            font-size: 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 200;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .btn:hover {
            background-color: #a67c52;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Dining Experience Sections */
        .dining-section {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .dining-text {
            flex: 1;
            padding: 60px;
        }
        
        .dining-image {
            flex: 1;
            height: 500px;
            overflow: hidden;
        }
        
        .dining-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .dining-section:hover .dining-image img {
            transform: scale(1.05);
        }
        
        .dining-title {
            font-size: 1.8rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            position: relative;
            padding-bottom: 15px;
        }
        
        .dining-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #c19a6b;
        }
        
        /* Special Dining Options */
        .special-dining-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .special-dining-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .special-dining-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .special-dining-image {
            height: 250px;
            overflow: hidden;
        }
        
        .special-dining-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .special-dining-card:hover .special-dining-image img {
            transform: scale(1.1);
        }
        
        .special-dining-content {
            padding: 30px;
        }
        
        .special-dining-name {
            font-size: 1.5rem;
            font-weight: 200;
            margin-bottom: 15px;
            color: #222;
        }
        
        /* Menu Download Section */
        .menu-section {
            background-color: #E3D9D2;
            text-align: center;
            padding: 80px 20px;
        }
        
        .menu-btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
@media (max-width: 1024px) {
    .dining-section[style*="flex-direction: row-reverse"] {
        flex-direction: column-reverse !important;
    }
    
    .dining-section[style*="flex-direction: row-reverse"] .dining-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .dining-section[style*="flex-direction: row-reverse"] .dining-text {
        padding: 30px 20px;
    }
    
    .dining-section[style*="flex-direction: row-reverse"] .dining-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .dining-section[style*="flex-direction: row-reverse"] .dining-title {
        font-size: 1.5rem;
    }
    
    .dining-section[style*="flex-direction: row-reverse"] .dining-image {
        height: 250px;
    }
    
    .dining-section[style*="flex-direction: row-reverse"] .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .dine-hero {
        height: 80vh;
    }
    
    .dine-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .dine-hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .section-container {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .dining-section {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .dining-image {
        height: 300px;
        width: 100%;
        order: -1;
    }
    
    .dining-text {
        padding: 30px 20px;
    }
    
    .dining-title {
        font-size: 1.5rem;
    }
    
    .special-dining-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .special-dining-image {
        height: 200px;
    }
    
    .special-dining-name {
        font-size: 1.3rem;
    }
    
    .menu-btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 400px) {
    .dine-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .dining-title {
        font-size: 1.3rem;
    }
    
    .special-dining-content {
        padding: 20px;
    }
}

/* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }