/* ========== Base / Page background ========== */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #1e293b;
  background: url("/images/AI_Sunset_PDX_Background.webp") center/cover no-repeat fixed;
}

/* Keep the carousel from collapsing if it's inside a flex parent */
.carousel { flex: 0 0 auto; }

/* ========== Info strip ========== */
.info-strip {
  background: #fafbfc;
  border-bottom: 1px solid #e5e7eb;
  padding: 6px 10px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}
.info-strip a {
  color: #1d9bf0;
  text-decoration: none;
}
.info-strip a:hover { text-decoration: underline; }

/* ========== Header / Nav ========== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.9);
}
.logo { height: 54px; }

.nav-buttons a {
  margin-left: 1rem;
  color: #1d9bf0;
  text-decoration: none;
  font-weight: 600;
}
.nav-buttons a:hover { text-decoration: underline; }

/* Disabled nav item */
.nav-buttons a.disabled {
  color: #94a3b8;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* ========== (Optional) Legacy hero block — safe to keep ========== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.hero-card {
  background: #1d9bf0;
  color: #fff;
  max-width: 960px;
  padding: 56px 48px;
  border-radius: 6px;
  text-align: center;
}
.eyebrow {
  display: block;
  font-size: .8rem;
  margin-bottom: 10px;
  opacity: 0.9;
}
.hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.2vw, 52px);
}
.hero-card p { margin: 0 0 18px; font-size: 1.05rem; }
.cta {
  display: inline-block;
  background: #fff;
  color: #1d9bf0;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

/* ========== Unified content card under carousel ========== */
/* This wraps BOTH your About text and the "Why Choose" block */
.content-wrapper {
  max-width: 1100px;              /* match carousel width */
  margin: 30px auto;
  background: #fff;               /* solid card background */
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Body text inside the card */
.content-wrapper p {
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* “About” section spacing (optional) */
.about { margin-bottom: 1.5rem; }

/* Optional soft divider between sections */
.content-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0;
  border-radius: 1px;
}

/* “Why Choose” block styles */
.blerb {
  text-align: center;
  margin-top: 1.5rem;
}
.blerb h2 {
  color: #1d9bf0;
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}
.blerb p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #334155;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 14px 10px;
  background: rgba(255,255,255,0.9);
  border-top: 1px solid #e5e7eb;
  font-size: 0.92rem;
  color: #475569;
}
footer p { margin: 4px 0; }

/* ========== Responsive niceties ========== */
@media (max-width: 640px) {
  .content-wrapper { padding: 28px 18px; }
  .blerb h2 { font-size: 1.5rem; }
}
