html {
  scroll-behavior: smooth;
}

body{
    background-color: rgb(249, 216, 184);
}

#logo_01{
  height: 4.8rem;
}

#logo_02{
  height: 6rem;
}
#logo_03{
  height: 5rem;
}
#hero_section{
    height: 100vh;
    width: 100%;
    margin-top: 50px;
}


.curved-section {
    position: relative;
    /* padding: -200px -10px;  */
  }

  .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .wave-bottom svg {
    display: block;
    width: 100%;
    height: 300px;
  }

  #bottom-navbar{
    z-index: 999;
  }

  .button_01{
    cursor: pointer;
  }

 /* about us */
 .clip-corner-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* gallery */

  .carousel-item {
    flex-shrink: 0;
    transition: all 0.5s;
    width: 160px;
    height: 160px;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0.5;
    transform: scale(0.9);
  }

  .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-item.active {
    transform: scale(1.3);
    opacity: 1;
    z-index: 10;
  }

  /* contact us */
  @keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes floatMedium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  @keyframes floatFast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  .animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
  }
  .animate-float-medium {
    animation: floatMedium 4s ease-in-out infinite;
  }
  .animate-float-fast {
    animation: floatFast 3s ease-in-out infinite;
  }
  
  /* <!-- Tailwind Clip Corner Styling --> */

  .clip-corner {
    clip-path: polygon(100% 0, 100% 100%, 0 0);
  }
  .carousel-item.active {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  