:root{
  --teal:#008080; --teal-dark:#006666;
  --beige:#f5efe6; --sand:#e9dfcf; --ink:#223;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--beige);color:var(--ink)}

/* NAVBAR — brand + links inside one scrollable rail */
.navbar{
  position:sticky; top:0; z-index:1000;
  background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.navbar {
  background-color: #004d4d; /* deep teal */
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.navbar a {
  color: #fff;
}
.navbar a:hover {
  color: #ffd700; /* gold hover accent */
}
.nav-rail{
  display:flex; align-items:center; gap:16px;
  overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap; scrollbar-width:none;
  padding:10px 12px; max-width:1200px; margin:0 auto;
}
.nav-rail::-webkit-scrollbar{display:none}
.brand{font-weight:700; color:var(--teal); text-decoration:none; padding:8px 10px; border-radius:8px; flex:0 0 auto}
.nav-item{color:#111; text-decoration:none; padding:8px 10px; border-radius:8px; display:inline-block}
.nav-item:hover{background:var(--sand)}

/* HERO */
/* ===== HERO (updated) ===== */
.hero{
  width:100%;
  position:relative;
  display:flex; align-items:flex-end; justify-content:center;
  min-height:60vh;
  border-bottom:4px solid var(--teal);
}

/* Tagline pill – smaller and lower by default */


/* Portrait: show full image without cropping; keep presence & move pill even lower */
@media (orientation:portrait){
  .hero{
    background:url('images/hero-portrait.jpg') center center / contain no-repeat;
    background-color:var(--beige);
    min-height:62vh;                /* a touch shorter to remove extra beige */
    height:auto;
  }
  .hero-text{
    bottom:8px;                     /* lowest in portrait */
    font-size:clamp(12px, 2.2vw, 15px);
  }
}

/* Landscape: immersive banner, framed slightly lower to reveal more bottom area */
@media (orientation:landscape){
  .hero{
    background:url('images/hero-landscape.jpg') center 60% / cover no-repeat;
    /* ^ center 60% shifts the crop down a bit so the pill sits below the embedded title */
    min-height:58vh;
  }
  .hero-text{
    bottom:2.2vh;                   /* keep the pill close to the bottom edge */
    font-size:clamp(12px, 1.6vw, 15px);
    padding:7px 12px;
  }
}

/* Sections */
section{max-width:1000px;margin:36px auto;padding:0 16px}
section h2{margin:0 0 12px;color:var(--teal)}
.lead{line-height:1.6;margin:6px 0 12px}
.notice{background:#fff;border:1px dashed #bbb;padding:12px;border-radius:10px}

/* Banners */
.banner{width:100%;height:auto;border-radius:12px;display:block;margin-bottom:12px}

/* Menu grid & cards */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px}
.card{background:#fff;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,.08);overflow:hidden;display:flex;flex-direction:column;position:relative}
.card-img{position:relative;aspect-ratio:4/3;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;display:block}
.price{position:absolute;top:10px;left:10px;background:rgba(0,128,128,.95);color:#fff;padding:6px 10px;border-radius:999px;font-weight:700;font-size:14px}
.card-body{padding:12px 12px 72px;display:flex;flex-direction:column;gap:6px;flex:1}
.card h3{margin:2px 0}
.card p{margin:0;color:#444;line-height:1.5}

/* Buttons */
.btn{
  display:inline-block; text-align:center; text-decoration:none;
  background:var(--teal); color:#fff; padding:11px 14px; border-radius:10px; font-weight:700;
  transition:background .2s ease;
}
/* Only menu-card buttons are pinned to the bottom */
.card .btn{ position:absolute; left:12px; right:12px; bottom:12px; }
.btn:hover{background:var(--teal-dark)}
.btn-inline{ position:static; } /* ensures About/Catering buttons don’t float */

/* Contact form */
.contact-form{display:grid;gap:12px;margin-bottom:14px}
.contact-form label{display:grid;gap:6px;font-weight:600}
.contact-form input,.contact-form textarea{border:1px solid #ccc;border-radius:8px;padding:10px;font:inherit}

/* Footer */
footer{background:#fff;border-top:4px solid var(--teal);margin-top:40px}
.footer-inner{max-width:1000px;margin:0 auto;padding:16px;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.footer-inner .social img{width:26px;height:26px;margin-right:8px}

/* Floating CTAs */
.floating-order{
  position:fixed; right:14px; bottom:14px; z-index:1200;
  background:var(--teal); color:#fff; text-decoration:none; padding:11px 13px;
  border-radius:999px; font-weight:700; box-shadow:0 8px 18px rgba(0,0,0,.22)
}
#backToTop{
  position:fixed; right:14px; bottom:68px; display:none; z-index:1200;
  border:none; border-radius:999px; padding:9px 11px; background:#111; color:#fff; cursor:pointer
}

/* Small screens */
@media (max-width:640px){
  .nav-item{padding:8px 9px}
  .hero-text{font-size:.92rem}
}
.nav-item[aria-current="page"]{
  background: var(--teal);
  color: #fff;
}
.nav-item[aria-current="page"]:hover{
  background: var(--teal-dark);
}