/* Far East Restaurant — clean static CSS */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Georgia','Times New Roman',serif;
  color:#222;
  background:#fffaf2;
  line-height:1.55;
}
img{max-width:100%;display:block;height:auto}
a{color:#b1141c;text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{
  background:#8b0000;
  color:#fff8dc;
  border-bottom:4px solid #d4a017;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:18px;
  padding-bottom:18px;
  flex-wrap:wrap;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:14px}
.brand-mark{
  width:64px;height:64px;
  background:#d4a017;
  color:#8b0000;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:30px;
  font-family:'Georgia',serif;
  border:3px solid #fff8dc;
}
.brand-text h1,.brand-text .brand-title{
  font-size:28px;
  margin:0;
  line-height:1.1;
  color:#fff8dc;
  letter-spacing:1px;
}
.brand-text p{margin:2px 0 0;font-size:13px;color:#f6d98a;letter-spacing:2px;text-transform:uppercase}
.header-cta{
  background:#d4a017;
  color:#3a1a00;
  padding:12px 22px;
  font-weight:700;
  border:2px solid #fff8dc;
  font-size:15px;
}
.header-cta:hover{background:#f6d98a;text-decoration:none}

/* Nav */
.site-nav{background:#3a1a00}
.site-nav ul{
  list-style:none;margin:0;padding:0;
  display:flex;justify-content:center;flex-wrap:wrap;
}
.site-nav li{margin:0}
.site-nav a{
  display:block;
  padding:14px 28px;
  color:#fff8dc;
  font-size:15px;
  letter-spacing:1px;
  text-transform:uppercase;
  border-right:1px solid #5b2e00;
}
.site-nav a:hover,.site-nav a.active{
  background:#8b0000;
  color:#fff8dc;
  text-decoration:none;
}

/* Hero */
.hero{
  position:relative;
  background:#000;
  color:#fff8dc;
  text-align:center;
  overflow:hidden;
}
.hero img{
  width:100%;
  max-height:440px;
  object-fit:cover;
  opacity:.55;
}
.hero-overlay{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:20px;
}
.hero-overlay h2{
  font-size:42px;
  margin:0 0 14px;
  color:#fff8dc;
  text-shadow:2px 2px 6px #000;
}
.hero-overlay p{
  max-width:620px;
  font-size:18px;
  margin:0 0 22px;
  text-shadow:1px 1px 4px #000;
}
.btn-primary{
  display:inline-block;
  background:#d4a017;
  color:#3a1a00;
  padding:14px 30px;
  font-weight:700;
  border:2px solid #fff8dc;
  font-size:16px;
  letter-spacing:1px;
}
.btn-primary:hover{background:#fff8dc;color:#8b0000;text-decoration:none}
.btn-secondary{
  display:inline-block;
  background:transparent;
  color:#fff8dc;
  border:2px solid #fff8dc;
  padding:12px 26px;
  margin-left:10px;
  font-weight:700;
}
.btn-secondary:hover{background:#fff8dc;color:#8b0000;text-decoration:none}

/* Sections */
section{padding:60px 0}
section h2.section-title{
  text-align:center;
  font-size:34px;
  margin:0 0 10px;
  color:#8b0000;
}
.section-sub{
  text-align:center;
  color:#6b4a14;
  margin:0 0 40px;
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* Grid */
.grid{display:grid;gap:28px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.grid-3,.grid-2,.grid-4{grid-template-columns:1fr}}

.card{
  background:#fff;
  border:1px solid #e7d9be;
  padding:0;
  overflow:hidden;
}
.card img{width:100%;height:220px;object-fit:cover}
.card .card-body{padding:18px 20px}
.card h3{margin:0 0 8px;color:#8b0000;font-size:20px}
.card p{margin:0 0 0;color:#4a3a22}

/* Menu list */
.menu-section{margin-bottom:44px}
.menu-section h3{
  color:#8b0000;
  font-size:24px;
  border-bottom:2px solid #d4a017;
  padding-bottom:8px;
  margin:0 0 6px;
}
.menu-section .menu-note{
  color:#6b4a14;
  font-style:italic;
  margin:0 0 18px;
  font-size:14px;
}
.menu-item{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px dotted #d4a017;
}
.menu-item:last-child{border-bottom:none}
.menu-item .name{font-weight:700;color:#3a1a00}
.menu-item .desc{color:#6b4a14;font-size:14px;margin-top:3px}
.menu-item .price{font-weight:700;color:#8b0000;white-space:nowrap}

/* Info row */
.info-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:center;
  margin-top:30px;
}
.info-row .info-box{
  background:#fff;
  padding:26px 20px;
  border:1px solid #e7d9be;
}
.info-row .info-box h3{margin:0 0 10px;color:#8b0000}
.info-row .info-box p{margin:0;color:#4a3a22}
@media(max-width:700px){.info-row{grid-template-columns:1fr}}

/* Location */
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}
@media(max-width:800px){.location-grid{grid-template-columns:1fr}}
.location-card{
  background:#fff;
  padding:28px;
  border:1px solid #e7d9be;
}
.location-card h2{color:#8b0000;margin:0 0 14px}
.location-card table{border-collapse:collapse;width:100%;margin-top:10px}
.location-card td{padding:4px 10px 4px 0;color:#3a1a00}
.map-wrap iframe{width:100%;height:100%;min-height:360px;border:0}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.gallery img{height:260px;object-fit:cover;width:100%}
@media(max-width:900px){.gallery{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.gallery{grid-template-columns:1fr}}

/* About */
.prose{max-width:780px;margin:0 auto;font-size:17px}
.prose p{margin:0 0 18px;color:#3a1a00}

/* Footer */
.site-footer{
  background:#3a1a00;
  color:#f6d98a;
  padding:36px 0 20px;
  margin-top:40px;
  text-align:center;
}
.site-footer h3{color:#fff8dc;margin:0 0 6px;font-size:20px}
.site-footer p{margin:4px 0}
.site-footer a{color:#f6d98a}
.footer-bottom{
  border-top:1px solid #5b2e00;
  margin-top:22px;padding-top:16px;
  font-size:13px;color:#d4a017;
}
