body {
  background-color: #FFFCEB;
}

.navbar {
  background-color: #2D446E;
}

.navbar-toggler-icon svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
}

.navbar-brand,
.navbar-brand:focus,
.navbar-brand:hover {
  color: #FFFCEB !important;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link:focus,
.navbar-nav {
  color: #FFFCEB !important;
}

.nav-link:hover{
  background-color:#C3CFDF;
  color: #2D446E !important
}

.cart-button {
  background-color: #5CAF69 !important;
  color: #FFFCEB !important;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  display: block;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item.active .nav-link {
  text-decoration: underline; 
  font-weight: bold; 
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-image {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
}

.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
}

.btn-lets-read {
  background-color: #5CAF69;
  color: #FFFCEB;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .quote-container {
    flex-direction: column;
    align-items: center;
  }

  .quote-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.gallery-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.image-gallery {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.hidden-paragraph {
  display: none;
  text-align: justify;
  margin-top: 20px;
  padding: 20px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

  .card {
      opacity: 0;
      transition: opacity 0.5s ease;
      }

      @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
      }
