@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #75D69C;
  --green-dark: #1a2e1a;
  --green-mid: #2d4a2d;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --text-muted: rgba(255,255,255,0.7);
}

html, body {
  height: 100%;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

body {
  background-color: var(--green-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Background ─────────────────────────── */
.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 46, 26, 0.88) 0%,
    rgba(26, 46, 26, 0.78) 50%,
    rgba(26, 46, 26, 0.90) 100%
  );
}

/* ── Layout ─────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 0;
}

/* ── Card ───────────────────────────────── */
.card {
  width: 100%;
  max-width: 560px;
  background: rgba(26, 46, 26, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(117, 214, 156, 0.18);
  border-radius: 16px;
  padding: 48px 44px 44px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

/* ── Logo ───────────────────────────────── */
.logo-wrap {
  margin-bottom: 36px;
}

.logo-wrap img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ── Divider leaf ───────────────────────── */
.leaf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px auto;
  width: fit-content;
}

.leaf-divider::before,
.leaf-divider::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(117,214,156,0.5));
}

.leaf-divider::after {
  background: linear-gradient(to left, transparent, rgba(117,214,156,0.5));
}

.leaf-icon {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

/* ── Heading ────────────────────────────── */
.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Contact block ──────────────────────── */
.contact-block {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(117,214,156,0.2);
  background: rgba(117,214,156,0.07);
  transition: background 0.2s, border-color 0.2s;
}

.contact-item:hover {
  background: rgba(117,214,156,0.15);
  border-color: rgba(117,214,156,0.4);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--green);
}

/* ── Booking CTA ────────────────────────── */
.book-section {
  margin-top: 36px;
}

.book-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.book-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #8ee6b0;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}

/* ── Footer ─────────────────────────────── */
.page-footer {
  margin-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 480px) {
  .card {
    padding: 36px 24px 32px;
  }

  .logo-wrap img {
    height: 64px;
  }
}
