/* General styles */
body {
  font-family: 'Nunito', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background-color: #333;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 400;
}

.p {
  text-align:justify;
}


/* 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: #0d6efd; /* 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 */
}


/* Carousel */
.carousel-inner img {
  width: 100%;
  height: auto;
}

/* Resize carousel images for larger screens (greater than 768px) */
@media (min-width: 768px) {
  .carousel-inner img {
    height: 50%; /* Smaller height on larger screens */
    width: 50%; /* Smaller width on larger screens */
  }

  .carousel {
      width: 75%; /* Carousel takes 3/4 of the width on larger screens */
      margin: 0 auto; /* Center the carousel */
  }
}


.jensen-picture {
  height: 400px;
  object-fit: cover;
}

#accordion1, #accordion2, #accordion3 {
  --bs-accordion-active-bg: #0d6efd;
  --bs-accordion-active-color: white;
  --bs-accordion-bg: lightblue;
  --bs-accordion-color: black;
}

.mycardlist {
  border-radius: 3%;
  box-shadow: none;
}

.line-under {
  border-bottom: 1px solid #333; 
  padding-bottom: 10px;
}

.modal-dialog {
  max-width: 50%;
  max-height: 50%;
}

.modal-body {
  overflow: auto; 
}