:root {
  --bg: #f6f1ea;
  /* paper */
  --paper: #fff9f1;
  /* warm paper */
  --ink: #2a2a2a;
  /* text */
  --accent: #7a5c3c;
  /* walnut */
  --accent-2: #9c7f5a;
  /* olive wood */
  --olive: #3f5f52;
  /* olive green */
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--olive);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

header.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 16px;
}

.hero-img {
  /* aspect-ratio: 16/9; */
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.brand {
  position: static;
  margin-top: 4px;
  background: color-mix(in srgb, var(--paper) 80%, white 20%);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand h1 {
  margin: 0;
  font-family: Cormorant, serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  letter-spacing: 0.5px;
  color: var(--accent);
}

.brand p {
  margin: 6px 0 0;
  opacity: 0.9;
}

nav.bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0;
}

nav.bar a {
  padding: 10px 14px;
  border: 1px solid #e3d7c6;
  border-radius: 999px;
  background: var(--paper);
}

.section {
  padding: 20px 0;
}

.card {
  background: var(--paper);
  border: 1px solid #eadfce;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5dbc9;
  background: var(--paper);
  font-weight: 600;
}

.btn.primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.btn span.icon {
  font-size: 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #dccfb9;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4 {
  margin: 0;
  font-family: Cormorant, serif;
  font-size: 20px;
}

.menu-item p {
  margin: 6px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

footer {
  padding: 36px 0 56px;
}

.footer-wrap {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .footer-wrap {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.small {
  font-size: 14px;
  opacity: 0.85;
}

/* Lightbox */
.lb-lock {
  overflow: hidden;
}

.gallery a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
.gallery a:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 96vw);
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lightbox__img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-align: center;
}

.lightbox__btn {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}
.lightbox__btn:hover {
  background: rgba(20, 20, 20, 0.55);
}
.lightbox__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 28px;
  line-height: 1;
}
.lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}
.lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

@media (max-width: 520px) {
  .lightbox__prev,
  .lightbox__next {
    display: none;
  } /* swipe/keyboard still works */
}

.action-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-container {
  display: flex;
  gap: 15px; /* Space between the buttons */
  align-items: center;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease; /* Smooth hover pop */
}

.social-button img {
  width: 20px; /* Set your desired width */
  height: 20px; /* Set your desired height */
  display: block;
}

/* Hover effect: makes the icon slightly larger */
.social-button:hover {
  transform: scale(1.1);
}
