
/* Dalat's Cafe – Brand Styles */
:root{ --green:#0B3D2E; --yellow:#FFCC66; --red:#C2452C; --cream:#F8F5EE; --ink:#222; }
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter, Arial, sans-serif;background:var(--cream);color:var(--ink)}
a{color:var(--green);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:24px}
.header{background:#fff;position:sticky;top:0;z-index:10;border-bottom:1px solid #ececec}
.nav{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:48px;width:auto}
.menu a{margin:0 10px;font-weight:600}
.hero{background:#fff}
.hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:center}
.hero h1{font-size:42px;margin:0;color:var(--green)}
.btn{display:inline-block;padding:12px 18px;border-radius:8px;font-weight:700}
.btn-primary{background:var(--green);color:#fff}
.btn-secondary{background:var(--yellow);color:#5b3c00}
.grid{display:grid;gap:18px}
.cards-4{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.card{background:#fff;border:1px solid #eee;border-radius:12px;overflow:hidden}
.card .pad{padding:16px}
.section-title{font-size:28px;margin:10px 0 12px;color:var(--green)}
.footer{background:#0e2d23;color:#e7f2ef;margin-top:40px}
.footer a{color:#e7f2ef}
.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid #eee;padding:10px 8px;text-align:left}
.badge{display:inline-block;padding:4px 8px;border-radius:999px;background:var(--yellow);color:#492f00;font-size:12px}
.notice{padding:12px 16px;background:#fff6e5;border:1px solid #ffe1a3;border-radius:8px}
.map{width:100%;min-height:320px;border:0;border-radius:12px}
.header-space{height:64px}
@media(max-width:880px){.hero-inner{grid-template-columns:1fr}.hero h1{font-size:32px}.brand img{height:42px}}
