* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #4A2C2A;
  --secondary: #8B6F47;
  --accent: #D4A76A;
  --bg: #FAFAF5;
  --text: #2D2D2D;
  --text-light: #FFFFFF;
  --font: 'Segoe UI', -apple-system, sans-serif;
  --font-am: 'Noto Sans Ethiopic', 'Segoe UI', sans-serif;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --radius: 12px;
}
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
body.lang-am { font-family: var(--font-am); }
a { color: var(--secondary); text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: var(--primary); color: var(--text-light); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 45px; }
.header-logo span { font-size: 22px; font-weight: 700; color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: 5px; }
.header-nav a { color: var(--text-light); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: background 0.2s; }
.header-nav a:hover, .header-nav a.active { background: rgba(255,255,255,0.15); }
.lang-switch { display: flex; gap: 2px; margin-left: 10px; }
.lang-switch a { padding: 4px 8px; font-size: 12px; border-radius: 4px; font-weight: 700; }
.lang-switch a.active { background: var(--accent); color: var(--primary); }
.hamburger { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; padding: 5px; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-slide { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 700px; padding: 20px; }
.hero-content h1 { font-size: 42px; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero-content p { font-size: 18px; margin-bottom: 20px; opacity: 0.9; }
.hero-cta { display: inline-block; padding: 14px 32px; background: var(--accent); color: var(--primary); border-radius: 30px; font-weight: 700; font-size: 16px; transition: transform 0.2s; }
.hero-cta:hover { transform: translateY(-2px); }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; }
.hero-dot.active { background: var(--accent); }

/* Sections */
.section { padding: 60px 0; }
.section-title { text-align: center; font-size: 32px; color: var(--primary); margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--secondary); margin-bottom: 40px; font-size: 16px; }
.bg-alt { background: #fff; }

/* Menu Grid */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.menu-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.menu-card:hover { transform: translateY(-4px); }
.menu-card-image { height: 180px; object-fit: cover; width: 100%; }
.menu-card-body { padding: 18px; }
.menu-card-body h3 { font-size: 18px; color: var(--primary); }
.menu-card-body .price { font-size: 16px; font-weight: 700; color: var(--accent); margin: 5px 0; }
.menu-card-body p { font-size: 14px; color: #666; }
.menu-card-body .tags { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.tag { background: var(--bg); padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; color: var(--secondary); }
.menu-categories { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.cat-btn { padding: 10px 24px; border: 2px solid var(--secondary); border-radius: 25px; background: transparent; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--secondary); transition: all 0.2s; }
.cat-btn.active, .cat-btn:hover { background: var(--secondary); color: #fff; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-image { border-radius: var(--radius); height: 400px; object-fit: cover; width: 100%; }

/* Catering */
.catering-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.catering-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.catering-card img { width: 100%; height: 200px; object-fit: cover; }
.catering-card-body { padding: 20px; }
.catering-card-body h3 { color: var(--primary); }
.catering-card-body .price { font-size: 20px; font-weight: 700; color: var(--accent); margin: 8px 0; }
.event-badge { display: inline-block; background: var(--bg); padding: 4px 12px; border-radius: 12px; font-size: 12px; color: var(--secondary); margin: 3px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; height: 220px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-size: 14px; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85%; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; background: none; border: none; }

/* Branches */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; }
.branch-card { background: #fff; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.branch-card h3 { color: var(--primary); margin-bottom: 10px; }
.branch-card p { margin-bottom: 5px; font-size: 14px; }
.branch-card .hours { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--bg); font-size: 13px; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--secondary); }
.review-stars { color: #f5a623; margin-bottom: 8px; }
.review-text { font-size: 14px; line-height: 1.7; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: var(--font); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn { display: inline-block; padding: 14px 30px; border: none; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 600; transition: opacity 0.2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { opacity: 0.9; }
.btn-accent { background: var(--accent); color: var(--primary); }

/* Footer */
.footer { background: var(--primary); color: var(--text-light); padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.footer h3 { color: var(--accent); margin-bottom: 15px; font-size: 18px; }
.footer a { color: rgba(255,255,255,0.8); display: block; margin-bottom: 8px; font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; opacity: 0.7; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%; font-size: 28px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s; }
.whatsapp-float a:hover { transform: scale(1.1); }

/* Featured badges */
.featured-badge { background: var(--accent); color: var(--primary); padding: 2px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 5px; }

/* Responsive */
@media (max-width: 768px) {
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 15px; }
  .header-nav.open { display: flex; }
  .hamburger { display: block; }
  .hero-slide { height: 350px; }
  .hero-content h1 { font-size: 28px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .branches-grid { grid-template-columns: 1fr; }
}
