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

html, body {
  width: 100%;
  background: #111;
  color: #f5f1e8;
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
  height: auto;
  min-height: 100%;
}

/* =========================
   SOCIAL ICON NAV
   ========================= */

.social-nav {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 22px;
  z-index: 10;
  max-width: calc(100% - 24px);
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 12px;
}

.social-nav img {
  width: 22px;
  height: 22px;
  filter: invert(95%);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-nav img:hover { opacity: 1; }

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* Desktop baseline */
  min-height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("/images/hero.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 84px 16px 28px;
}

/* Modern viewport support */
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}
@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}

/* =========================
   MOBILE HERO FIX
   ========================= */

@media (max-width: 768px) {

  .social-nav {
    top: calc(env(safe-area-inset-top) + 14px);
    gap: 14px;
  }

  .social-nav img {
    width: 18px;
    height: 18px;
  }

  .hero {
    /* Shorter hero on mobile = less cropping */
    min-height: 72svh;
  }

  @supports (min-height: 72dvh) {
    .hero { min-height: 72dvh; }
  }

  .hero {
    background-size: cover;

    /* Adjust this number if needed */
    background-position: center 35%;

    padding: 90px 16px 28px;
  }
}

/* =========================
   ABOUT SECTION
   ========================= */

.about {
  width: 100%;
  padding: 84px 20px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 26px;
  letter-spacing: 1px;
}

.about p {
  font-size: 17px;
  line-height: 1.85;
  margin: 0 auto 22px;
  opacity: 0.9;
  max-width: 820px;
}

.about-lead {
  font-size: 18px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .about { padding: 64px 18px; }
  .about p { font-size: 16px; line-height: 1.8; }
  .about-lead { font-size: 16.5px; }
}