/* General typography */
body {
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.bg-navy {
  background-color: #0a1a33 !important;
}

.navbar-brand, .nav-link {
  font-weight: bold;
}

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 51, 0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Section styling */
.section-navy {
  background-color: #0a1a33;
  color: #ffffff;
  position: relative;
  padding: 5rem 0;
}

.section-navy h2,
.section-navy h5,
.section-navy p {
  color: #ffffff;
}

/* Service cards */
.card {
  background-color: #1a2f55;
  color: #ffffff;
  border: none;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card .card-title {
  color: #ffffff;
  font-weight: bold;
}

.card .card-text {
  color: #e0e0e0;
}

/* Section separators */
.section-navy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.no-separator::after {
  display: none;
}

/* Contact links */
.contact-link {
  color: #4da3ff;
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #79bbff;
}

/* Contact form styling */
.contact-form {
  background-color: rgba(26, 47, 85, 0.95); /* semi-transparent navy */
  color: #ffffff;
}

.contact-form label {
  font-weight: bold;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  background-color: #0a1a33;
  border: 1px solid #444;
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbbbbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4da3ff;
  box-shadow: 0 0 5px rgba(77, 163, 255, 0.5);
}

.contact-form button {
  background-color: #4da3ff;
  color: #ffffff;
  border: none;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #79bbff;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
