:root {
  --green: #2f5233;
  --gold: #d9a547;
  --cream: #f7f4ed;
  --blue: #1d3557;
}
body {
  background-color: var(--cream);
  color: var(--blue);
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #fdfdfb;
  color: #222;
  padding-top: 72px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: #123456;
}
.custom-navbar {
  background-color: #fdfdfb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
  z-index: 999;
}

.custom-navbar .nav-link {
  font-weight: 500;
  margin-left: 1rem;
  color: #123456;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #9e2a2b;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .custom-navbar .nav-link {
    margin-left: 0;
    padding: 0.5rem 1rem;
  }
}

.hero-section {
  background: linear-gradient(
      rgba(240, 234, 225, 0.8),
      rgba(240, 234, 225, 0.8)
    ),
    url("assets/img/hero.jpg") center center / cover no-repeat;
  height: 100vh;
  padding-top: 100px;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #9e2a2b;
}

.btn-primary {
  background-color: #9e2a2b;
  border-color: #9e2a2b;
}

.btn-primary:hover {
  background-color: #7b1c1e;
  border-color: #7b1c1e;
}
.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  color: #444;
}

.cta-section {
  background-color: #123456;
}
.bi {
  color: #9e2a2b;
}
.pricing-card {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 1rem;
}

.rounded-circle {
  object-fit: cover;
  border: 3px solid #e6e6e6;
  transition: transform 0.3s ease;
}

.rounded-circle:hover {
  transform: scale(1.05);
}

.equilibre-section {
  background-color: #f4eada;
  background-image: linear-gradient(to right, #f4eada, #fdfdfb);
}
.equilibre-section h2 {
  color: #123456;
}
.equilibre-section p {
  color: #444;
}
.hero-about {
  height: 80vh;
  background: linear-gradient(rgba(18, 52, 86, 0.7), rgba(18, 52, 86, 0.7)),
    url("assets/img/hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-about h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #fff;
}

.footer-section a {
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #e6b800;
}

.social-icons i {
  font-size: 1.2rem;
}
