@import url('https://fonts.googleapis.com/css2?family=Jost:wght@700&family=Kristi&family=Lato:wght@400;700&display=swap');
:root {
  --accent: #cfa670;
  --dark: #222222;
  --body: #333333;
  --bg: #ffffff;
  --footer-dark: #262626;
  --footer-bar: #1b1b1b;
}
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
}
body {
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Topbar */
.topbar {
  background: var(--bg);
  padding: 0.25rem 2vw 0.25rem 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
  font-family: 'Lato', Arial, sans-serif;
}
.topbar .left {
  display: flex;
  gap: 2rem;
  color: var(--dark);
}
.topbar .social {
  display: flex;
  gap: 1rem;
}
.topbar .social a {
  color: var(--accent);
  font-size: 1.3rem;
  transition: color 0.2s;
}
.topbar .social a:hover {
  color: var(--dark);
}

/* Header/Nav */
header {
  background: var(--bg);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.7rem 2vw;
}
.navbar .logo {
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a,
.nav-links .order-btn {
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.11rem;
  color: var(--dark);
  font-weight: 700;
  transition: color 0.13s, background 0.13s;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links .order-btn {
  font-family: 'Jost', Arial, sans-serif;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.6rem;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s;
}
.nav-links .order-btn:hover {
  background: #b7935a;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 1rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 56px;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 1.8rem;
    width: 220px;
    padding: 2rem 1.5rem;
    height: calc(100vh - 56px);
    box-shadow: -3px 0 15px rgba(0,0,0,0.08);
    transform: translateX(110%);
    transition: transform 0.26s cubic-bezier(0.9,0.03,0.69,0.99);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
}

/* Eyebrow text / Script font */
.eyebrow {
  font-family: 'Kristi', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.4em;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Section Headings */
.section-head {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 2.3rem;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem 0;
  line-height: 1.18;
}
.section-label {
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.14em;
  font-family: 'Lato', Arial, sans-serif;
}

/* Buttons */
.btn,
button {
  font-family: 'Jost', Arial, sans-serif;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.65em 2.1em;
  border-radius: 27px;
  font-size: 1.07rem;
  font-weight: 700;
  transition: background 0.19s, box-shadow 0.19s;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover {
  background: #b7935a;
  box-shadow: 0 2px 7px rgba(207,166,112,0.04);
}

/* Hero Sections */
.hero {
  width: 100%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6.2rem 0 4rem 0;
  margin-bottom: 0;
  border-radius: 0 0 52px 52px/0 0 22px 22px;
  overflow: hidden;
}
.hero .hero-inner {
  padding-left: 8vw;
  z-index: 2;
  background: rgba(255,255,255,0.84);
  border-radius: 20px;
  padding: 1.7rem 3.3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  max-width: 680px;
}
@media (max-width: 900px) {
  .hero {
    min-height: 380px;
    padding: 4.1rem 0 2rem 0;
    border-radius: 0 0 15px 15px;
  }
  .hero .hero-inner {
    padding: 1.1rem 1rem;
    margin-right: 2vw;
    margin-left: 2vw;
  }
}

/* ORDER NOW FLOATING BUTTON */
.order-now-btn {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 8888;
  background: var(--accent);
  color: #fff;
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border: none;
  border-radius: 28px;
  padding: 1.13em 2.3em 1.13em 2.3em;
  box-shadow: 0px 5px 16px rgba(56,44,26,0.10);
  cursor: pointer;
  outline: none;
  transition: background 0.16s;
}
.order-now-btn:hover {
  background: #b7935a;
  color: #fff;
}
@media (max-width:420px){.order-now-btn{padding:0.9em 1.2em;font-size:1rem}}

/* Footer */
footer {
  background: var(--footer-dark);
  color: #f7f7f7;
  padding: 38px 0 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.17fr 0.87fr 1.01fr 1.3fr;
  gap: 2.6vw;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 2vw 0 2vw;
}
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4vw;
  }
}
.footer-logo {
  height: 50px;
  margin-bottom: 0.6em;
}
.footer-tagline {
  font-family: 'Kristi', cursive;
  color: var(--accent);
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.footer-section-head {
  font-family: 'Lato', Arial, sans-serif;
  color: #e2be8b;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .09em;
  margin-bottom: 0.87em;
}
.footer-links,
.footer-contact {
  font-size: 1.01rem;
  color: #dedede;
  display: flex;
  flex-direction: column;
  gap: .43rem;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}
.footer-contact a {
  color: #dedede;
}
.footer-contact .address {
  font-style: normal;
  display: block;
}
.copyright-bar {
  background: var(--footer-bar);
  margin-top: 28px;
  padding: 0.93em 0;
  text-align: center;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.01rem;
  letter-spacing: .01em;
  color: #b9b9b9;
}

/* General Utility */
.container {max-width:1280px;margin:0 auto;padding:0 2vw;}
.grid {display:grid;gap:2rem;}
.flex {display:flex;gap:2rem;}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 28px rgba(140,112,74,0.07);
  padding: 2.2em 2.2em;
}
.card.dark {
  background: var(--dark);
  color: #fff;
}
.card.inline-c {
  display: flex; align-items: center; gap: 2.2em;
  flex-wrap: wrap;
}

/* Lightbox (gallery) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10007;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,34,34,0.80);
  align-items: center; justify-content: center;
}
.lightbox.active {display: flex;}
.lightbox img {
  max-width:97vw;max-height:90vh;
border-radius:12px;box-shadow:0 4px 34px rgba(0,0,0,.18);}
.lightbox .close {
  position: absolute; top: 34px; right: 34px; color: #fff; background: rgba(0,0,0,0.38); border: none; font-size: 2.1rem; cursor: pointer; border-radius:100px; width:44px; height:44px; display:flex;align-items:center;justify-content:center;transition:background 0.15s;}
.lightbox .close:hover {background: rgba(0,0,0,0.75);}

/* Carousel (Testimonials) */
.carousel {
  position: relative; overflow: hidden;
  width: 100%; max-width: 750px; margin: 0 auto;
}
.carousel-track {
  display: flex; transition: transform 0.37s cubic-bezier(.73,.21,.38,.91);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%; box-sizing: border-box;
  padding: 2.2rem 2rem; background: #fff; border-radius: 22px;
  box-shadow: 0 4px 18px rgba(155,134,89,0.10);
  font-size:1.22em;
  color:var(--body);
}
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5em; margin-top: 1em;
}
.carousel-dot {
  background: var(--accent);
  opacity: 0.32;
  width: .66em; height: .66em;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  transition: opacity 0.17s;
}
.carousel-dot.active {opacity:1;}

/* Cards, gallery, food sections, content layouts ... (continues per section, add as needed) */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1vw;
  margin: 2em 0;
}
@media (max-width: 900px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 600px){.gallery-grid{grid-template-columns:1fr}}

/* Forms */
form {
  display: flex; flex-direction: column; gap: 1.4em;
}
input, textarea {
  font-family: 'Lato', Arial, sans-serif;
  border: 1px solid #c5b39b;
  border-radius: 9px;
  padding: 0.85em 1.05em;
  font-size: 1rem;
  transition: border 0.15s;
  background: #fbf8f4;
  color: var(--dark);
}
input:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  background: #fff;
}
label { font-size: 1.1em; font-weight: 700; color: var(--dark); }

/* Misc Spacing */
.mb-4 { margin-bottom: 2.2rem; }
.mt-2 { margin-top: 1.2rem; }

/* Custom per-section, page, as needed... */
