
/* ===================== SHARED NAV ADDITIONS ===================== */

.sitenav {
  display: none;
}

.navlink {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.navlink:hover {
  color: #00b36b;
  border-bottom-color: #00b36b;
}

.navlink.active {
  color: #00b36b;
  border-bottom-color: #00b36b;
}

.hamburger {
  display: block;
  position: absolute;
  left: 3vw;
  right: auto;
  top: 28px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.97);
  position: fixed;
  top: 7.5rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  border-top: 2px solid #00b36b;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: white;
  text-decoration: none;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}

.mobile-link:hover {
  color: #00b36b;
  background: rgba(255,255,255,0.04);
}

.mobile-book {
  color: #00b36b;
  margin-top: 0.5rem;
}

/* Footer social icons (injected into .bottom by nav.js) */
.social-info { gap: 0.6rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00b36b;
  transition: color 0.2s, transform 0.15s;
}
.social-link:hover { color: #009152; transform: translateY(-2px); }
.social-link svg { display: block; }

/* Page header used on inner pages */
.page-hero {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  position: relative;
  margin-top: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero-text {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
}

.page-hero-text i {
  font-family: Garamond, Georgia, serif;
  font-size: 1.2rem;
  opacity: 0.85;
}

.page-hero-text h1 {
  color: white;
  border-bottom-color: #00b36b;
  font-size: 3rem;
  margin-top: 0.25rem;
}

/* Shared page content wrapper */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}


@media (max-width: 450px) {
  .page-hero-text {
    padding: 1rem 1.5rem;
    padding-bottom: 2rem;
  }
  .page-hero-text h1 {
    font-size: 2rem;
  }
}
