:root {
  --brand-orange: #ff7d29;
  --brand-orange-dark: #e56f24;
  --text-dark: #0b0b0b;
  --bg-light: #f8f9fa;
  --brand-dark-navy: #202b3a;
  --brand-slate-blue: #34495e;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
}

.nav-link {
  color: var(--brand-dark-navy); /* your brand navy */
  font-size: 16px !important;
}

.nav-link:hover {
  color: var(--brand-orange-dark); /* your brand orange for hover */
}

.hero {
  background: linear-gradient(
    to right,
    var(--brand-dark-navy),
    var(--brand-slate-blue)
  );
  color: white;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

h1,
h2,
h4 {
  font-weight: bold;
}

.btn-highlight {
  background-color: var(--brand-orange);
  color: white;
  border: none;
}

.btn-highlight:hover {
  background-color: #e56f24;
  color: white;
}

.microcopy {
  /* margin-top: 50px !important; */
  font-size: 0.875rem;
  color: white;
}

.navbar-brand img {
  max-height: 65px;
  margin-top: -5px;
  margin-bottom: -5px;
}

footer {
  background-color: white;
  color: #666;
}

section {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

.form-control {
  border-radius: 0.375rem;
}

.about-img {
  width: 350px;
}

.rotate-text {
  display: inline-block;
  transition: opacity 0.3s ease;
  font-weight: bold;
  color: var(--brand-orange);
}

.about-img {
  max-height: 380px; /* adjust as needed */
  object-fit: cover;
}

@media (max-width: 768px) {
  #about {
    scroll-margin-top: 80px; /* adjust as needed */
  }

  #about .text-end {
    text-align: center !important;
  }

  #about .about-img {
    max-width: 80%; /* adjust for better mobile display */
  }
}

.contact-info {
  background-color: var(--brand-dark-navy);
}
