/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ============================================================
   Page Body
   ============================================================ */
body.page-body {
  margin: 0;
  padding: 0;
  background-color: #1a1d1e;
  font-family: 'Work Sans', 'Rubik', sans-serif;
  color: #ffffff;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav-bar {
  background-color: #000;
  position: relative;
  z-index: 9000;
  padding: 1em;
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75em 2em;
}

.nav-logo {
  height: 22px;
  width: auto;
  display: block;
  cursor: pointer;
}

/* ============================================================
   Hero Banner
   ============================================================ */
.hero-banner {
   background-color: #000;
   width: 100%;
   line-height: 0; /* remove inline-block gap */
   display: flex;
   justify-content: center;
   overflow: hidden;
}

.hero-image {
   display: block;
   width: 100%;
  max-width: 1200px;
   height: auto;
   max-height: 600px;
   object-fit: cover;
   object-position: center top;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-1 { animation-delay: 0s; }
.animate-2 { animation-delay: 0.18s; }
.animate-3 { animation-delay: 0.34s; }

/* ============================================================
   Icon Row Section (between hero and content)
   ============================================================ */
.icon-row-section {
  background-color: #1a1d1e;
  padding: 3em 0 0 0;
}

/* ============================================================
   Content Section
   ============================================================ */
.content-section {
   background-color: #1a1d1e;
   padding: 4em 0 0 0;
}

.content-block {
   max-width: 860px;
   margin: 0 auto;
   padding: 0 2em 6em 6.5em; /* ~104px left indent to match design grid */
}

/* ============================================================
   Body Text
   ============================================================ */
.body-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ffffff;
  margin: 0 0 1.4em 0;
}

.body-text b {
  font-weight: 600;
}

.thoughts-link a {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  text-decoration: none;
  transition: color 0.2s ease;
}

.thoughts-link a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: #1a1d1e;
  margin-top: 4em;
  padding-bottom: 4em;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2em;
}

.footer-logo-row {
  display: flex;
}

.footer-logo-wrap {
  max-width: 160px;
  margin: 0 auto;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

.footer-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin-top: 2.5em;
}

.footer-icon {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.75;
}

.footer-meta {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-built-with {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 0 0 0.5em 0;
}

.footer-location {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 0 1em 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .hero-image {
    max-height: 300px;
  }

  .content-block {
    padding: 0 1.25em 4em 1.25em;
  }

  .nav-inner {
    padding: 0.75em 1.25em;
  }

  .footer-inner {
    padding: 0 1.25em;
  }
}
