/* GENERAL PAGE FIXES */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 70px; /* Ensure spacing below navbar */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000; /* Optional: match background */
}

.carousel-caption {
  top: -7% !important;
  bottom: auto !important;
  transform: translateY(0%) !important;
}

.carousel-caption p {
  font-size: 20px !important;
  line-height: 1.4;
  font-weight: 400; /* optional: to make it slightly bolder */
}


/* ======================= */
/*      NAVBAR STYLING     */
/* ======================= */

.navbar-wrapper {
  max-width: fit-content;       /* Shrinks to fit nav content */
  margin: 0 auto;               /* Center horizontally */
  background-color: #222;       /* Match navbar background */
  border-radius: 4px;           /* Optional: rounded corners */
  padding: 0 15px;              /* Optional: horizontal padding */
  border-bottom: 1px solid #444; /* Clean bottom border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Optional subtle shadow */
}

/* Main navbar bar */
.navbar {
  min-height: 40px !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  margin-bottom: 0;
  border: none !important;       /* Remove full-width bottom border */
  box-shadow: none !important;   /* Remove default Bootstrap shadow */
  background-color: transparent; /* Let .navbar-wrapper style it */
}

/* Shrink header (logo & brand area) */
.navbar-header {
  min-height: 40px !important;
  display: flex;
  align-items: center;
}

/* Logo styling */
.navbar-brand-logo img {
  height: 24px !important;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* Brand text next to logo */
.navbar-brand {
  padding: 0 !important;
  font-size: 18px;
  line-height: 40px;  /* Matches navbar height */
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
 margin-right: 20px; /This line to create spacing */
}

/* Navigation links */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
  color: #ccc !important;
}

/* Active link */
.navbar-nav > li.active > a {
  background-color: #000 !important;
  color: #fff !important;
}

/* Hover effect */
.navbar-nav > li > a:hover {
  background-color: #333 !important;
  color: #fff !important;
}

/* Dropdown caret fix (optional) */
.navbar-nav > li.dropdown > a .caret {
  margin-left: 5px;
}

/* ======================= */
/*  OPTIONAL SECTION STYLES */
/* ======================= */
.top-buffer {
  margin-top: 75px;
}

body {
  color: #ddd; /* lighter default text */
}

.lead {
  color: #ccc; /* brighter paragraphs */
}

h2, h3, h4 {
  color: #eee; /* optional: brighten headings too */
}



#aboutUs,
#passion,
#mission {
  color: rgb(102, 0, 0);
}

.back-to-top {
  display: block;
  margin-top: 30px;  /* Add more vertical space above it */
  margin-bottom: 10px;
  padding-left: 15px; /* slight indent to align with content */
  color: #99ccee;
  font-size: 0.9em;
  text-decoration: none;
}

.back-to-top:hover {
  text-decoration: underline;
}

.back-to-top {
  border-top: 1px solid #333;
  padding-top: 15px;
}


/* Footer for dark background (home page) */
.footer-dark {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
  border-top: 1px solid #444;
}

/* Anchor link styling */
.footer-dark a {
  color: #ccc;
  text-decoration: underline;
}

.footer-dark a:hover {
  color: #fff;
}

.footer-dark {
  background-color: #111; /* darker black, optional */
  color: #eee; /* light text */
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  font-size: 0.9em;
}

.footer-dark a {
  color: #99ccee; /* light blue links */
  text-decoration: none;
}

.footer-dark a:hover {
  text-decoration: underline;
}

