/* ==========================================================================
   Ocean Tower OC — static rebuild of the Yola "Skyline" site
   Palette: charcoal #333333 | light #f9f9f9 | teal accent #88d5c2 | text #797979
   Fonts: Open Sans (headings/nav, 700) | Libre Franklin (body)
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Libre+Franklin&display=swap");

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: #333333;
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 1.1rem;
  color: #797979;
  line-height: 1.5em;
}

a { color: #88d5c2; text-decoration: none; }
a:hover { color: #797979; text-decoration: underline; }
img { max-width: 100%; border: 0; }

/* ---------- Header (dark bar, title left, nav right) ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 30px;
  background: #333333;
  padding: 1.2rem 1.5rem;
}

.site-title {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 5px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.site-title a { color: #ffffff; text-decoration: none; }

.site-nav ul { margin: 0; padding: 0; list-style: none; }
.site-nav li { display: inline-block; margin-left: 2.2rem; }
.site-nav a {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.site-nav li.selected a, .site-nav a:hover { color: #88d5c2; text-decoration: none; }

/* ---------- Hero banner ---------- */
.hero {
  background: url("assets/IMG_0001.JPG") center center / cover no-repeat;
  padding-top: 25rem;
}

/* ---------- Content ---------- */
.content {
  background: #ffffff;
  padding: 2rem 1.5rem;
  min-height: 20vh;
}

.page-heading {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  color: #333333;
  letter-spacing: 1px;
  max-width: 1100px;
  margin: 0.5rem auto 1rem;
}
h2.page-heading { font-size: 3.5rem; line-height: 1.4em; text-transform: uppercase; }
h4.page-heading { font-size: 2rem; line-height: 1.5em; text-transform: uppercase; text-align: center; }
.page-heading.center { text-align: center; }

/* Pictures index links */
.pic-link { max-width: 1100px; margin: 0.4rem auto; text-align: center; }
.pic-link.plain { color: #797979; }

/* Map (home) — full content width on white, as the original */
.map-wrap { margin: 1rem 0; }
.map-wrap iframe { display: block; width: 100%; }

/* Imgur embeds centered */
.imgur-embed-pub { margin: 1rem auto !important; }

/* 2019 gallery — original Yola "tight tiles": 80x80 thumbs, centered */
.tight-tiles {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  font-size: 0;
}
.tight-tile { display: inline-block; margin: 2px; }
.tight-tile img { width: 80px; height: 80px; max-width: none; display: block; }

/* Lightbox overlay (shared with lightbox.js) */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  padding: 30px;
}
.lb-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
}

/* Copyright — white text on a full-width dark band that merges with the
   footer, exactly as the original's Yola panel I5 */
.copyright {
  background: #333333;
  color: #ffffff;
  text-align: center;
  margin: 2rem -1.5rem -2rem;
  padding: 1.6rem 1.5rem;
}

/* ---------- Footer (dark strip; address hidden as on the original) ---------- */
.site-footer { background: #333333; min-height: 3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-title { font-size: 2.4rem; letter-spacing: 3px; }
  .site-nav a { font-size: 1.3rem; }
  .hero { padding-top: 14rem; }
  h2.page-heading { font-size: 2.2rem; }
  h4.page-heading { font-size: 1.5rem; }
}
