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

.wordlink {
  text-decoration: none;
  color: white;
}

body {
  font-family: sans-serif;
  background-color: #fdfd96;
}

/* ── Header – shared across all pages ── */
.header-wrapper {
  position: relative;
  height: 11vh;
  background: transparent;
}

.blue-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 11vh;
  background-color: #4da6ff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blue-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.6vh;
}

.site-title {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.nav-menu {
  height: 5vh;
  width: 80vw;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Logo & Banner */
.logo,
.banner {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 22vh;
}

.logo { left: 0; }
.banner { right: 0; }

.logo img,
.banner img {
  height: 100%;
  width: auto;
  display: block;
}

/* About section (used on home and destination pages) */
.about-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5vh 4vw 2vh;
  text-align: center;
  color: #333;
}

.about-title {
  color: #4da6ff;
  font-size: 1.55rem;
  margin: 0 0 0.5rem 0;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0.2rem 0 1.4rem 0;
  text-align: left;
}

/* ── Image grid – used on destination pages with 4 images ── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 2.5rem auto 1rem auto;
  padding: 0 4vw;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Gallery (home page) */
.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw 6vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4vw;
}

.destination-link {
  text-decoration: none;
  color: #333;
  text-align: center;
  flex: 1 1 260px;
  max-width: 300px;
}

.destination-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.destination-label {
  margin: 1rem 0 0 0;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Contact button */
.contact-section {
  text-align: center;
  margin: 5vh 0 6vh 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #4da6ff;
  color: white;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.envelope {
  font-size: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 3vh;
  color: #555;
  font-size: 0.95rem;
}