
.nav-link,
.navbar-brand,
.btn,
li {
  font-family: 'Cormorant', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(137, 118, 75);
}

/* ================= Navbar Styles ================= */

/* Navbar Background */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95); /* semi-transparent white */
  backdrop-filter: blur(8px); /* glass effect */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 12px 0;
}

/* Logo */
.navbar-brand img {
  height: 90px;
  transition: transform 0.3s;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Navbar Links */
.nav-link {
  font-weight: 400;          
  margin: 0 8px;
  position: relative;
  transition: color 0.3s;
  font-size: 20px;
}
.nav-link:hover,
.nav-link.active {
  color: #4b532b !important;
}
.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #4b532b;
  transition: width 0.3s;
  margin: auto;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  font-family: 'Cormorant', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: rgb(137, 118, 75);
}

/* Mobile Menu */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(40%);
}

/* ===== Hero Section ===== */
.about-page .hero-section {
  background-image: url('../images/back-2.webp') !important;
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px !important;
}


.about-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* overlay for readability */
  z-index: 1;
}

.about-page .hero-section h1 {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  color: #fff;
  position: relative; /* stays above overlay */
  z-index: 2;
  padding: 0 15px; /* some side padding for small screens */
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .about-page .hero-section {
    height: 500px; /* shorter hero */
  }
  .about-page .hero-section h1 {
    font-size: 42px; /* smaller font */
  }
}

@media (max-width: 575px) {
  .about-page .hero-section {
    height: 400px; /* even shorter */
  }
  .about-page .hero-section h1 {
    font-size: 32px; /* mobile-friendly font */
  }
}


/* Footer Section with Overlay */
.footer-section {
  position: relative; /* needed for overlay */
  background-color: #8f9b60;
  color: #fff;
  padding: 60px 0;
}

/* Overlay */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black overlay */
  z-index: 1;
}

/* Footer Content */
.footer-section * {
  position: relative;
  z-index: 2; /* bring text above overlay */
}

/* Footer Headings */
.footer-heading {
  font-family: 'Cormorant', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
  font-size: 25px;
}

/* Footer Links */
.footer-links li a {
  color: #fff; /* make links white for better readability */
  font-family: 'Cormorant', sans-serif;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffcc00;
}

.footer-links li {
  font-family: 'Cormorant', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #fff;
}

/* Optional: icons white too */
.footer-links li i {
  color: #fff;
  margin-right: 8px; /* keeps spacing consistent */
}
/* Social Icons */
.social-icons a {
  color: #fff; /* white for better contrast */
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Divider */
.footer-divider {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

/* Footer Text */
.footer-text p {
  margin: 0;
  color: #fff;
  font-family: 'Cormorant', sans-serif;
  font-size: 14px;
}

/* ================= Responsive ================= */
@media (max-width: 767px) {
  .footer-section,
  .navbar-collapse {
    text-align: center;
  }
}
