/* Maranatha Gardens — brand colours from logo (vibrant green + golden yellow + white) */
:root {
  --green-dark: #0a5230;
  --green: #127a42;
  --green-mid: #1a8f4e;
  --green-light: #23a85c;
  --gold: #c9a41a;
  --gold-light: #e6c24a;
  --gold-pale: #fff9e8;
  --white: #ffffff;
  --cream: #faf9f5;
  --text: #153828;
  --text-muted: #3d5346;
  --shadow: 0 8px 32px rgba(10, 82, 48, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--green-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0;
}

h2.h2-with-icon {
  font-size: unset;
  line-height: unset;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero .tagline {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 1px 10px rgba(0, 0, 0, 0.4);
}

/* Layout */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--green {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 45%, var(--green-mid) 100%);
  color: var(--white);
}

.section--green h2,
.section--green h3 {
  color: var(--gold-light);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section--green .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 480px) {
  .logo__img {
    height: 48px;
    max-width: min(200px, 48vw);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--gold-pale);
  color: var(--green-dark);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn .btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.5);
  color: var(--green-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn--green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.btn--green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem 1rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../uploads/reception.jpeg") center/cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: linear-gradient(160deg, rgba(10, 82, 48, 0.88) 0%, rgba(18, 122, 66, 0.82) 60%, rgba(10, 82, 48, 0.88) 100%);
  border: 1px solid rgba(240, 201, 76, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.25rem);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.95);
  max-width: 32rem;
  margin-inline: auto;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero .btn-row {
  margin-top: 2rem;
}

/* Highlights grid */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.highlight {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(240, 201, 76, 0.35);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.highlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.highlight__icon .svg-ic {
  width: 1.85rem;
  height: 1.85rem;
}

.highlight span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 83, 45, 0.08);
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-mid);
}

.price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.feature-list li {
  padding: 0.35rem 0;
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* Service sections */
.service-block {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block__figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 83, 45, 0.08);
  aspect-ratio: 2 / 1;
}

.service-block__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pill {
  background: var(--gold-pale);
  color: var(--green-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 82, 48, 0.92));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--green-mid);
  color: var(--white);
}

.gallery-item[data-category].is-hidden {
  display: none;
}

/* Packages */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.tier {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 2px solid rgba(20, 83, 45, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tier .feature-list {
  flex: 1;
}

.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.25);
  transform: scale(1.02);
}

.tier__badge {
  position: absolute;
  top: -12px;
  right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.tier h3 {
  margin-top: 0;
}

.tier .price {
  margin: 0.5rem 0 1rem;
}

/* Forms */
.form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 83, 45, 0.1);
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid rgba(20, 83, 45, 0.15);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tier--featured {
    transform: none;
  }
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.contact-card a {
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  border: 3px solid var(--green-mid);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* SVG icon utility (sprite / inline) */
.svg-ic {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.svg-ic use {
  pointer-events: none;
}

/* Section headings with icon (services) */
.h2-with-icon {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.h2-with-icon .icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-pale) 0%, var(--white) 100%);
  border: 2px solid var(--gold);
  color: var(--green-mid);
  box-shadow: 0 4px 14px rgba(201, 164, 26, 0.2);
}

.h2-with-icon .icon-ring .svg-ic {
  width: 1.55rem;
  height: 1.55rem;
}

.h2-with-icon__text {
  flex: 1;
  min-width: 12rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

/* Social: icon-only buttons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(230, 194, 74, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(10, 82, 48, 0.2);
}

.social-icons a:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 82, 48, 0.28);
}

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icons a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 0 2rem;
  margin-top: auto;
  border-top: 4px solid var(--gold);
}

.site-footer a {
  color: var(--gold-light);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Page intro (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.page-hero h1 {
  color: var(--white);
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  opacity: 0.92;
  max-width: 36rem;
  margin-inline: auto;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Menu page */
.menu-block {
  margin: 2.5rem 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
}

.menu-block .h2-with-icon {
  margin-bottom: 1rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(20, 83, 45, 0.18);
  font-size: 1rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list__name {
  font-weight: 600;
  color: var(--text);
}

.menu-list__name small {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.menu-list__dots {
  flex: 1 1 auto;
  border-bottom: 2px dotted rgba(20, 83, 45, 0.35);
  transform: translateY(-4px);
  min-width: 1.5rem;
}

.menu-list__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-mid);
  white-space: nowrap;
}

.menu-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-banner__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(10, 82, 48, 0.25);
}

.menu-banner > div {
  flex: 1 1 240px;
}

.menu-banner h2 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.menu-posters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-poster {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 83, 45, 0.08);
}

.menu-poster a {
  display: block;
  line-height: 0;
}

.menu-poster img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.3s;
}

.menu-poster:hover img {
  transform: scale(1.02);
}

.menu-poster figcaption {
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
  background: var(--gold-pale);
}
