:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #12304a;
  --muted: #56728b;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f59e0b;
  --border: #d9e8f6;
  --shadow: 0 12px 30px rgba(14, 76, 124, 0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border: none;
  background: transparent;
}

.brand h1 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.top-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: hsl(174, 100%, 20%);
  border: 1px solid hsl(174, 100%, 20%);
  box-shadow: none;
}

.btn-ghost {
  color: #fff;
  border: 1px solid hsl(174, 100%, 20%);
  background: hsl(174, 100%, 20%);
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 70, 0.25), rgba(0, 30, 55, 0.45));
  z-index: 2;
}

.hero .slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.hero-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section.light {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h2.page-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

.section-intro {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 900px;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
}

.text p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.image-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 14px;
}

/* Slideshow cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.menu-cta-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

/* Menu page */
.menu-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 16px;
}

.menu-block h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.menu-list li:last-child {
  border-bottom: none;
}

/* Gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 16px 34px rgba(14, 76, 124, 0.22);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 16, 28, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 120;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid #ffffff2e;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #13324d;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: #0d2f4b;
  color: #d8ecff;
  padding: 42px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer p {
  margin: 8px 0;
}

.site-footer a {
  color: #bde7ff;
  text-decoration: none;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
  font-size: 1.05rem;
}

.social.wa { background: hsl(174, 100%, 20%); }
.social.fb { background: hsl(174, 100%, 20%); }
.social.ig { background: hsl(174, 100%, 20%); }
.social.book { background: hsl(174, 100%, 20%); }

.tf-widget-button {
  opacity: 1;
  align-items: center;
  border: 1px solid hsl(174, 100%, 20%);
  z-index: 10;
  background-color: hsl(174, 100%, 20%);
  border-radius: 999px;
  display: flex;
  height: 42px;
  width: 220px;
  color: #fff;
}

.tf-button-link {
  text-decoration: none;
  color: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.tf-button-link:hover {
  font-weight: 800;
  background: none !important;
}

.small-note {
  color: #96c5e9;
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-wrap {
    min-height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .brand h1 { font-size: 1.2rem; }
  .brand p { font-size: 0.85rem; }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62vh;
  }

  .slideshow {
    min-height: 240px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .top-links {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .tf-widget-button {
    width: auto;
    max-width: none;
    height: 36px;
  }

  .tf-button-link {
    font-size: 0.82rem;
    padding: 0 10px;
    white-space: nowrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
