@import url(https://fonts.bunny.net/css?family=almarai:300,400,700,800);
body {
  margin: 0;
  padding: 0;
  font-family: "Almarai", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

h1 {
  text-transform: uppercase;
  font-weight: 800;
}

a {
  color: black;
  font-weight: 700;
  text-decoration: none;
}

.text-orange {
  color: #C78B2B;
}

.text-green {
  color: #5CCC68;
}

.hero-page {
  position: relative;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero-page::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero .hero-content .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .hero-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #5CCC68;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.hero .hero-content .btn:hover {
  background-color: rgb(58.3878504673, 186.6121495327, 72.1261682243);
}

.horaires {
  margin-top: -100px;
  padding: 2rem 0;
  margin-bottom: 100px;
}
.horaires .border-right {
  border-right: 2px solid rgb(0, 0, 0);
}
.horaires .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.horaires .card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.horaires .card .card-title {
  font-size: 1.8rem;
  margin-bottom: 0rem;
  font-weight: 700;
}
.horaires .card .date-range {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: gray;
}
.horaires .card .schedule .day {
  margin-bottom: 1rem;
}
.horaires .card .schedule .day strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.horaires .card .schedule .day .note {
  font-size: 0.9rem;
}
.horaires .card .schedule .day .icon-location {
  margin-right: 0.5rem;
  color: #4894e6;
}
.horaires .card .note-below {
  font-size: 0.9rem;
  color: gray;
}

.navbar .navbar-brand img {
  width: 150px;
  transition: all 0.3s ease;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-left: 20px;
}
.navbar .nav-link:hover {
  color: white;
}

.is-scrolled .navbar {
  background-color: rgba(0, 0, 0, 0.85);
}
.is-scrolled .navbar .navbar-brand img {
  width: 70px;
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .hero .hero-content .hero-title {
    font-size: 2rem;
  }
  .horaires .border-right {
    border-right: 2px solid rgba(0, 0, 0, 0);
  }
  .horaires .card {
    padding: 1.5rem;
  }
  .horaires .card .card-title {
    font-size: 1.5rem;
  }
}

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