h1 {
  font-size: 50px;
}

nav {
    background-color: #4E4C4C;
}

h1, h2, h3, h4 {
  font-family: "Libre Baskerville", serif;
}

h2 {
  font-size: 50px

}

h3 {
  font-size: 30px
    
}

 

.nav-item a {
  text-decoration: none;
  border: none;
  background: none;
}

.nav-item a::before {
  margin-left: auto;
}

.nav-item a::after, .nav-item a::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #DE404D;
  display: block;
  transition: 0.5s;
}

.nav-item a:hover::after, .nav-item a:hover::before {
  width: 100%;
}

/* END OF NAVBAR CSS */

/* START of Homepage CSS */

.carousel-item {
  transition: transform 2s ease, opacity 2s ease;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: scale(1.05);
  opacity: 0.5;
}

/* END of Homepage CSS */

/* Start of Cake Gallery CSS */

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-title {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
}


/* Start of Contact Form CSS */

.emailAddress a {
  text-decoration: none;
}

/*START of About us CSS  */

.parallelogram {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 0;
  transform: translateY(-50%) skewY(-9deg); /* move up 50% of its height, and skew */
  width: 100%;
  height: 600px; /* height of the parallelogram */
  background: #DE404D; /* your red color */
  z-index: -1; /* place behind text */
}

/* Menu Section */

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 4rem 0 2rem;
  position: relative;
}
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #000;
}
.section-title::before {
  left: 0;
}
.section-title::after {
  right: 0;
}
.view-button {
  background-color: #DE404D;
  border: none;
  color: #fff;
  margin-top: 1rem;
}
.view-button:hover {
  background-color: #DE404D;
}
.order-section {
  text-align: center;
  margin-top: 5rem;
}
.order-section img {
  width: 200px;
  margin-top: 1rem;
}
.item-section {
  margin-bottom: 5rem;
}
.item-section img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

/* Pastry Section */

.pastry-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px; /* optional: gives slightly rounded corners */
}

.pastry-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.pastry-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

.pastry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.pastry-wrapper:hover .pastry-img {
  opacity: 0.5;
}

.pastry-wrapper:hover .pastry-overlay {
  opacity: 1;
}

.pastry-name {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

/* West African Cuisine START */

.wacTitle h1 {
  font-size: 3rem;
  text-align: center;
}

/* Add max-width and center the section */
.container.wac-section {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
}

.wac-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* Decorative Red Circles */
.circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: #DE404D;
  z-index: -1;
}

.circle-1 {
  top: 10px;
  left: -60px;
}
.circle-2 {
  top: 250px;
  right: -60px;
}
.circle-3 {
  top: 550px;
  left: -60px;
}
.circle-4 {
  top: 850px;
  right: -60px;
}

/* Price Tag */
.price-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: #fff;
  color: #000;
  padding: 3px 8px;
  font-size: 0.9rem;
  border-radius: 5px;
  font-weight: bold;
}

.bg-wac {
  background-color: #DE404D;
}

/* Order Section START */

.fixed-btn{
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.product-image {
  height: 500px; 
  object-fit: cover;
}




/* Footer section */

footer img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

footer a:hover {
  color: #DE404D !important;
  transition: 0.4s ease;
}

footer a {
  color: white;
  transition: 0.4s ease;
}


.fa-brands,
.fa-solid {
  font-size: 25px;
  
}


  .btn:hover{
    color: black;
  }

  /* Media Queries */

  @media (max-width: 768px) {
  .circle {
    width: 200px;
    height: 200px;
  }

  .circle-1 {
    top: 10px;
    left: -30px;
  }

  .circle-2 {
    top: 300px;
    right: -30px;
  }

  .circle-3 {
    top: 400px;
    left: -30px;
  }

  .circle-4 {
    top: 700px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .section-title::before,
  .section-title::after {
    width: 30%;
  }
}



  
  