.logo{
  width: 12rem;
}

.cta-button{
  background-color: #BFBF5E;
  color: white;
  border: none;
  border-radius: 4px;
}

.cta-button:hover{
  background-color: black;
  color: white;
}


   /* image overlay */
   .image-container {
    position: relative;
    text-align: center;
    color: white;
}
.image-container img {
    width: 100%;
    max-height: 35rem;
    object-fit: cover;
}
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.overlay-content h1, .overlay-content h2, .overlay-content button {
    margin: 0.5rem 0;
}
@media (max-width: 767.98px) { /* Adjust the breakpoints as needed */
    .overlay-content h1 {
        font-size: 1.5rem;
    }
    .overlay-content h2 {
        font-size: 1rem;
    }
    .overlay-content button {
        margin-top: 20px;
    }
}

.shadow{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* CSS for Parallax Section */
.parallax-section {
  height: 400px; /* Adjust the height as needed */
  background-image: url('/img/pexels-heyho-6508351.jpg'); /* Replace 'your-image.jpg' with the correct path to your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Fixed background for parallax effect */
  position: relative;
  overflow: hidden;
}
.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.parallax-content h1 {
  font-size: 2.5em;
}
.parallax-content button {
 
  cursor: pointer;
}
/* Fallback for mobile devices */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}



