﻿
@font-face {
  font-family: "Sylexiad";
  src: url("fonts/SylexiadSansMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: 0.02em;
}

:root {
  --bg: #FFFCF6;
  --bg-soft: #F6F0EA;
  --card: #FFFFFF;
  --text: #2A2430;
  --muted: #7A6C78;
  --primary: #51305A;
  --accent: #9E7D71;
  --border: #C9B7BF;
  --shadow: #1F2A371A;
  --section-spacing: 44px;
  --section-spacing-mobile: 24px;
  --menu: #f4e9fc;
  --menu-muted: #e4d2f9;
  --donate1: #51305A;
  --donate2: #9E7D71;
  --headermobilelogo: 70px;
}

:root[data-theme="dark"] {
  --bg: #1F2A37;
  --bg-soft: #2A3645;
  --card: #253241;
  --text: #EAEAEA;
  --muted: #AAB5C0;
  --primary: #51305A;
  --accent: #9E7D71;
  --border: #4A5A6A;
  --shadow: #00000040;
  --menu: #f4e9fc;
  --menu-muted: #e4d2f9;
  --donate1: #51305A;
  --donate2: #9E7D71;
}

:root:has(#theme-toggle:checked) {
  --bg: #1F2A37;
  --bg-soft: #2A3645;
  --card: #253241;
  --text: #EAEAEA;
  --muted: #AAB5C0;
  --primary: #51305A;
  --accent: #9E7D71;
  --border: #4A5A6A;
  --shadow: #00000040;
  --menu: #f4e9fc;
  --menu-muted: #e4d2f9;
  --donate1: #51305A;
  --donate2: #9E7D71;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #1F2A37;
    --bg-soft: #2A3645;
    --card: #253241;
    --text: #EAEAEA;
    --muted: #AAB5C0;
    --primary: #51305A;
    --accent: #9E7D71;
    --border: #4A5A6A;
    --shadow: #00000040;
    --menu: #f4e9fc;
    --menu-muted: #e4d2f9;
    --donate1: #51305A;
    --donate2: #9E7D71;
  }
}

html, body {
  min-height: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Sylexiad", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  letter-spacing: 0.02em;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #9E7D7129, transparent 30%),
    radial-gradient(circle at top right, #51305A1A, transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 16px 20px;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media (min-width: 901px) {
  .wrap { padding-top: 116px; }
}

html { scroll-padding-top: 120px; }

html { font-size: 18px; }

header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: var(--primary);
  border-bottom: 1px solid var(--border);
  margin: 0; padding: 0;
  overflow-x: clip;
}

.nav {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.logo-link { display: flex; align-items: center; flex: 0 0 auto; }

.logo {
  width: auto;
  height: 96px;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.brand-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.05;
  margin-left: 2px;
}

.brand h1 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--menu);
  margin: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.05;
}
.brand p {
  font-size: 0.72rem;
  color: var(--menu-muted);
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
}

#nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #FFFFFFD1;
  box-shadow: 0 10px 24px var(--shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: 0.2s ease;
  position: relative;
}
.hamburger span {
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a, nav .theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--menu);
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.98em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  outline: none;
  box-shadow: none;
}
nav .theme-toggle { color: #F2E9ED; cursor: pointer; }
.theme-toggle-input {
  position: fixed;
  left: -9999px;
  top: auto;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

nav a, nav a:visited, nav a:focus, nav a:active, nav a:hover {
  color: var(--menu) !important;
  text-decoration: none !important;
  background: none;
}

a, a:visited, a:active { color: var(--accent); text-decoration: underline; }
a:hover, a:focus-visible { color: var(--primary); }

.section { margin-top: var(--section-spacing); margin-bottom: var(--section-spacing); }
.section:first-child { margin-top: 0; }

.flex-layout, .flex-layout-bottom {
  display: flex;
  gap: 36px;
  align-items: stretch;
  width: 100%;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 18px 45px var(--shadow);
  flex: 1 1 330px;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 901px) {
  .hero-card.hero { padding: 30px; }
}
:root[data-theme="dark"] .hero-card,
:root:has(#theme-toggle:checked) .hero-card {
  background: var(--card);
  color: var(--text);
}

.hero h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #9E7D711F;
  color: #6B4F46;
  font-size: 0.8rem;
  margin-bottom: 16px;
  border: 1px solid #9E7D712E;
  min-width: 0;
  width: fit-content;
  max-width: 100vw;
}
:root[data-theme="dark"] .hero .eyebrow,
:root:has(#theme-toggle:checked) .hero .eyebrow {
  background: #9E7D7133;
  color: #EAEAEA;
  border-color: #9E7D7155;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px #9E7D712E;
}
@media (max-width: 650px) {
  .hero .eyebrow {
  transform: translate(-5%, -10%);
  }
}
.hero p {
  margin-top: 0;
  margin-bottom: 0;
  min-height: 0;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  justify-content: center;
}
.hero .actions .btn,
.hero .actions .btn-consistent {
  min-width: 152px;
  text-align: center;
}

.btn, .ghost, .donate-btn, .spwidget-button, .spwidget-button.secondary, .btn-consistent {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid #111;
  outline: none;
  font-weight: 700;
  font-size: 1em;
  transition: background 0.18s, color 0.18s, filter 0.18s;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 14px #31313133;
}

.btn, .hero .btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  border: 1.5px solid var(--primary);
}
.btn.ghost, .ghost, .donate-btn,
.btn-consistent, .spwidget-button.secondary {
  border: 1.5px solid #111;
  color: #111 !important;
  background: #fff !important;
}
.btn:hover, .ghost:hover, .donate-btn:hover,
.btn:focus-visible, .ghost:focus-visible, .donate-btn:focus-visible,
.btn-consistent:hover, .btn-consistent:focus-visible,
.spwidget-button.secondary:hover, .spwidget-button.secondary:focus-visible {
  filter: brightness(1.07);
  background: #f6f0ea !important;
  color: #111 !important;
  text-decoration: none;
}

.spwidget-button {
  display: inline-block;
  padding: 12px 18px;
  font-family: "Sylexiad", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 1px solid #51305A;
  box-shadow: 0 14px 30px #51305A38;
  text-decoration: none;
  transition: all 0.2s ease;
  flex: 0 1 auto;
  width: auto;
  max-width: 200px;
}

