:root {
  --soft-yellow: #EFDE91;
  --gold-yellow: #E9CB79;
  --navy: #2A344D;
  --muted-navy: #2A344D;
   --hero-bg: #2A344D;
  --light-bg: #fffdf3;
  --dark-text: #1f2430;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  padding-top: 0;
}

/* Navbar */
.custom-navbar {
  background-color: var(--navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  color: var(--soft-yellow) !important;
  letter-spacing: 0.3px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
}

.nav-link:hover,
.nav-contact:hover {
  color: var(--soft-yellow) !important;
}

.nav-contact {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.btn-contact {
  background-color: var(--gold-yellow);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 18px;
}

.btn-contact:hover {
  background-color: var(--soft-yellow);
  color: var(--navy);
}

/* Hero */
.hero-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  background-color: var(--hero-bg);
  color: var(--white);
} 

.eyebrow {
  color: var(--gold-yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 720px;
}

.hero-text {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--gold-yellow);
  border: 2px solid var(--gold-yellow);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 26px;
}

.btn-primary-custom:hover {
  background-color: var(--soft-yellow);
  border-color: var(--soft-yellow);
  color: var(--navy);
}

.btn-outline-custom {
  border: 2px solid var(--soft-yellow);
  color: var(--soft-yellow);
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 26px;
}

.btn-outline-custom:hover {
  background-color: var(--soft-yellow);
  color: var(--navy);
}

/* Photo placeholders */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 16px;
  align-items: end;
}

.photo-box {
  border-radius: 18px;
  background: var(--gold-yellow);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  padding: 1px;
  overflow: hidden;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Compact Section */
.compact-section {
  padding: 55px 0;
}

.section-title {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-text {
  color: #555;
  line-height: 1.7;
}

.service-card {
  background-color: var(--white);
  border: 1px solid rgba(79, 81, 129, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(79, 81, 129, 0.08);
}

.service-card h3 {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  margin-bottom: 0;
}

.about-strip {
  background-color: rgba(239, 222, 145, 0.45);
  border-left: 5px solid var(--gold-yellow);
  border-radius: 14px;
  padding: 18px 20px;
  color: #444;
}

/* Contact */
.contact-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 45px 0 28px;
}

.contact-box {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.contact-box h2 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.contact-link {
  background-color: var(--gold-yellow);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  border-radius: 999px;
  padding: 11px 18px;
}

.contact-link:hover {
  background-color: var(--soft-yellow);
  color: var(--navy);
}

.footer-note {
  text-align: center;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-note small {
  color: rgba(255, 255, 255, 0.72);
}

/* Mobile */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 55px 0;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .d-flex {
    justify-content: center;
  }

  .photo-grid {
    max-width: 420px;
    margin: 18px auto 0;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 575px) {
body {
  padding-top: 0;
}

  .navbar-brand {
    font-size: 0.95rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-main,
  .photo-small {
    min-height: 180px;
  }

  .compact-section {
    padding: 42px 0;
  }

  .contact-section {
    padding-top: 38px;
  }
}