body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}
body::before {
  content: "Dev-Ops";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

body::after {
  content: '';
  
  background-size: contain;
  opacity: 1;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 10px;
  
}

.logo {
      font-size: 18px;
      font-weight: bold;
    }

     .logo span {
      color: var(--red);
    }


html {
  scroll-behavior: smooth;
}

button {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
}
 .container {
      max-width: 1150px;
      margin: auto;
      padding: 0 20px;
    }
    
     .header {
      background: var(--grey);
      padding: 8px 0;
      position: sticky;
      top: 0;
      z-index: 999;
    }
      .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  .nav a {
      color: var(--light);
      margin-left: 20px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav a:hover {
      color: var(--red);
    }
  

.brand { display:flex; align-items:center; gap:.9rem; font-weight:700; text-decoration:none; color:#1f1d1d; }
.brand img { height:40px; width:auto; padding-left: .3rem; }

.menu-search {
  text-align: center;
  margin: 2rem auto;
}
.menu-search input {
  width: 60%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

section {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

.dishes {
   --cols: 1;
  display:grid; gap:16px; grid-template-columns: repeat(var(--cols), minmax(0,1fr));
  max-width:1100px; margin: 0 auto;
}
@media (min-width: 640px){ .dishes{ --cols: 1; } }
@media (min-width: 960px){ .dishes{ --cols: 1; } }


.dish {
  width: 50%;
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  align-items: center;
}
.dish:hover {
  transform: scale(1.05);
}


.footer {
background: rgba(29,31,32,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  padding: 2rem 0%;
  margin-top: 0;
}

.footer button {
  background: #292927;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}
/* Social icon buttons */
.social-buttons{
  display:flex;
  gap:.75rem;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top: .75rem;
}

.icon-btn{
  width:44px; height:44px;
  display:inline-flex;
  align-items:center; justify-content:center;
  border-radius:999px;
  background:#292927;     /* Palomino orange */
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border .15s ease;
}

.icon-btn img{
  width:22px; height:22px; display:block;
}

.icon-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  background: var(--primary-color);     /* subtle hover */
}


.watermark {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.3); /* transparent black */
  z-index: 9999;
  pointer-events: none;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: rgb(37, 36, 33);
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(68, 65, 64, 0.993);
  z-index: 1000;
}
/* Gallery Modal Styling */
.gallery-modal {
  position: fixed;
  display: none;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.gallery-content {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 90%;
  max-height: 80%;
  overflow: auto;
}

.gallery-content img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}
/* Footer */

footer .delivery-links a {
  margin: 0 10px;
  color: wheat;
  text-decoration: none;
}
footer .delivery-links a:hover {
  color: rgb(49, 18, 16);
}
footer .social-links a {
  margin: 0 10px;
  color: wheat;
  text-decoration: none;
}
footer .social-links a:hover {
  color: rgb(39, 12, 11);
}
.btn.red {
  background:  #292927;
  display: inline-block;
      padding: 10px 20px;
      border: none;
      margin: 5px;
      border-radius: 30px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      transition: background 0.3s ease;
}



/* Floating WhatsApp button */
.whatsapp-fab{
  position:fixed;
  right:18px; bottom:80px;
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background:#25D366;          /* WhatsApp green */
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.2);
  z-index:1200;
}
.whatsapp-fab img{ width:26px; height:26px; }
.whatsapp-fab:hover{ transform: translateY(-2px); }


/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .dish {
    width: 100%;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
 margin-top: 5px;
  --cols:3;
  grid-template-columns: repeat(var(--cols), minmax(0,1fr));
  
}
.button-group a {
      color: black;
      margin-left: 1px;
      margin-right: 1px;
      text-decoration: none;
      transition: color 0.3s ease;
      --cols: 3;
    }
@media (min-width: 10px){ .button-group a{ --cols: 3; } }
@media (min-width: 20px){ .button-group a{ --cols: 3; } }

/* Keep About stats centered and reduce top gap */
.about__stats{
  display:flex;
  justify-content:center;   /* NEW */
  gap:14px;
  flex-wrap:wrap;
  margin:18px 0 12px;       /* tighter than 60px */
}

/* Tighter bullets spacing + correct dot alignment */
.about__bullets{
  list-style:none;
  padding-left:18px;        /* small indent */
  margin:6px 0 10px;        /* tighter */
}
.about__bullets li{
  margin:4px 0;
  padding-left:0;
  position:relative;
  color:#555;
}
.about__bullets li::before{
  content:"•";
  color: var(--orange);
  position:absolute;
  left:-10px;               /* bullet sits closer to text */
  top:-1px;
  font-weight:700;
}
   /* Typography refresh */
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
 }
h1, h2, h3 { font-family: "Playfair Display", serif; letter-spacing:.2px; }

/* Glass header (use your existing .header) 
position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  padding: 10px;
*/
.header{
  background: rgba(29,31,32,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Cinematic hero */
.wow-hero{
  position: relative;
  min-height: clamp(527px, 70vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color:#fff;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(65% 60% at 50% 40%, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.85) 100%);
}
@keyframes hero-zoom{
  from{ transform: scale(1.02) translateY(0); }
  to  { transform: scale(1.04) translateY(-3px); }
}

.hero__content{
  position: relative; z-index: 2; text-align: center; padding: 0 16px; max-width: 960px;
  
}
.hero__title{ font-size: clamp(32px, 6vw, 60px); line-height: 1.04; margin-bottom: 10px; }
.hero__tagline{ font-size: clamp(16px,2.4vw,20px); opacity:.92; }

.hero__cta{ display:flex; gap:12px; justify-content:center; margin-top: 22px; }
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 20px; border-radius: 999px; font-weight: 700;
  border:2px solid transparent; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border .2s ease;
}
.cta--primary{ background:#292927; color:#fff; }
.cta--primary:hover{ transform: translateY(-2px); box-shadow:0 10px 20px rgba(255,136,0,.25); }
.cta--ghost{   background: rgba(20, 20, 20, 0.38); color:#fff; border-color: rgba(255,255,255,.6); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.cta--ghost:hover{  background: rgba(0,0,0,.55); transform: translateY(-2px); }

.hero__badges{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:14px; }
.badge{
  font-size: 12px; text-transform: uppercase; letter-spacing:.12em;
  background: rgba(255,255,255,.14); color:#fff; padding:6px 10px; border-radius:999px;
}

/* Wave dividers */
.divider{ display:block; position:relative; width:100%; height:auto; line-height:0; }
.divider--bottom{ margin-top: 28px; }
.divider--small{ margin-top: 24px; }

/* Featured grid */
.featured{ padding: 40px 16px 8px; background:#fff; }
.section-title{ text-align:center; font-size: clamp(26px,3.6vw,34px); margin-bottom:6px; }
.section-sub{ text-align:center; color:#6c757d; margin-bottom: 22px; }

.cards{
  --cols: 1;
  display:grid; gap:16px; grid-template-columns: repeat(var(--cols), minmax(0,1fr));
  max-width:1100px; margin: 0 auto;
}
@media (min-width: 640px){ .cards{ --cols: 2; } }
@media (min-width: 960px){ .cards{ --cols: 3; } }

.card{
  background:#fff; border-radius: 16px; overflow:hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(0); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow:0 14px 28px rgba(0,0,0,.10); }
.card__media{
  aspect-ratio: 20/19; background-size: cover; background-position: center;
}
.card__body{ padding:14px 14px 16px; }
.card__body h3{ margin: 4px 0 6px; }
.card__body p{ color:#6c757d; }
.price{
  margin-top:10px; font-weight:700; color:#1d1f20;
  display:inline-block; background: #fff4ea; padding:6px 10px; border-radius: 999px; border:1px solid #ffe1c2;
}

/* Scroll reveal base */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show{ opacity: 1; transform: translateY(0); }

/* kill any stray gap before hero */
.main-header, .navbar{ margin:0; }
.main-header + .hero-slider{ margin-top:0; padding-top:0; }

:root{ --header-h: 64px; }

/* Make header fixed and remove any space it leaves */
body > header.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  margin-bottom: 0 !important;
  border-bottom: none;             /* remove thin line if any */
}

/* Push the page down so content isn't hidden behind the fixed header */
body{
  margin: 0;
  padding-top: var(--header-h);
}

/* Ensure hero sits flush to header */
section.wow-hero{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* safety: remove accidental top gaps from external css */
body > header + section,
.header + section{
  margin-top: 0 !important;
}

/* slides layer sits beneath overlay+content */
.hero__slides{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* each slide covers the hero */
.hero__slide{
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  will-change: opacity, transform;
  animation: hero-zoom 18s ease-in-out infinite alternate; /* gentle zoom */
}
.hero__slide.is-active{ opacity: 1; }

/* keep overlay above slides */
.hero__overlay{ position: absolute; inset: 0; z-index: 1; }
.hero__content{ position: relative; z-index: 2; }

/* Gallery grid polish */
.gallery-modal .gallery-content{
  display:grid; gap:10px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items:start;
}
.gallery-modal img,
.gallery-modal video{
  width:100%; height:auto; border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  background:#000; /* nice behind letterboxed video */
}

/* About split layout */
.about{
  display:grid; gap:24px;
  grid-template-columns: 1fr;
  align-items:center;
  padding: 36px 16px;
  max-width: 1200px; margin:0 auto;
  
}
@media (min-width: 900px){
  .about{ grid-template-columns: 1.05fr .95fr; gap:40px; }
}
.about__media .mosaic{
  display:grid; gap:10px;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 140px;
}
.about__media .mosaic img{
  width:100%; height:100%; object-fit:cover; border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.about__media .mosaic img:nth-child(1){ grid-row: span 2; }
.about__media .mosaic img:nth-child(3){ grid-column: 1 / -1; height: 180px; }

.about__text .lede{
  font-size:1.05rem; color:#444; margin:10px 0 14px;
}
.about__bullets{ list-style:none; padding:0; margin:0 0 12px; }
.about__bullets li{
  margin:6px 0; padding-left:24px; position:relative; color:#555;
}
.about__bullets li::before{
  content:"•"; color: var(--orange); position:absolute; left:8px; top:-1px; font-weight:700;
}
.about__stats{
  display:flex; gap:14px; flex-wrap:wrap; margin: 10px 0 16px;
}
.stat{
  background:#fff4ea; border:1px solid #ffe1c2; border-radius:10px;
  padding:10px 12px; min-width:110px; text-align:center;
}
.stat strong{ display:block; font-size:1.1rem; }
.stat span{ font-size:.85rem; color:#666; }

.about__cta{ display:inline-block; gap:10px; flex-wrap:wrap; }

.brand { display:flex; align-items:center; gap:.9rem; font-weight:700; text-decoration:none; color:#1f1d1d; }
.brand img { height:40px; width:auto; padding-left: 2rem; }
.dished{
  width: 100%;
  align-items: center;
  margin: auto;
  
padding: auto;
}