body {
    font-family: 'Quicksand', serif;
    color:#000000;
    font-size: 18px;
    font-weight: 700;
}

/* Target a specific image, hero image on index page */
#Example .inner .item img {
    border-radius: 15px;
  }

/* Center navbar with column alignment */
.navbar {
    display: flex;
    flex-direction: column; /* Stack logo and links vertically */
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

/*Adds spacing between the logo and links*/
.navbar-brand {
    margin-bottom: 3.75rem;
}

/*Space between links*/
.navbar-nav {
    display: flex;
    gap: 150px;
}

/*all fonts color for nav bar*/
.nav-link:link {
    font-family: "Alice", serif;
    color: #0f5138;
    font-size: 35px;
}
/*visited color for nav bar*/
.nav-link:visited {
    color:#0f5138
}
 /*link hover color for nav bar*/   
.nav-link:hover {  
    color: #7e9764;
}

/*Stack links vertically on smaller screens*/
@media (max-width: 992px) {
    .navbar-nav {
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
  }

.logo {
    width: 80%;    
}

/*nav bar bg color*/
.bg-custom {
    background-color: #ffffff;        
}

/*bottom of page*/
.footer {
    background-color: #000000;
    font-family: "Quicksand", serif;
    font-weight: 300;
    color: #508b71;
}

/*footer icons*/
.bi {
    font-size: 22px;
    margin-right: 10px;
    margin-left: 10px;    
}

/*footer headers and other content*/
h1 {
    font-family: "Alice", serif;
    color: #b06b34;
    font-size: 30px;
}

h2 {
    font-family: "Alice", serif;
    color: #b06b34;
    font-size: 18px;
}

h3 {
    font-family: "Alice", serif;
    color: #b06b34;
    font-size: 50px;
}

h4 {
    font-family: "Alice", serif;
    color: #b06b34;
    font-size: 40px;
}

/*contact page, contact form*/
.contactstyle {
    font-family: 'Alice', serif;
    color:#000000;
    font-size: 20px;
    font-weight: 600;
}

.infostyle {
    font-family: 'Quicksand', serif;
    color:#000000;
}

  /* Specific styling for this image */
.infostyle img {
    border-radius: 15px; /* Apply rounding specifically to the image in the infostyle div */
}

.form-control {
    background-color: #7e9764;
}

.form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

/*contact form button*/
.btn-primary {
    font-family: "Alice", serif;
    color: #000000;
    background-color:#508b71;
}

.btn-primary:hover {
    background-color:#b06b34;
}

/* Pictures and text cards on the index page */
.card {
    border: none; /* Removes the default card border */
    border-radius: 15px; /* Consistent rounding for all cards, including images */
    box-shadow: none; /* Removes any shadows */
    overflow: hidden; /* Ensures images stay within rounded corners */
}

/* For the text content inside cards */
.card-body {
    font-family: 'Quicksand', serif;
    font-size: 20px;
    font-weight: 100;
    color: #7e9764;
    background-color: #000000;
    border-radius: 0; /* No additional rounding to avoid overlapping with parent */
    border: none; /* Removes any visible border */
    box-shadow: none; /* Removes any shadow around the body */
}

/*for text card on services page*/
.card-text{
    font-family: 'Quicksand', serif;
    font-size: 18px;
    font-weight: 100;
    color: #7e9764;
    background-color: #000000;
}

/*rounding image in contact page*/
.custom-rounded {
    border-radius: 15px;
  }

/*image carousel styles in about page*/  
.rounded-15 {
    border-radius: 15px;
    overflow: hidden; 
  }

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
  }
.carousel-inner {
    height: 685px; /* Match the image height */
  }
  
.carousel-item img {
    width: 100%; /* Ensure images fill the width */
    height: auto; /* Maintain aspect ratio */
  }

  /*carousel arrow buttons*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000000; /* Change to your desired color */
    border-radius: 50%; /* Optional: make the icon background circular */
  }
  
  /* Optional: Hover effect for better user experience */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #b06b34; /* Darker color on hover */
  }
  
/* Home page hero image: smaller, and always show the full photo (no cropping). */
.home-hero-img {
  width: 100%;
  height: clamp(240px, 45vh, 360px);
  object-fit: contain;
  background: #ffffff;
}
