.hero {
    position: relative;
    height: 625px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.imageHead {
    width: 100vw;
    height: 75vh;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.starTreats{
    animation: popIn 1s ease-out forwards;
    font-family: cursive;
    font-size: 1em;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


 .cta-button {
     display: inline-block;
     padding: 15px 30px;
     background-color: #ffd700;
     color: #333;
     font-weight: bold;
     text-decoration: none;
     border-radius: 8px;
}
 .cta-button:hover {
     background-color: #e6c200;
}
/* Highlights Section */
 .highlights {
     padding: 50px;
     background: linear-gradient(to right, #ffcccc, #ffe6cc);
     text-align: center;
}
 .highlights h2 {
     font-size: 36px;
     color: #333;
     margin-bottom: 30px;
}
 .highlight-strip {
     display: flex;
     justify-content: center;
     gap: 30px;
}
 .highlight-item {
     background-color: #fff;
     padding: 20px;
     width: 250px;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: 2s;
}
 .highlight-item:hover {
    transform: scale(1.1);

 }

 .highlight-item h3 {
     font-size: 22px;
     color: #ff6f61;
     margin-bottom: 10px;
}
 .highlight-item p {
     font-size: 16px;
     color: #666;
}
/* Call to Action Section */
 .cta-section {
     padding: 40px;
     height: 58vh;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     background: url('/bakery/static/images/demoBakery2.png') no-repeat center/cover;

}
.cta-section h2{
    color: white;
    font-size: 8vh;
    animation: popIn 1s ease-out forwards;
    background-color: rgba(0, 0, 0, 0.76);
    border-radius: 10px;
    padding: 5px;

}
.typewriter-wrapper h2{
    font-family: cursive;
}



 .cta-section .cta-button {
     background-color: #ff6f61;
    /* Coral */
     color: #fff;
}
 .cta-section .cta-button:hover {
     background-color: #e65a50;
}





/* xl */
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
  }

}

/* lg */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }


}

/* md */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    .highlight-strip {
         display: flex;
         justify-content: center;
         flex-direction: column;
         align-items: center;
         gap: 30px;
     }


}





/* xs iphone*/
@media (max-width: 475px) {
    .container {
        max-width: 100%;
    }
     .highlight-strip {
         display: flex;
         justify-content: center;
         flex-direction: column;
         align-items: center;
         gap: 30px;
     }




}
