
#cateringwebpage{
  background-color: #fffaf4;
}

.introCatering {
background: linear-gradient(to right, #fffaf4, #fff);
padding: 50px 20px;
text-align: center;
max-width: 1000px;
margin: 0 auto;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transform: translateY(30px);
}



.cateringfirstH1 {
    font-size: 36px;
    color: #ff6000;
    text-align: center;
    position: relative;
  }
  
  
  
  .introText {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.introText {
font-size: 1.15rem;
color: #333;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}

.cursor-image {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }



  @media (max-width: 756px){
    .cursor-image {
        width: 100px;
        height: 100px;
    }
  }
  

