:root{
  --bg:#0b0b0b;
  --ink:#f4f1ea;
  --mute:#b4ad9a;
  --accent:#c9a76b; /* warm gold */
  --accent-2:#6f8a7e; /* sage */
  --max:1200px;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;line-height:1.5;overflow-x:hidden}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:auto;padding:0 20px}

/* Header */
header{
	position:sticky;
	top:0;
	z-index:40;
	background:rgba(11,11,11,.7);
	backdrop-filter:saturate(140%) blur(10px);
	border-bottom:1px solid rgba(255,255,255,.06)
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 170px;
}

.brand{
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:2.3rem;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  flex-direction:column;     /* Stack vertically */
  align-items:center;        /* Center horizontally */
  text-align:center;         /* Center text */
  gap:0;
}

.brand span{
  color:var(--accent);        /* Gold for Rama Thirteen */
}

.brand .tagline {
  font-size:1.1rem;
  font-weight:400;
  letter-spacing:0;
  text-transform:none;
  margin-top:0px;
  line-height;1.1;
  color:var(--accent);
  opacity:0.85;
}

.menu{display:flex;gap:22px}
.menu a{font-size:1.3rem;color:var(--ink);opacity:.9}
.menu a[aria-current="page"]{color:var(--accent);text-decoration:underline}

.cta{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--accent);
  color:#111;
  padding:.6rem 1rem;
  border-radius:999px;
  border:0;
  font-weight:700
}
.cta:hover{filter:brightness(1.05)}

/* Hero */
.hero{position:relative;min-height:72svh;display:grid;place-items:end center;overflow:hidden}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:contrast(1.05) saturate(1.2) brightness(.85)}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(to top, rgba(15,15,15,.8) 0%, rgba(15,15,15,.4) 35%, rgba(15,15,15,.15) 60%, transparent 100%)}
.hero-content{position:relative;z-index:2;text-align:center;padding:10svh 20px}
.kicker{letter-spacing:.18em;text-transform:uppercase;color:var(--mute);font-size:.8rem}
h1{margin:.4rem 0 1rem;font-size:clamp(2rem,6vw,4rem);line-height:1.1}
.hero-buttons{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.ghost{border:1px solid rgba(255,255,255,.2);padding:.6rem 1rem;border-radius:999px;color:var(--ink);background:transparent}
.ghost:hover{border-color:rgba(255,255,255,.4)}

/* Sections */
section{padding:72px 0;border-top:1px solid rgba(11,11,11,.06)}
h2{font-size:clamp(1.6rem,3.5vw,2.2rem);margin:0 0 18px}
p.lead{color:#ddd;max-width:62ch}

/* Menu tabs */
.tabs{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 24px}
.tab{border:1px solid rgba(255,255,255,.14);padding:.5rem .9rem;border-radius:999px;cursor:pointer;background:transparent;color:var(--ink)}
.tab[aria-selected="true"]{background:var(--accent);color:#111;border-color:transparent}
.menu-panel[hidden]{display:none}
.menu-items{display:grid;gap:10px}
.menu-item{display:flex;justify-content:space-between;gap:10px;padding:10px 0;border-bottom:1px dashed rgba(255,255,255,.12)}
.menu-item h3{margin:0;font-size:1rem}
.price{color:var(--accent)}

/* Gallery */
.gallery{display:grid;gap:10px;grid-template-columns:repeat(2,1fr)}
@media(min-width:900px){.gallery{grid-template-columns:repeat(4,1fr)}}
.gallery img{width:100%;height:220px;object-fit:cover;border-radius:10px}

/* Footer */
footer{padding:50px 0;background:#0b0b0b;border-top:1px solid rgba(255,255,255,.06)}
.cols{display:grid;gap:24px}
@media(min-width:900px){.cols{grid-template-columns:2fr 1fr 1fr 1fr}}
small, address{color:var(--mute)}
footer .brand{font-size:.95rem;}

/* Headings */
.menu-subheader {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-header {
  font-family: 'Cinzel', serif;
  color: var(--accent);
  font-size: 3.0rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 40px auto 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 6px;
  max-width: 600px;
}

/* SERB widget */
.serb-desktop { display: block; }
.serb-mobile { display: none; }

@media (max-width: 768px) {
  .serb-desktop { display: none; }
  .serb-mobile { display: block; }
}

.serbwidget {
  display: inline-block;
  font-size: 1.2rem;
  background: var(--accent);
  color: #111;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.serbwidget:hover { filter: brightness(1.1); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  header { padding: 6px 0; }
  .nav { height: auto; gap: 10px; }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .wrap.nav { flex-wrap: wrap; }

  .menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .menu.open { display: flex; }

  .cta {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .brand { min-width: 0; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.lightbox.show { display: flex; }



.announcement {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(201, 167, 107, 0.9); /* semi-transparent gold */
  color: #111;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
  z-index: 10;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .announcement {
    font-size: 0.95rem;
    padding: 8px 0;
  }
}

.announcement button {
  margin-left: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: inherit;
  cursor: pointer;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

@media (max-width: 600px) {
  .footer-logo {
    max-width: 150px;
  }
}

/* Center Our Story section */
#story {
  text-align: center;
}

#story .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#story .grid img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
}

/* Center Find Us section */
#find {
  text-align: center;
}

#find .map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#find iframe {
  max-width: 100%;
  border-radius: 10px;
}

/* Center Our Story text and image */
#story {
  text-align: center;
}

#story .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

#story .grid > div {
  text-align: center; /* ensures all text inside is centered */
}

#story img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Bigger font size just for the Our Story section */
#story p,
#story .lead {
  font-size: 1.3rem;   /* adjust this value up/down to taste */
  line-height: 1.7;     /* makes it more readable */
}

section {
  background-color: #0b0b0b;  /* same as footer */
  border-top: none;           /* optional: removes the thin divider line */
}

body {
  background: #0b0b0b;
}

.story-image {
  text-align: center;
  margin: 30px 0;
}

.story-image img {
  width: 100%;
  max-width: 900px;   /* control max size on big screens */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);  /* optional shadow for depth */
  display: block;
  margin: 0 auto;
}