*/
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.navbar {
  background-color: #a1f1f4 !important; /* Overwrites Bootstrap's default */
}
.dropdown-menu {
  background-color: #a1f1f4 !important;
  border: none;
}

.navbar-brand {
  font-weight: bold;
}
.custom-navbar {
  background-color: #a1f1f4 !important; /* Navbar background */
}

/* Dropdown menu background to match the navbar color */
.custom-navbar .dropdown-menu {
  background-color: #a1f1f4 !important;
 /* border: none;  Remove border if you want it seamless */
}

/* Optional: Adjust text color on dropdown items */
.custom-navbar .dropdown-item {
  color: #000 !important; /* Black text for contrast */
}

/* Hover effect on dropdown items */
.custom-navbar .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.1); /* Light hover overlay, or set to #a1f1f4 if you want it uniform */
  color: #000 !important;
}

/* If you'd like the dropdown to open on hover (not recommended for mobile),
   you can do so with something like:

.custom-navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
*/

.hero {
  background: url("/images/herobg2.png") no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
}

.content-section {
  padding: 3rem 0;
}

.footer {
  background-color: #f8f9fa;
  text-align: center;
  padding: 1rem;
}
/* Outer container: No background here. Just a wrapper. */
.bottom-section {
  /* Optional sizing, etc. */
  margin: 0; 
  padding: 0; 
  /* You may add min-height if you want a minimum space. */
}

/* Inner container: This is where the background + text spacing happens. */
.bottom-section .bg-box {
  /* 1) Margin: 20px => Keeps the background box 20px from all edges of .bottom-section */
  margin: 20px;
  font-family: Russo one;
  font-size: 1.25rem;


  /* 2) Background image + cover so it fills the .bg-box area */
  background: url("/images/bg2.png") no-repeat center center;
  background-size: cover;

  /* 3) Padding: 20px => Your text is also 20px away from the edges inside the background */
  padding: 20px;

  /* 4) Optional: If the background is dark, make text white for legibility */
  color: #623d26;
}
.footer {
  background-color: #a1f1f4;
  /* Optional: ensure footer text is readable */
  color: #000; /* or whatever contrasting color you prefer */
}
/* End of style.css */