/* styles.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
  font-weight: 600;
  color: #333;
}

.card-title {
  font-size: 1.2rem;
  color: #0d6efd;
}

footer {
  margin-top: 50px;
}

/*.carousel-item img {
  width: 100%;
  height: 500px; /* or auto */
  /*object-fit: contain;
  background-color: #000; /* optional: fill space with color */*/
}*/

.carousel-item img {
  width: 100%;
  height: 500px; /* or auto */
  object-fit: contain;
  background-color: #000; /* optional: fill space with color */
}
*/

/*Testimonial section*/
.testimonial-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  min-height: 100px;
}

.testimonial-card h5 {
  margin-top: 15px;
  font-weight: bold;
}


/*testimonial-card*/
.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  min-height: 300px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card p {
  font-style: italic;
  color: #555;
}
.testimonial-card h5 {
  font-weight: bold;
  margin-top: 15px;
}


section.bg-dark img {
  border: 4px solid #fff;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  font-weight: bold;
  color: black !important;
}

.navbar-brand {
  font-weight: bold;
  color: black !important;
}

.owner-img {
  border-radius: 0 !important; /* removes circular style */
  width: 120px;
  height: 120px;
  object-fit: cover; /* makes sure the image covers the box */
}

/* Makes bullet points stand out */
#modalDescription strong {
  color: #0d6efd; /* Bootstrap primary blue */
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

/* Proper spacing for description text */
#modalDescription {
  line-height: 1.6;
}