
        

 
 
:root {
  --button-color: #89ded1; /* Navbar Background (Brown) */
  --button-color-hover: #73cbd8; /* Navbar Background (Brown) */
}
.pt-10 {
  padding-top: 100px;
 
}

.card-button {
  color: rgb(0, 0, 0);
  background-color: var(--button-color);
}
.card-button:hover {
  background-color: var(--button-color-hover);
  color: white;
}
.Oswald-font {
  font-family: 'Oswald', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: #06150b;
}
p {
  font-family: "Roboto", sans-serif;
  color: #06150b;
}

.hero-text {
  color: #fff;
  
}



/* creates the mostly transparent background for titles */
.textbackground {
  position: relative;
  
   /* To position the pseudo-element relative to the text */
   /* Optional */
}
 
.textbackground::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 172, 138, 0.25);
  z-index: -1;
}



.navbar {
  background-color: #fff;
  height: 80px;
  margin: 20px;
  border-radius: 16px;
  padding: 0.5rem;
}
.navbar-brand {
  font-weight: 500;
  color: #73cbd8;
  font-size: 24px;
  transition: 0.3s color;
}
.Logo {
  height: 50px;
  width: auto;
}
.login-button {
  background-color: #47cc6e;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s background-color;
}
.login-button:hover {
  background-color: #89ded1;
}
.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}
.navbar-toggler:focus, .btn-close:focus {
  box-shadow: none;
  outline: none;
}
.nav-link {
  color: #666777;
  font-weight: 500;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: #000;
}
/*.item:after {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background:rgba(0,0,0,0.6);
}*/

/* gallery style */
.gallery-section img {
  width: 100%; /* Ensures responsiveness */
  height: 400px;
  object-position: 40% 10%; /* Adjusted height for smaller images */
  object-fit: cover; /* Maintains aspect ratio and crops excess */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

.hero-section {
  height: 100vh;
  overflow: hidden;
}
.hero-section img {
  object-fit: cover;
  height: 100%;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-section .container {
  z-index: 2;
}
.container h1 {
  font-size: 2.5em;
}
.container h2 {
  font-size: 2.5em;
}



.hero-img {
              width: 100%;
              max-height: 450px;
              object-fit: cover;
            }         .px-150{
height: 150px;
width:100%;
              }
 
    .section {
      padding: 4rem 1rem;
    }
    .btn-outline-dark {
      padding: 0.6rem 1.5rem;
      font-weight: 500;
    }



.footer {
  background-color: #2E2E2E;
  color: #ffffff;
  padding: 20px 0;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
  padding: 0 10px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-icons a {
  font-size: 24px;
  margin: 0 10px;
}
.container-fluid {
  padding-top: 120px;
}
.email-links a {
  text-decoration: none;
  color: black;
}
.nav-size {
  width: 80%;
  margin-left: auto;
  margin-right: auto; } /* Make sure carousel height doesn't shift on text length */

.carousel-inner {
  min-height: 250px; } /* Indicator styles */

.carousel-indicators {
  margin-top: 1rem;
  position: relative;
}
.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.3;
  transition: opacity 0.3s;
  margin: 0 5px;
}
.carousel-indicators .active {
  opacity: 1; } /* Optional: extra container for spacing if needed */

.carousel-indicators-wrapper {
  margin-top: 2rem; } /* Button styles */

.button-about {
  padding: 1.3em 3em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
.button-about:hover {
  background-color: #89ded1;
  box-shadow: 0px 15px 20px rgba(181, 181, 181, 0.4);
  color: #fff;
  transform: translateY(-7px);
}
.button-about:active {
  transform: translateY(-1px);
}
.maxinfo{
margin: 0 auto;
}
@media (min-width: 992px) { 
  .maxinfo-900 {
    width: 900px;
    margin: 0 auto;

}
}
@media (min-width: 992px) {
  .maxinfo {
    width: 1000px;
  }
  

  


  .nav-link::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background-color: #47cc6e;
      visibility: hidden;
      transition: 0.3s ease-in-out;
  }
  .nav-link:hover::before, .nav-link.active::before {
      width: 100%;
      visibility: visible;
  }
}
.map-container {
  margin: 0 auto; /* centers it */
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block; } /* Bigger height on desktop */

@media (min-width: 768px) {
  .map-container iframe {
      height: 450px;
  }
  .map-container {
      width: 1200px;
      max-width: 1200px;
      /* the size you want on desktop */
  }
  .test-class {
      padding: 60px;
      padding-left: 100px;
      padding-right: 100px;
  }
}

/* Bigger height on desktop */

@media (max-width: 768px) {
  .map-container iframe {
      width: 400px;
      max-width: 400px;
  }
  .nav-size {
      width: 95%;
  }
  .hero-section {
      height: 750px;
  }
}
@media (max-width: 767.98px) {
  .mobile-img-fix {
      height: auto;
      width: 90% !important;
  }
  .test-class {
      padding: 60px;
  }
  .hero-section::before {
      height: 750px;
  }
  .card:hover {
    transform: scale(1.0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 991.98px) {
  .goat-img {
    height: 370px;
    max-width: 550px;
  }
}
.map-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9; /* This gives you a nice wide rectangle */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-box {
  padding: 2rem;
  /* max-height: 700px; */
  max-width: 700px;
  margin: 0 auto;
}

            .px-50{
height: 50px;
width:100%;
             }

  .goat-img {
  width: 100%;
  max-width: 700px;
  height: 700px;
  object-fit: cover;
  object-position: 50% 30%; /* 50% from left, 30% from top */
  display: block;
}           

.card {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  box-shadow: 0 0 0 5px #ffffff80;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.icon-color-1 {
  color: #47cc6e; /* Green */
}

.icon-color-2 {
  color: #89ded1; /* Light Teal */
}

.icon-color-3 {
  color: #73cbd8; /* Blue */
}

