/* Base */
:root {
  --bg: #0f0f0f;
  /* HEX
#184138 */
  --bg-soft: #161616;
  --text: #ffffff;
  --muted: #c7c7c7;
  /* --brand: #ff4d5a;
  --brand-dark: #c83a44;
  --accent: #ffd166; */
  --brand: #4ca998;
  --brand-dark: #4ca998;
  --accent: #4ca998;
  
  --card: #1c1c1c;
  --border: #2a2a2a;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  overflow-x: hidden; /* ensure full-bleed sections don't scroll horizontally */
}

img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* Utilities */
.section { padding: 22px 0; }
.section h2 { font-family: "Playfair Display", serif; font-size: 2.2rem; margin: 0 0 24px; }
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: var(--border); background: transparent; }
.btn-outline:hover { border-color: var(--text); }
.btn-small { padding: 10px 14px; font-size: .9rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

/* .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.slider {
  margin-top: 120px !important; 
} */
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none; font-weight: 600;
}
.logo img { height: 120px; width: auto; }

.nav { position: relative; }
.nav-list {
  display: flex; gap: 24px; list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  color: var(--text); text-decoration: none; padding: 8px 6px; border-radius: 6px;
}
.nav-list a:hover { background: var(--bg-soft); }
/* .nav-list a.active { color: var(--accent); } */

.nav-toggle {
  display: none; width: 36px; height: 36px;
  border: 1px solid var(--border); background: transparent; border-radius: 8px;
  position: relative;
}
.nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text);
}
.nav-toggle::before { top: 12px; }
.nav-toggle::after { bottom: 12px; }

/* Slider full-bleed */
.slider {
  position: relative;
  width: 100vw; /* ensures full viewport width */
  margin-left: calc(50% - 50vw); /* full bleed - no left/right gap */
  margin-right: calc(50% - 50vw);
  height: clamp(400px, 80vh, 640px);
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .6s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
}
.slide-content {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center; padding: 0 24px;
}
.slider-controls {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  justify-content: space-between !important;
  padding: 0 16px !important;
  pointer-events: none !important;
}

.slider-controls .prev,
.slider-controls .next {
  pointer-events: auto !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.slide-content h1 { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 10px; }
.slide-content p { color: var(--muted); margin: 0 0 18px; }

.slider-controls {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
}
.slider-controls .prev, .slider-controls .next {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(0,0,0,.4); color: var(--text);
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,.3);
}
.dots button.active { background: var(--accent); border-color: var(--accent); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
}
.about-image img {
  border-radius: 16px; border: 1px solid var(--border);
}
.about-content p { color: var(--muted); }

/* Products */
.section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.product-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-info { padding: 14px 16px; }
.product-info h3 { margin: 0 0 6px; font-size: 1.1rem; }
.product-info p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--border);
  transition: transform .2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.testimonial p { margin: 0 0 12px; }
.testimonial cite { color: var(--muted); font-style: normal; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.contact-info p { margin: 6px 0; color: var(--muted); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.form-row { display: grid; gap: 8px; margin-bottom: 12px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-soft); color: var(--text);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-note { color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #0d0d0d;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; align-items: center;
}
.footer-brand img { height: 120px; margin-bottom: 8px; }
.footer-links, .footer-social { list-style: none; padding: 0; margin: 0; display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a, .footer-social a { color: var(--muted); text-decoration: none; }
.footer-links a:hover, .footer-social a:hover { color: var(--text); }

/* Products page extras */
.products-page .filters {
  display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap;
}
.chip {
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-soft); color: var(--text); cursor: pointer;
}
.chip.active { background: var(--brand); border-color: var(--brand); }

/* Responsive */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .nav-list {
    position: absolute; right: 0; top: 48px; background: rgba(15,15,15,.95);
    border: 1px solid var(--border); border-radius: 12px; padding: 10px;
    display: none; flex-direction: column; gap: 8px; min-width: 180px;
  }
  .nav-list.open { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

.menu-page {
  background: #111;
  color: #f5f5f5;
  padding: 60px 20px;
}

.section-head h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 8px;
}
/* Mobile view adjustments */
@media (max-width: 768px) {
  .menu-page {
     background: #111;
  color: #f5f5f5;
    padding: 40px 15px; /* reduced padding */
  }

  .section-head h1 {
    font-size: 1.6rem;
    text-align: center;
  margin-bottom: 8px; /* smaller heading */
  }
}


.section-head p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}

.menu-section {
  margin-bottom: 40px;
}

.menu-title {
  font-size: 1.8rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 16px;
  padding-bottom: 4px;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu-item h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: bold;
  color: var(--accent);
}

.desc {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

