:root {
  --primary: #C18C5D;
  --primary-dark: #734624;
  --primary-light: #EABF98; /* Sophisticated Ochre */
  --primary-hover: #A0724A;
  --bg-main: #FFFFFF;
  --bg-alt: #FDFBF7; /* Soft cream */
  --bg-dark: #2A3B38; /* A deep greenish-gray for contrast, like the model image hero */
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #4d4d4d;
  --border-color: #EAEaea;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); background: var(--bg-main); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--text-dark); }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeIn 0.8s ease-out forwards; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.logo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--text-dark); letter-spacing: 2px; font-weight: 600; }
.logo span { color: var(--primary-dark); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); font-weight: 700; }

/* Buttons */
.btn { padding: 14px 32px; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; transition: all 0.4s ease; border-radius: 4px; display: inline-block; text-decoration: none; text-align: center; font-weight: 600; }
.btn-primary { background: var(--primary); color: #111; font-weight: 700; box-shadow: 0 4px 15px rgba(193, 140, 93, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(193, 140, 93, 0.4); }
.btn-outline { background: transparent; border: 2px solid var(--primary-dark); color: var(--primary-dark); font-weight: 700; }
.btn-outline:hover { background: var(--primary-dark); color: #fff; }
.btn-dark { background: var(--text-dark); color: #fff; }
.btn-dark:hover { background: #000; }

/* Hero Section */
.hero { display: flex; align-items: center; min-height: 100vh; padding: 100px 5%; background: var(--bg-dark); color: var(--text-light); position: relative; overflow: hidden; justify-content: flex-start; }
.hero-content { flex: 0 1 auto; max-width: 650px; z-index: 2; padding: 40px; background: rgba(30, 41, 38, 0.75); backdrop-filter: blur(8px); border-radius: 12px; }
.hero-content h1 { color: var(--text-light); font-size: 5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 500; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 450px; font-weight: 300; }
.hero-visual { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 968px) {
  .hero { justify-content: center; text-align: center; padding: 120px 5% 60px; }
  .hero-content { padding: 30px 20px; margin: 0; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-desc { margin: 0 auto 30px; }
}

/* Common Section */
.section-subtitle { display: block; color: var(--primary-dark); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; margin-bottom: 15px; text-align: center; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 20px; color: var(--text-dark); line-height: 1.2; }
.section-desc { text-align: center; color: var(--text-muted); margin-bottom: 50px; max-width: 600px; margin-inline: auto; font-size: 1.05rem; }

/* Categories */
.categories { padding: 100px 5% 40px; background: var(--bg-alt); }
.category-list { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.category-btn { background: #fff; border: 1px solid var(--border-color); color: var(--text-dark); padding: 12px 28px; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; transition: 0.3s; border-radius: 30px; font-weight: 500; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.category-btn.active, .category-btn:hover { background: var(--primary); border-color: var(--primary); color: #111; font-weight: 700; box-shadow: 0 4px 15px rgba(193, 140, 93, 0.3); }

/* Menu Section */
.menu-section { padding: 40px 5% 100px; background: var(--bg-alt); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }
.menu-card { background: #fff; border-radius: 8px; overflow: hidden; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid transparent; display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--primary); }
.menu-image { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-image { transform: scale(1.05); }
.image-wrapper { overflow: hidden; }
.menu-info { padding: 30px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.menu-title { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); font-family: var(--font-serif); }
.menu-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: auto; padding-bottom: 20px; line-height: 1.5; }
.menu-price { font-size: 1.5rem; color: var(--primary-dark); font-weight: bold; margin-bottom: 20px; display: block; }
.menu-card .btn { width: 100%; border-radius: 4px; padding: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Location CTA */
.location-cta { display: flex; flex-wrap: wrap; padding: 0; background: #fff; }
.location-info { flex: 1; min-width: 300px; padding: 100px 8%; display: flex; flex-direction: column; justify-content: center; background: var(--bg-dark); color: #fff; }
.location-info .section-subtitle { text-align: left; color: var(--primary-light); }
.location-info h2 { font-size: 3rem; margin-bottom: 30px; color: #fff; }
.location-info p { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); }
.location-map { flex: 1; min-width: 300px; min-height: 500px; }

/* Footer */
footer { text-align: center; padding: 50px 20px; color: rgba(255,255,255,0.8); font-size: 0.9rem; background: #111; }
footer p { color: rgba(255,255,255,0.5); }

/* Cart & Modal (Adjusted for light theme) */
.floating-cart-btn { display: none !important; position: fixed; bottom: 30px; right: 30px; background: var(--text-dark); color: #fff; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; border: none; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 99; transition: 0.3s; font-size: 1.5rem; }
.floating-cart-btn:hover { transform: scale(1.1) rotate(10deg); background: var(--primary); color: #111; }
.cart-count { position: absolute; top: -2px; right: -2px; background: var(--primary); color: #111; font-size: 0.8rem; font-weight: bold; width: 24px; height: 24px; border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid #fff; }

.cart-sidebar { position: fixed; top: 0; right: -450px; width: 450px; height: 100vh; background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,0.1); z-index: 1000; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 999; display: none; backdrop-filter: blur(4px); }
.cart-overlay.open { display: block; }

.cart-header { padding: 30px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: var(--bg-alt); }
.cart-header h2 { font-size: 1.8rem; color: var(--text-dark); }
.close-btn { background: none; border: none; color: var(--text-dark); font-size: 2rem; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: var(--primary-dark); transform: rotate(90deg); }

.cart-items { padding: 30px; flex-grow: 1; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.cart-item-info h4 { font-size: 1.1rem; margin-bottom: 5px; }
.cart-item-info p { color: var(--primary-dark); font-family: var(--font-serif); font-size: 1.1rem; }
.cart-item-actions { display: flex; align-items: center; gap: 15px; }
.cart-item-actions button { background: #f5f5f5; border: none; color: var(--text-dark); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; }
.cart-item-actions button:hover { background: var(--primary); color: #111; }
.remove-btn { color: #ff4444 !important; background: rgba(255,68,68,0.1) !important; }
.remove-btn:hover { background: #ff4444 !important; color: #fff !important; }

.cart-footer { padding: 30px; border-top: 1px solid var(--border-color); background: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,0.02); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.6rem; font-family: var(--font-serif); margin-bottom: 25px; color: var(--text-dark); }

/* Modal */
.modal-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.8); z-index: 1000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.modal-content { background: #fff; border-radius: 12px; width: 95%; max-width: 1200px; max-height: 90vh; overflow-y: auto; padding: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.modal-filters { display: flex; gap: 20px; margin-bottom: 40px; }
.search-input, .category-select { padding: 15px 20px; background: var(--bg-alt); border: 1px solid var(--border-color); color: var(--text-dark); flex: 1; font-family: var(--font-sans); border-radius: 6px; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.search-input:focus, .category-select:focus { border-color: var(--primary-dark); }

@media (max-width: 768px) {
  .navbar { padding: 15px 5%; }
  .nav-links { display: none; }
  .cart-sidebar { width: 100%; right: -100%; }
  .section-title { font-size: 2.2rem; }
  .hero-content h1 { font-size: 3rem; }
}

/* Additional Responsive & Layout CSS */
.hamburger { display: none; cursor: pointer; color: var(--text-dark); }
.nav-links.active { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--border-color); }
.nav-links.active li { margin-bottom: 15px; }

.subtitle-left { text-align: left; } .subtitle-right { text-align: right; }
.hero-highlight { color: var(--primary-light); font-style: italic; }
.hero-actions { display: flex; gap: 20px; align-items: center; }
.link-more { color: #fff; text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid var(--primary-light); padding-bottom: 5px; transition: 0.3s; }
.link-more:hover { color: var(--primary-light); }

.about-section { padding: 100px 5%; background: var(--bg-main); display: flex; flex-wrap: wrap; gap: 50px; align-items: center; max-width: 1400px; margin: 0 auto; }
.about-images { flex: 1.2; min-width: 400px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.img-1 { width: 100%; border-radius: 8px; object-fit: cover; height: 350px; }
.img-2 { width: 100%; border-radius: 8px; object-fit: cover; height: 350px; }
.about-text { flex: 1; min-width: 400px; padding: 0 20px; display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.about-text h2 { font-size: 3.5rem; margin-bottom: 30px; font-family: var(--font-serif); line-height: 1.1; }
.about-text .desc { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; max-width: 500px; text-align: right; }
.stats-container { display: flex; flex-direction: row; flex-wrap: wrap; gap: 15px; justify-content: flex-end; width: 100%; }
.stat-card { background: var(--bg-alt); padding: 15px 25px; border-radius: 50px; border: 1px solid var(--border-color); display: inline-flex; align-items: center; gap: 10px; max-width: max-content; }
.stat-card.highlight { background: var(--primary); color: #111; border: none; }
.stat-card h3 { font-size: 1.5rem; margin:0; color: var(--primary-dark); }
.stat-card.highlight h3 { color: #111; }
.stat-card span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.team-section { padding: 100px 5%; background: var(--bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; max-width: 1200px; margin-inline: auto; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; margin-bottom: 20px; transition: transform 0.3s; }
.team-card:hover img { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.team-card h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-dark); }
.team-card p { color: var(--primary-dark); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

.gallery-section { padding: 100px 5%; background: var(--bg-main); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 50px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; transition: 0.3s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

.contact-details p { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.contact-details .icon { color: var(--primary-dark); }
.btn-whatsapp { margin-top: 20px; }

.footer-logo { font-family: var(--font-serif); font-size: 2.5rem; color: #fff; margin-bottom: 20px; }
.footer-logo span { color: var(--primary-light); }
.footer-credit { margin-top: 15px; opacity: 0.6; }
.modal-title { font-family: var(--font-serif); font-size: 2.5rem; color: var(--text-dark); }
.empty-cart { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.empty-cart svg { margin: 0 auto 20px; color: var(--border-color); }
.cart-price { color: var(--primary-dark); }
.btn-block { width: 100%; font-size: 1rem; padding: 18px; }
.menu-footer-actions { text-align: center; margin-top: 60px; }

@media (max-width: 968px) {
  .about-section { flex-direction: column; text-align: center; }
  .subtitle-left { text-align: center; }
  .about-text { padding: 0; }
  .about-text h2 { font-size: 2.5rem; }
  .about-text .desc { margin: 0 auto 30px; }
  .stats-container { align-items: center; }
  .img-2 { transform: translateY(0); }
  .about-images { gap: 10px; }
  .location-info { padding: 50px 5%; text-align: center; }
  .contact-details p { justify-content: center; }
  .btn-whatsapp { margin: 20px auto 0; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-btn { display: none; }
  .hero-actions { flex-direction: column; }
  .stat-card { flex-direction: column; padding: 20px; text-align: center; border-radius: 20px; }
  .stat-card h3 { font-size: 1.5rem; }
  .category-btn { width: 100%; margin-bottom: 10px; }
  .menu-grid { grid-template-columns: 1fr; }
  .modal-filters { flex-direction: column; }
}

/* WhatsApp Simulator Modal CSS */
.wa-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: none; backdrop-filter: blur(5px); }
.wa-overlay.active { display: block; }

.wa-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); width: 100%; max-width: 400px; height: 85vh; max-height: 700px; background: #efeae2; z-index: 2001; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.wa-modal.active { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }

/* WhatsApp background pattern simulation */
.wa-modal::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d6d0c4" fill-opacity="0.4"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>'); opacity: 0.6; z-index: 0; pointer-events: none; }

.wa-header { position: relative; background: #008069; color: white; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; z-index: 1; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.wa-header-left { display: flex; align-items: center; gap: 12px; }
.wa-back-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 0; display: flex; align-items: center; }
.wa-avatar { width: 40px; height: 40px; background: #ccc; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; color: #333; overflow: hidden; }
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-info { display: flex; flex-direction: column; }
.wa-name { font-weight: 600; font-size: 1.05rem; }
.wa-status { font-size: 0.8rem; opacity: 0.8; }

.wa-chat-window { position: relative; flex: 1; padding: 20px 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; z-index: 1; scroll-behavior: smooth; }
.wa-date { align-self: center; background: #e1f3fb; color: #55626a; font-size: 0.75rem; padding: 5px 12px; border-radius: 10px; font-weight: 500; margin-bottom: 10px; box-shadow: 0 1px 1px rgba(0,0,0,0.05); }
.wa-encryption { align-self: center; background: #ffeecd; color: #54442b; font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; text-align: center; max-width: 90%; margin-bottom: 15px; box-shadow: 0 1px 1px rgba(0,0,0,0.05); }

.wa-msg { max-width: 85%; padding: 8px 12px; border-radius: 10px; font-size: 0.95rem; line-height: 1.4; position: relative; box-shadow: 0 1px 1px rgba(0,0,0,0.1); word-wrap: break-word; animation: popIn 0.3s ease-out forwards; transform-origin: bottom; }
@keyframes popIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.wa-msg-bot { align-self: flex-start; background: #fff; color: #111b21; border-top-left-radius: 0; }
.wa-msg-bot::before { content: ""; position: absolute; top: 0; left: -8px; width: 0; height: 0; border-top: 10px solid #fff; border-left: 10px solid transparent; }

.wa-msg-user { align-self: flex-end; background: #dcf8c6; color: #111b21; border-top-right-radius: 0; }
.wa-msg-user::before { content: ""; position: absolute; top: 0; right: -8px; width: 0; height: 0; border-top: 10px solid #dcf8c6; border-right: 10px solid transparent; }

.wa-time { font-size: 0.65rem; color: #667781; float: right; margin-top: 4px; margin-left: 10px; }
.wa-msg-user .wa-time { display: flex; align-items: center; gap: 3px; }
.wa-ticks { color: #53bdeb; font-size: 0.7rem; }

.wa-input-area { position: relative; background: #f0f2f5; padding: 10px 15px; display: flex; align-items: center; gap: 10px; z-index: 1; }
.wa-input { flex: 1; background: #fff; border: none; padding: 12px 20px; border-radius: 24px; font-size: 0.95rem; outline: none; box-shadow: 0 1px 1px rgba(0,0,0,0.05); }
.wa-send-btn { background: #00a884; color: white; border: none; width: 44px; height: 44px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.wa-send-btn:hover { background: #008f6f; transform: scale(1.05); }
.wa-send-btn:active { transform: scale(0.95); }

/* Dark mode adjustments for WA Simulator if body is dark */
body.dark-mode .wa-modal { background: #0b141a; }
body.dark-mode .wa-header { background: #202c33; }
body.dark-mode .wa-input-area { background: #202c33; }
body.dark-mode .wa-input { background: #2a3942; color: #e9edef; }
body.dark-mode .wa-input::placeholder { color: #8696a0; }
body.dark-mode .wa-msg-bot { background: #202c33; color: #e9edef; }
body.dark-mode .wa-msg-bot::before { border-top-color: #202c33; }
body.dark-mode .wa-msg-user { background: #005c4b; color: #e9edef; }
body.dark-mode .wa-msg-user::before { border-top-color: #005c4b; }
body.dark-mode .wa-date { background: #182229; color: #8696a0; }
body.dark-mode .wa-encryption { background: #182229; color: #ffd279; }
body.dark-mode .wa-time { color: #8696a0; }
