/* ==========================================================================
   The Enterprise Center — holding page
   ========================================================================== */

:root {
  --bg-base: #1e1f20;
  --bg-footer: #1d1e20;
  --accent-blue: #4a7fb5;
  --accent-blue-dark: #3d6a9a;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --text-muted: #b7b9bd;
}

body {
font-family: linotype-didot, serif;
font-weight: 400;
font-style: normal;
  background-color: var(--bg-base);
  color: #e2d9d3;
}

a {
  text-decoration: none;
}

/* ---------------- Header ---------------- */
.site-header {
  background-color: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
}

.logo {max-width:380px;}

.brand {
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-the {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #d8d9db;
}

.brand-name {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* Fan / shell mark — placeholder for the real logo mark */
.fan-logo {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.fan-logo .blade {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px;
  height: 26px;
  background-color: #e9eaec;
  border-radius: 5px 5px 0 0;
  transform-origin: bottom center;
  opacity: 0.9;
}

.fan-logo .blade:nth-child(1) { transform: translateX(-50%) rotate(-72deg); }
.fan-logo .blade:nth-child(2) { transform: translateX(-50%) rotate(-48deg); }
.fan-logo .blade:nth-child(3) { transform: translateX(-50%) rotate(-24deg); }
.fan-logo .blade:nth-child(4) { transform: translateX(-50%) rotate(0deg); }
.fan-logo .blade:nth-child(5) { transform: translateX(-50%) rotate(24deg); }
.fan-logo .blade:nth-child(6) { transform: translateX(-50%) rotate(48deg); }
.fan-logo .blade:nth-child(7) { transform: translateX(-50%) rotate(72deg); }

.btn {
font-family: open-sans, sans-serif!important;
font-weight: 700!important;
font-style: normal;

}

.btn-donate {
  background-color: var(--accent-blue);
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 0.55rem 1.5rem;
  border-radius: 0.3rem;
  transition: background-color .2s ease;
font-weight: 400;
font-style: normal;
}

.btn-donate:hover {
  background-color: var(--accent-blue-dark);
  color: #fff;
}

/* ---------------- Hero photo ---------------- */
.hero {
  position: relative;
}

.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  background-color: #3a3b3d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.hero-content {
  position: static;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  background-color: rgba(8, 9, 10, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0;
  padding: 2.5rem 2.25rem;
}

/* Below desktop, the CTA card stacks below the photo in normal flow */
@media (max-width: 991.98px) {
  .hero-content {
    padding: 1.75rem 1.5rem;
      background-color: unset;
      text-align: center;
  }
}

/* At desktop width, the CTA card overlays the photo on the right */
@media (min-width: 992px) {
  .hero-photo {
    aspect-ratio: 16 / 7;
    min-height: 480px;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
  }
}

/* ---------------- CTA content ---------------- */
.lead-message {
  font-size: 1.75rem;
  color:#e2d9d3;
  margin: 0 0 1.75rem;
  
}

.cta-buttons {
  width: 100%;
}

.btn-cta {
  background-color: var(--accent-blue);
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  flex: 1 1 0;
  transition: background-color .2s ease, transform .2s ease;
}

.btn-cta:hover {
  background-color: var(--accent-blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 3rem;
}

.mission-text {
  font-size: 0.9rem;
  font-style: italic;
  max-width: 36rem;
  margin: 0 auto 0.75rem;
}

.contact-line {

  font-size: 0.9rem;
  margin: 0;
}

.contact-line a {

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-line a:hover {
  color: #fff;
}
