:root {
  --bg: #fffaf2;
  --surface: #fffdf9;
  --surface-2: #f7f1e7;
  --text: #25323a;
  --muted: #667780;
  --line: #e6ddd0;

  --sea: #2f7c91;
  --sea-dark: #245f6f;
  --sea-soft: #dff1f4;

  --sand: #f2dfbf;
  --sand-dark: #dcc39b;

  --sun: #f3b562;
  --coral: #dd7f6d;

  --shadow: 0 10px 30px rgba(37, 50, 58, 0.08);
  --shadow-hover: 0 14px 36px rgba(37, 50, 58, 0.12);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-tag: 9px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #fff6e6 0%, transparent 35%),
    linear-gradient(180deg, #fffaf2 0%, #f9f7f2 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 14px;
}

a {
  color: var(--sea);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--sea-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(230, 221, 208, 0.85);
}

.top-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sea-dark);
}

nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
}

nav a:hover,
nav a.active {
  background: var(--sea-soft);
  color: var(--sea-dark);
}

.hero {
  padding: 4.5rem 1.25rem 2rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-inner > div:first-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 240, 0.95));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
  min-height: 100%;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
  color: var(--sea-dark);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--sea-dark);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sea);
  color: white;
}

.btn-primary:hover {
  background: var(--sea-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-2);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
  gap: 2rem;
}

main > div > section {
  background: transparent;
}

#Places\ of\ Interest {
  display: block;
}

#Places\ of\ Interest > h2 {
  margin-bottom: 1rem;
}

/* filter bar */
.card-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: var(--sea-soft);
  border-color: #d6e6ea;
  color: var(--sea-dark);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--sea);
  border-color: var(--sea);
  color: white;
}

#Places\ of\ Interest > .card {
  margin-bottom: 1.25rem;
}

@media (min-width: 900px) {
  #Places\ of\ Interest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  #Places\ of\ Interest > h2,
  #Places\ of\ Interest > .card-filters {
    grid-column: 1 / -1;
  }

  #Places\ of\ Interest > h2 {
    margin-bottom: 0;
  }

  #Places\ of\ Interest > .card-filters {
    margin-bottom: 0.25rem;
  }

  #Places\ of\ Interest > .card {
    margin-bottom: 0;
    height: 100%;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #ddd1bd;
}

.card.is-hidden {
  display: none;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0.8rem 0 1rem;
  background: var(--surface-2);
}

.meta {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.75rem;
  border-radius: 9px;
  background: var(--sea-soft);
  color: var(--sea-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card p {
  color: var(--muted);
  margin: 0 0 0.9rem;
}

/* optional label chips shown inside cards */
.card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
}

.card-label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 9px;
  background: #fff7ea;
  border: 1px solid #eddcc0;
  color: #7a5a2b;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--sea-dark);
  box-shadow: 0 1px 0 rgba(37, 50, 58, 0.02);
}

.card-link:hover {
  background: var(--sea-soft);
  border-color: #d6e6ea;
  color: var(--sea-dark);
  transform: translateY(-1px);
}

.card-link::after {
  content: "→";
  font-size: 0.85em;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(2px);
}

.card p:has(.card-link) {
  margin-bottom: 0.35rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.sidebar h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list strong {
  color: var(--text);
}

footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 241, 231, 0.65), rgba(242, 223, 191, 0.45));
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.4rem 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

section + section {
  margin-top: 0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.card-link:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgba(47, 124, 145, 0.22);
  outline-offset: 3px;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-inner,
  main {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-inner > div:first-child,
  .hero-map,
  .card,
  .sidebar section {
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .top-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: flex-end;
    margin-top: -3rem;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.5rem;
  }

  nav.open {
    display: flex;
  }

  nav a {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
  }

  .hero {
    padding: 2.2rem 1rem 1rem;
  }

  main {
    padding: 1rem 1rem 3rem;
  }

  .hero-inner > div:first-child {
    padding: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  #Places\ of\ Interest {
    display: block;
  }

  #Places\ of\ Interest > .card {
    margin-bottom: 1rem;
  }

  .card-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.58rem 0.8rem;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}



/* Clickable card images */
.card img {
  cursor: zoom-in;
}

/* Clickable images */
.card img {
  cursor: zoom-in;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(16, 22, 26, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-panel {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  display: block;
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-caption {
  margin-top: 0.85rem;
  color: #f3f0ea;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 30, 35, 0.92);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lightbox-close:hover {
  transform: scale(1.04);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 12px;
  }

  .lightbox-close {
    top: -0.5rem;
    right: -0.5rem;
  }
}