/*
Theme Name: Kuier Restaurant
Author: Gemini AI
Description: Western Themed South African Restaurant Theme
Version: 1.0
*/

body { font-family: 'Montserrat', sans-serif; margin: 0; color: #1c1917; line-height: 1.6; }
.container { max-width: 1152px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Header & Nav */
.site-header { background: #000; color: #fff; padding: 20px 0; }
.logo { font-size: 24px; font-weight: bold; color: #eab308; }
.main-nav a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 600; }
.main-nav a:hover { color: #eab308; }

/* Hero */
.hero { height: 600px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; }
.hero-content { z-index: 2; }
.hero-subtitle { font-size: 1.5rem; color: #facc15; font-weight: bold; margin-bottom: 2rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

/* About & Features */
.py-16 { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card { padding: 24px; border-radius: 8px; text-align: center; font-weight: bold; }
.feature-card.yellow { background: #eab308; color: #000; }
.feature-card.black { background: #000; color: #fff; }

/* Specialties */
.bg-stone-100 { background: #f5f5f4; }
.dish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; }
.dish-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 2px solid #e7e5e4; }
.dish-card img { width: 100%; height: 250px; object-fit: cover; }
.dish-info { padding: 24px; }
.price { color: #ca8a04; font-size: 1.5rem; font-weight: bold; margin-top: 10px; }

/* Footer */
footer { background: #000; color: #fff; padding: 40px 0; text-align: center; }
.yellow-text { color: #facc15; }

/* Buttons */
.btn { display: inline-block; padding: 12px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-primary { background: #eab308; color: #000; }
.btn-primary:hover { background: #ca8a04; }