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: white;
  padding: 10px;
  
}

html {
  scroll-behavior: smooth;
}

button {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
}

.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; }


/*.hero-slider {
  margin-top: 0;
  padding-top: 0;
}

.hero-background {
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
  transition: background-image 1s ease-in-out;
}

/* Additional sections (chef, about, review, footer) styled similarly */

.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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.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);
}
.dish:hover {
  transform: scale(1.05);
}


.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer button {
  background: #ff8800;
  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:#ff8800;     /* 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:#ff8f12;     /* 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(190, 127, 0);
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(224, 90, 23, 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: orange;
}
footer .social-links a {
  margin: 0 10px;
  color: wheat;
  text-decoration: none;
}
footer .social-links a:hover {
  color: orange;
}

/* Cart */
.cart-icon {
  color: white;
  cursor: pointer;
  font-size: 1.2em;
  margin-left: 15px;
}
.cart {
  position: fixed;
  top: 70px;
  right: 10px;
  width: 300px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 10;
}
.cart.hidden {
  display: none;
}

#roomDropdown {
  display: none;
  margin: 1rem auto;
  padding: 0.5rem;
  width: 50%;
}

/* 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%;
  }
}

