/* style.css */

/* Apply a gray background to the whole page */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #808080; /* medium gray */
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* dark overlay */
  z-index: -1;
}

/* Headings */
h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* Sections */
section {
  padding: 80px 0;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar-toggler {
  color: white !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #f0f0f0 !important;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1); /* Makes the icon white */
}

/* Footer */
footer {
  background-color: #222;
  color: white;
}
/* Make website link white */
.contact-info a {
  color: white !important;   /* force white text */
  text-decoration: underline; /* keep underline if you like */
}

.quote-carousel {
  position: relative;
  min-height: 100px; /* ensures enough space for quotes */
}

.quote-carousel .carousel-indicators {
  position: absolute;
  bottom: -40px; /* fixed distance below quotes */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.quote-wrapper {
  min-height: 120px; /* ensures consistent quote block height */
  display: flex;
  align-items: center;
  justify-content: center;
}
#quotes {
  margin-top: 100px; /* adjust value as needed */
  margin-bottom: 200px; /* adjust value as needed */
}
#contact {
  margin-top: 100px; /* adjust value as needed */
  margin-bottom: 200px; /* adjust value as needed */

}

