/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Auto Pro", sans-serif;
  color: #2c3e50;
  background-color: #FFBDE3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rotation", sans-serif;
}

/* Example usage */
.carousel {
  position: relative;
  margin-bottom: 4rem;
}

#navbar {
  background-color: rgba(33, 33, 33, 0.5);
  transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
  text-shadow: 1px 0.5px 0.5px #FFBDE3;
}

#navbar.scrolled {
  background-color: #212121;
  padding-top: 5px;
  padding-bottom: 10px;
}

.navbar-collapse.show + #navbar {
  transition: none;
}

.btn-primary {
  background-color: #BDE3FF;
  border-color: #DCDCDC;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #E3FFBD;
  border-color: #E3FFBD;
}

.btn-primary:hover {
  background-color: #E3FFBD;
  border-color: #E3FFBD;
}

.logo-image {
  border-radius: 60%;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  transition: transform 1s ease;
}

.logo-image:hover {
  transform: scale(1.1); /* Slightly enlarges the image on hover */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-icon.open {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 4l22 22M4 26L26 4'/%3E%3C/svg%3E");
}

.carousel-caption {
  background-color: rgba(255, 255, 255, 0.8); /* Light semi-transparent background */
  color: #000; /* Dark text color for better contrast */
  padding: 1.5rem 2rem; /* Add spacing so text stays inside the panel */
  border-radius: 0.5rem; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow */
  text-align: center; /* Center the text */
  max-width: 38rem; /* Keep the panel within a readable width */
  width: min(90%, 38rem);
  margin: 0 auto; /* Center the panel within the slide */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 2.5rem;
}

.carousel-caption .feature {
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  padding-inline: 0;
}

.carousel-caption h3 {
  margin-bottom: 0;
  font-weight: 600;
}

.carousel-caption p {
  margin-bottom: 0;
  line-height: 1.45;
}

.carousel-caption .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #FFBDE3; /* Primary color */
  border-color: #fff;
  color: #fff;
  padding: 0.375rem 0.75rem; /* Adjust padding for small button */
  font-size: 0.875rem; /* Adjust font size for small button */
  border-radius: 0.2rem; /* Adjust border radius for small button */
  transition: background-color 0.3s, border-color 0.3s;
  text-align: center;
}
.carousel-caption .btn:hover, .carousel-caption .btn:focus {
  background-color: rgba(255, 189, 227, 0.7); /* Darker shade for hover/focus */
  border-color: #fff;
  text-decoration: none;
}
.carousel-caption .btn svg {
  width: 1rem;
  height: 1rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
  border: 1px solid #E3FFBD; /* Border color for better visibility */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}
.carousel-indicators [data-bs-target].active {
  background-color: #FFBDE3; /* Highlight active indicator */
}
.carousel-indicators [data-bs-target]:hover, .carousel-indicators [data-bs-target]:focus {
  background-color: rgba(255, 189, 227, 0.7); /* Highlight on hover/focus */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.15); /* subtle pill behind the icon */
  border-radius: 999px;
  padding: 0;
  width: 3rem;
  height: 3rem;
  background-size: 42%;
  background-position: center;
  transition: background-color 0.3s, transform 0.3s;
}
.carousel-control-prev-icon:hover, .carousel-control-prev-icon:focus,
.carousel-control-next-icon:hover,
.carousel-control-next-icon:focus {
  background-color: #FFBDE3; /* Highlight on hover/focus */
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
  opacity: 1;
  transition: opacity 0.3s;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  opacity: 1;
}

.carousel-indicators {
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 1200px) {
  .carousel-caption {
    max-width: 34rem;
    padding: 1.25rem 1.75rem;
  }
}
@media (max-width: 990px) {
  .logo-image {
    width: 30rem;
    height: 20rem;
    border-radius: 50%; /* Keep it circular */
    margin: 0 auto; /* Center the image */
    display: block;
  }
  .logo-image:hover {
    transform: scale(1.2); /* Slightly enlarges the image on hover */
  }
  .carousel-caption {
    padding: 1.25rem; /* Adjust padding */
    max-width: min(92%, 28rem);
    font-size: 0.95rem;
    bottom: 1.75rem;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.625rem;
    height: 2.625rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 18%;
  }
}

/*# sourceMappingURL=app.output.css.map */
