@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tuffy:ital,wght@0,400;0,700;1,400;1,700&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

body {
  font-family: "Playfair Display", serif;
}

body h2 {
  font-family: "Tuffy", sans-serif;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30%;
  padding: 8px 50px;
  background-color: #f8f8f8;
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav .nav-link {
  color: green;
  font-weight: 500;

  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: orange;
}



.logo img {
  height: 90px;
}

.nav-links {
  display: flex;
  gap: 20px;

}

.nav-links a {
  text-decoration: none;
  color: rgb(55, 119, 55);
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #007BFF;
}



.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}


.carousel-image {
  height: 80vh;
  object-fit: cover;
  object-position: center;
}

.carousel-item .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.carousel-item .text-white {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}


.carousel-overlay {
  position: relative;
}

#heroCarousel {
  padding-left: 0;
  padding-right: 0;
}

.carousel-overlay img {
  height: 80vh;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.carousel-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.362), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.carousel-item .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}


.about-us-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.about p {
  text-align: justify;

}

.footer-section {
  background-color: rgb(228, 251, 238);
  color: #ffffff;
}

.footer-section h5 {
  color: green;
  font-family: "Tuffy", sans-serif;
}

.links ul li a {
  color: green;
}

.links ul li a:hover {
  text-decoration: underline;
}

.footer-section a:hover {
  color: #f4b400;
  text-decoration: underline;
}

.footer-section .social-links a {
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-section .social-links a:hover {
  color: #f4b400;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-section .col-md-4 h5,
.footer-section .col-md-4 p,
.footer-section .col-md-4 i {
  color: green;
}

.footer-section .text-center p {
  color: green;
}

.footer-section .text-center p a {
  color: green;
  text-decoration: none;
}

.footer-section .text-center p a:hover {
  text-decoration: underline;
}

.footer-section hr {
  border-color: green;
  border-width: 2px;
}


.btn-success {
  background-color: green;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-bottom: 2%;
  margin-left: 5%;
}

.btn-success:hover {
  background-color: darkgreen;
}



/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: #f8f8f8;
    display: none;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }



}