:root {
	--primary-orange: #f47c48;
	--primary-blue: #1a3d66;
	--secondary-cream: #fdf5e8;
	--secondary-blue: #a7d8f0;
	--secondary-gold: #d9a441;
}

html, body {
	height: 100%;
	scroll-padding-top: 70px;
}

body {
	font-family: 'Poppins', Arial, sans-serif;
	background-color: var(--secondary-cream);
	color: var(--primary-blue);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  	padding-top: 80px;
}

p, li {
	font-size: large;
}

h1 {
	display: 4;
	font-weight: bold;
}

h2 {
	display: 2;
}

.logo-container {
  position: relative;
  height: 70px;         /* your navbar height */
  overflow: visible;    /* allow image to overflow */
  display: flex;
  align-items: center;
}

/* Style the logo image to overflow and crop top/bottom */
.navbar-logo {
  height: 140px;                   /* make it taller than navbar */
  width: auto;                     /* keep aspect ratio */
  position: absolute;
  left: 0;
  top: -30px;                      /* adjust as needed to center visually */
  /* Optionally, add object-fit cropping for even more control: */
  object-fit: cover;               
  object-position: center top;     /* adjust to control crop position */
  /* Optionally, a drop shadow for style: */
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); */
}

.section-content {
  padding: 2.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-bg-section {
  display: flex;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.split-bg {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem; /* vertical padding is colored! */
}

.split-inner {
  width: 100%;
  margin: 0 auto;
  padding: 5px;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .split-bg-section {
    flex-direction: column;
  }
  .split-bg {
    width: 100%;
    padding: 2.5rem 1rem;
  }
}


footer.footer {
	margin-top: auto;
}

.navbar,
.footer {
	background-color: var(--primary-blue) !important;
}

.navbar .navbar-brand,
.navbar .nav-link {
	color: #fff;
}

.transition-navbar {
	transition: padding 0.3s, background-color 0.3s;
}
.navbar.shrunk {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	box-shadow: 0 2px 8px rgba(26,61,102,0.12);
}

.hero-section {
	background: var(--secondary-cream);
	color: var(--primary-blue);
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active  {
	background-color: var(--secondary-gold);
	color: var(--primary-blue);
	border: none;
}
.btn-primary:hover {
	background-color: var(--primary-orange);
	color: #fff;
}
.btn-primary-contrast {
	background-color: var(--primary-orange);
	color: var(--primary-blue);
	border: none;
}
.btn-primary-contrast:hover {
	background-color: var(--primary-blue);
	color: var(--secondary-cream);
	color: #fff;
}
.btn-secondary {
	background-color: var(--secondary-blue);
	color: var(--primary-blue);
	border: var(--primary-blue);
}
.btn-secondary:hover {
	background-color: var(--primary-blue);
	color: var(--secondary-cream);
	color: #fff;
}

.btn-outline-primary {
	border-color: var(--primary-orange);
	color: var(--primary-orange);
}
.btn-outline-primary:hover {
	background: var(--primary-orange);
	color: #fff;
	border-color: var(--primary-orange);
}

.orange-divider {
	height: 5px;
	background: var(--primary-orange);
	border: none;
	margin: 1rem auto;
	margin-bottom: 3rem;
	opacity: 1;
}
.blue-divider {
	height: 5px;
	background: var(--primary-blue);
	border: none;
	margin: 1rem auto;
	opacity: 1;
}

.content-block {
	padding: 1rem;
}

.light-blue-section {
	background: var(--secondary-blue);
}
.blue-section {
	background: var(--primary-blue);
	color: var(--secondary-cream);
}

.cream-section {
	background: var(--secondary-cream);
}

.pillar-card {
	color: var(--primary-blue);
	font-weight: 500;
	font-size: larger;
	font-style: italic;
	border: 1px solid var(--primary-blue);
}

.gold-section {
	background: var(--secondary-gold);
}

.black-section {
	background: #1d1d1f;
	color: var(--secondary-cream);
}

.footer {
	color: #fff;
}

a {
	color: var(--primary-orange);
	text-decoration: none;
}
a:hover {
	color: var(--primary-blue);
	text-decoration: underline;
}

@media (max-width: 575.98px) {
	.content-block {
		margin-left: 8px;
		margin-right: 8px;
	}
}