/* General styles */
body {
  font-family: 'Nunito', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background-color: #4682B4;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 400;
}

/* Navbar */
.navbar {
  margin-bottom: 30px;
}

.navbar .navbar-brand {
  font-weight: 600;
}

.navbar-nav .nav-item .nav-link {
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #4682B4;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #005f87;
}

/* Image Gallery Section */
.image-gallery .card {
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.image-gallery .card-img-top {
  height: 250px;
  object-fit: cover;
}

.image-gallery .card-body {
  padding: 15px;
}

.image-gallery .card-text {
  color: #333;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
}

.image-gallery .row {
  margin-bottom: 30px;
}

/* About Section */
.about {
  background-color: #eaf1f8;
  padding: 4rem 0;
}

.about p {
  color: #5f6368;
  font-weight: 400;
}

/* Footer */
footer {
  background-color: #2c3e50;
}

footer p {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .image-gallery .card-img-top {
    height: 300px;
  }
}

/* Breadcrumb Styles */
.breadcrumb {
  background: none; /* Remove background if unnecessary */
  padding: 0.5rem 1rem; /* Minimal padding */
  margin-bottom: 0.5rem; /* Reduce space between breadcrumb and hero section */
  font-size: 1rem; /* Adjust font size */
}

.breadcrumb-item a {
  color: #005f87; /* Match the navbar hover color */
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Adjust Navbar Margin */
.navbar {
  margin-bottom: 10px; /* Reduce space below navbar */
}

/* Hero Section Adjustments */
.hero {
  padding: 3rem 0; 
}

.hero h1 {
  margin-top: 0; 
}
/* Remove Breadcrumb Separator (if visible) */
.breadcrumb {
  border-bottom: none; 
  box-shadow: none; 
  padding-bottom: 0; 
}

/* Remove Underline from Links */
.breadcrumb-item a {
  text-decoration: none; /* Removes underline */
}

.jensen-picture {
  height: 400px;
  object-fit: cover;
}

#accordion1 {
  --bs-accordion-active-bg: blue;
  --bs-accordion-active-color: green;
  --bs-accordion-bg: lightblue;
  --bs-accordion-color: orange;
}

#accordion2 {
  --bs-accordion-active-bg: grey;
  --bs-accordion-active-color: blue;
  --bs-accordion-bg: lightgrey;
  --bs-accordion-color: red;
}

#accordion3 {
  --bs-accordion-active-bg: pink;
  --bs-accordion-active-color: purple;
  --bs-accordion-bg: lightpink;
  --bs-accordion-color: yellow;
}

.mycardlist {
  border-radius: 3%;
  box-shadow: none;
}