.slideshow-frame {
  background: var(--card);
  border-radius: 30px;
  padding: 12px;
  border: 2px solid #FFFFFFD9;
  box-shadow: 0 20px 35px var(--shadow), 0 0 0 1px var(--border), inset 0 1px 0 #FFFFFFE6;
  flex: 1 1 330px;
  min-width: 0;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
:root[data-theme="dark"] .slideshow-frame,
:root:has(#theme-toggle:checked) .slideshow-frame {
  border: 1px solid var(--border);
  box-shadow: 0 20px 35px var(--shadow), inset 0 1px 0 #FFFFFF26;
}

.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}
@media (min-width: 901px) {
  .slideshow {
    max-width: 520px;
    min-height: 300px;
    aspect-ratio: 1.18/1;
  }
  .slide-image-wrap { max-width: 350px !important; }
  .slide-wrapper img,
  .slide-image-wrap img {
    max-width: 350px !important;
    max-height: none !important;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 650px) {
  .slideshow { max-width: 100%; aspect-ratio: 0.9 / 1; }
}

.slide-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeSlide 35s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  gap: 8px;
  background: transparent;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.slide-wrapper[data-slide="1"] { animation-delay: 0s; }
.slide-wrapper[data-slide="2"] { animation-delay: 7s; }
.slide-wrapper[data-slide="3"] { animation-delay: 14s; }
.slide-wrapper[data-slide="4"] { animation-delay: 21s; }
.slide-wrapper[data-slide="5"] { animation-delay: 28s; }

@keyframes fadeSlide {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

.slide-image-wrap {
  width: 100%;
  max-width: 250px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}
.slide-wrapper img {
  width: 86%;
  max-width: 270px;
  max-height: 92vw;
  margin: 0 auto;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  height: auto;
}

.story-caption {
  font-size: 0.6rem;
  color: var(--text);
  font-weight: 600;
  background: #fff;
  padding: 10px 18px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  width: fit-content;
  min-width: 66vw;
  max-width: 92vw;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
@media (min-width: 650px) { .story-caption { min-width: 232px; font-size: 0.4rem;} }
:root[data-theme="dark"] .story-caption,
:root:has(#theme-toggle:checked) .story-caption { background: var(--card); color: var(--text); }

.caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.caption {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caption > span {
  margin-right: auto; /* text stays left */
}
.caption .dots {
  margin-left: auto;  /* dots stay right */
}
.dots { display: flex; gap: 6px; }
.dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #D8C9CF;
  opacity: 0.4;
  animation: dotPulse 35s infinite;
}
.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 7s; }
.dots span:nth-child(3) { animation-delay: 14s; }
.dots span:nth-child(4) { animation-delay: 21s; }
.dots span:nth-child(5) { animation-delay: 28s; }

@keyframes dotPulse {
  0%   { opacity: 0.4; transform: scale(1); background: #D8C9CF; }
  4%   { opacity: 1; transform: scale(1.2); background: var(--primary); }
  16%  { opacity: 1; transform: scale(1.2); background: var(--primary); }
  20%  { opacity: 0.4; transform: scale(1); background: #D8C9CF; }
  100% { opacity: 0.4; transform: scale(1); background: #D8C9CF; }
}

.double-panel {
  background: var(--card);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 35px var(--shadow);
  margin-bottom: 0;
}
.divider {
  border: 0;
  border-top: 1.5px dashed var(--border);
  margin: 24px 0;
  opacity: 0.8;
  width: 100%;
}

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #F2E6E1;
  border: 1px solid #9E7D7133;
  font-size: 0.82rem;
}
:root[data-theme="dark"] .tag,
:root:has(#theme-toggle:checked) .tag {
  background: #3A4A5A;
  border-color: #7A5C8555;
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.card {
  background: var(--card);
  border-radius: 22px;
  padding: 4px 16px;
  border: 1px solid #D8C9CF;
  box-shadow: 0 8px 18px var(--shadow), 0 0 0 1px #FFFFFFCC inset;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px dashed #51305A29;
  pointer-events: none;
}
.card h4 { margin-bottom: 6px; }
.card p { font-size: 0.94rem; color: var(--muted); }

.donate-panel .donate {
  background: linear-gradient(135deg, var(--donate1), var(--donate2)) !important;
  border: 1px solid #9E7D713F;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.donate-panel .donate-action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.donate-panel .donate-btn {
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary) !important;
  border: none;
  font-weight: 700;
  font-size: 1.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #51305A27;
  margin-right: 2px;
}
#donateEmbed { display: none; margin-top: 16px; }
#donateEmbed iframe { width: 100%; min-height: 350px; border: 0; }

.bottom-flex-wrap { margin-top: var(--section-spacing); margin-bottom: var(--section-spacing); }
.bottom-flex { display: flex; gap: 20px; align-items: stretch; margin: 0; }
.bottom-flex > * {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.booking-panel, .resources-panel {
  background: var(--card);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px var(--shadow);
  min-height: 280px;
  height: 100%;
}
.spwidget-button-wrapper { text-align: center; width: 100%; }
.spwidget-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.resources-panel ul {
  margin-top: 12px;
  color: var(--muted);
  line-height: 2;
  list-style: square inside;
  padding-left: 1em;
}

footer#contact,
footer#contact.section {
  margin: 0 !important;
  margin-top: auto !important;
  width: 100%;
  max-width: none;
  position: relative;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--menu);
  text-align: center;
  padding: 28px 20px 22px;
  box-sizing: border-box;
}

.floating-bg-img {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 70vw;
  max-width: 1100px;
  min-width: 320px;
  height: auto;
  max-height: 100svh;
  min-height: 180px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  transform: translate(-50%, -35%);
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .nav { padding: 0 0.1rem; min-height: 76px; }
  .brand-txt { max-width: 78px; height: 43px; }
  .logo { height: 96px; max-width: 220px; }
  .logo-link { height: var(--headermobilelogo); }

  nav {
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 6px);
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: 0 14px 30px var(--shadow);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.21s, opacity 0.21s;
    z-index: 101;
  }
  nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 7px 0; }
  nav a, nav .theme-toggle { display: block; text-align: left; width: 100%; }
  nav a:hover, nav a:focus-visible, nav .theme-toggle:hover, nav .theme-toggle:focus-visible {
    background: var(--accent);
  }
  #nav-toggle:checked ~ nav { max-height: 420px; opacity: 1; pointer-events: auto; }
  #nav-toggle:checked + label .line1 { transform: translateY(8px) rotate(45deg); }
  #nav-toggle:checked + label .line2 { opacity: 0; }
  #nav-toggle:checked + label .line3 { transform: translateY(-8px) rotate(-45deg); }
  .hamburger { display: flex; }

  .wrap { padding-top: 96px; }
  .brand h1 { font-size: 0.82rem; }
  .brand p { font-size: 0.58rem; }

  .flex-layout, .flex-layout-bottom, .bottom-flex {
    flex-direction: column;
    gap: var(--section-spacing-mobile);
  }
  .bottom-flex { margin: 0; }
  .bottom-flex > * { margin: 0; }

  .slideshow-frame { max-width: none; width: 100%; }
  .cards { grid-template-columns: repeat(2, minmax(180px, 1fr)); }

  .donate-panel .donate-action-row {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .floating-bg-img {
    width: 110vw;
    max-width: none;
    min-width: 0;
    max-height: 62vw;
    transform: translate(-50%, -50%);
  }

  footer#contact,
  footer#contact.section {
    padding: 22px 16px 22px;
  }
}

/* iOS Safari-only stability patch for checkbox mobile nav rendering */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 900px) {
    #nav-toggle:checked ~ nav {
      display: block;
      max-height: none;
      visibility: visible;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
}

@media (max-width: 650px) {
  .slide-image-wrap { max-width: 72%; }
}
@media (max-width: 600px) {
  #donateEmbed iframe { min-height: 290px; }
  .slide-wrapper img { max-width: 94vw; width: 94vw; }
}
@media (max-width: 560px) {
  .section {
    margin-top: var(--section-spacing-mobile);
    margin-bottom: var(--section-spacing-mobile);
  }

  .wrap {
    padding-top: 102px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav { min-height: 82px; padding: 0 12px; }
  .logo { height: 70px; max-width: 44vw; }
  .brand { gap: 6px; }
  .brand h1 { font-size: 0.76rem; line-height: 1.02; }
  .brand p { font-size: 0.54rem; }

  .hero-card.hero {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .hero .eyebrow {
    margin-top: 4px;
    margin-bottom: 10px;
  }
  .hero .actions {
    gap: 8px;
    margin-top: 12px;
    padding-top: 8px;
    padding-bottom: 6px;
    justify-content: stretch;
    flex-wrap: wrap;
  }
  .hero .actions .btn,
  .hero .actions .btn-consistent {
    flex: 1 1 calc(50% - 4px);
    min-width: 124px;
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }


  .slideshow { aspect-ratio: 0.82 / 1; }
  .slide-wrapper { padding: 8px; gap: 6px; }
  .slide-image-wrap { max-width: 62%; }
  .slide-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 34vh;
    object-fit: contain;
  }
  .story-caption {
    font-size: 0.4rem;
    padding: 8px 10px;
    max-width: calc(100% - 16px);
  }

  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .floating-bg-img {
    width: 168vw;
    max-width: none;
    top: 50%;
    min-height: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.centered {
  text-align: center;
}
#about h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.hero h2 {
  margin-top: 0;
  margin-bottom: 1px;
}
#projects h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
#booking h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
#booking p {
  margin-top: 2px;
  margin-bottom: 0;
}
#resources h3 {
  margin-top: 0;
  margin-bottom: 2px;
}
#resources ul {
  margin-top: 1px;
  margin-bottom: 0;
  padding-top: 0;
}

