/* Custom heading */
h1 {
  font-family: "Calistoga", serif;
  font-size: 4rem;
  color: #05397d;
}

h2 {
  font-family: "Calistoga", serif;
  font-size: 2.5rem;
  color: #05397d;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
}

h4 {
  font-family: "Calistoga", serif;
  font-size: 1.875rem;
  color: #05397d;
}

h5 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
}

h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.body {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
}

.body2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}

.body3 {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.btn-custom {
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: none;
  outline: none;
  color: white;
  background: #05397d;
  border-radius: 6rem;
  padding: 0.5rem 3.5rem;
  transition: all 0.1s ease-in-out;
}

.btn-custom:hover {
  background: #032a5d;
}

/* Hero section */
.fade-in-right img {
  width: 400px;
}

.fade-in-right {
  padding-right: 80px;
}

.fade-in-bottom {
  padding: 0 0;
}

/* Fade in animation */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

.pelwattebg {
  /* border: 1px solid #f3ecd7; */
  border-radius: 1.25rem;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgb(226 242 249));
}

.pelwattebg2{
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(154,156,166,0.5));
}
/* Responsive */
@media screen and (max-width: 768px) {
  .navbar-nav {
    gap: 1.25rem;
  }

  .fade-in-right img {
    width: 200px;
  }

  .fade-in-bottom {
    padding: 40px 30px;
  }

  /* Keep Virgin Coconut Oil on one line on mobile */
  h1.display-2 {
    white-space: nowrap;
    font-size: 1.8rem !important;
  }

  /* Reduce gap between text and Explore More on mobile */
  .fade-in-bottom h5.mt-3 {
    margin-top: 0.5rem !important;
  }
}
