html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  font-family: "Tagesschrift", system-ui;
  flex-direction: column;
  min-height: 100vh;
  }
  
  .site-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #B4182D;
    color: #fda481;
    opacity: 0;
    animation: fadeInheader .5s ease-out forwards;
    transform: translateY(-50px);
  }
  
  @keyframes fadeInheader {
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
  .brand-name {
    font-size: 30px;
  }
  
  .header-left h1 {
    margin: 0;
  }
  
  .header-right nav a {
    color: #fda481;
    margin-left: 15px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .header-right nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #37415c;
    transition: width 0.3s ease;
  }
  
  .header-right nav a:hover {
    color: #ffffff; /* optional highlight color */
  }
  
  .header-right nav a:hover::after {
    width: 100%;
  }
  
  .logo {
    height: 70px; /* or whatever height fits your design */
    width: auto;
  }
  
/* footer */
.site-footer {
    display: flex;
    align-items: center;
    padding: 15px 0;
    background: #B4182D;
    color: #fda481;
    margin-top: auto;
    justify-content: center;
    overflow-wrap: break-word;
    opacity: 0;
    animation: fadefooter 1.5s ease-out forwards;
    transform: translateY(50px);
  }
  
  @keyframes fadefooter {
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
  .page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 45px;
  }
  
  .cha {
  
    padding: 10px 40px 20px 40px;
    text-align: center;
    text-decoration:  2px ;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .footer-icons {
    margin-top: 10px;
  }
  
  .footer-icons a {
    color: rgb(0, 0, 0);
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: transform 1s ease;
    align-items: center;
  }
  
  .footer-icons a:hover {
    color: #ffffff; /* optional: gold hover */
  }
  
  .inf {
    font-family: 'Times New Roman', Times, serif;
  }

  /* main */
  
  .hero {
    background: url('https://img.freepik.com/premium-photo/abstract-blur-defocused-hotel-lobby-interior_974629-74041.jpg?w=996') center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    z-index: 1;
    width: 100%;
  }
  
  .menu-item {
    transition: transform 0.5s;
    margin-left: 5%;
    margin-right: 5%;
    height: 370px;
    }

    .menu-item1 {
      transition: transform 0.5s;
      margin-left: 5%;
      margin-right: 5%;
      height: 370px;
      }

    .boom {
      text-align: center;
    }
    
    .btn-dark {
      background-color: #B4182D;
      border: none;
      padding: 10px 20px;
      font-size: 1.1rem;
      border-radius: 50px;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgb(0, 0, 0);
    }

    .btn-dark:hover {
      background-color: #cb2601;
      border-radius: 50px;
      transform: scale(1.1);
      opacity: 1;   
      box-shadow: 0 4px 8px rgb(0, 0, 0);
  }
  
  .menu-item:hover {
    transform: scale(1.05);
  }

  .menu-item1:hover {
    transform: scale(1.05);
  }
  
  .testimonial {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.401); /* White background for the box */
    box-shadow: 0 4px 8px rgb(0, 0, 0); /* Soft shadow for a floating effect */
    backdrop-filter: blur(10px);
  }

  .bg {
    background-image: url("https://img.freepik.com/free-photo/top-half-view-black-oval-plate-dark-red-background_140725-124310.jpg?t=st=1746713598~exp=1746717198~hmac=c3a85d22bd6f1860cc73989292cc7cfefb15137bb64b596e4776c50ffa38a5ce&w=740");
    background-size: cover;
  }

  .bg2 {
    color: white;
    text-align: center;
  }

  .container {
    align-items: center;
  }

  .bg1 {
    background-image: url("https://img.freepik.com/premium-photo/close-up-food-table_1048944-4561624.jpg?w=740");
    background-size: cover;
  }

  .data {
    color: white;
  }

  .red {
    background-color: #cb2601;
  }

  .btn-light {
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 50px;
    transform: scale(1);
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
  }

  .btn-light:hover {
    background-color: #ff896f;
    border-radius: 50px;
    transform: scale(1.1);
    opacity: 1;   
    box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.wow {
  animation: zoomFadeIn 1.5s ease-out forwards;
  }

  @keyframes zoomFadeIn {
    0% {
      transform: scale(1.05);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .wow1 {
    opacity: 0;
    transform: translateY(100px);
    animation: fadeIni1 1s ease-out forwards;
    scroll-behavior: smooth;
  }

  @keyframes fadeIni1 {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .baka1 {
    text-align: center;
  }

  .baka{
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .baka:hover{
    color: white;
    animation: zoomFadeIn 0.5s ease-out forwards;
  }
    @keyframes zoomFadeIn {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(1.1);
        opacity: 1;
      }
  }

  .col-12 {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
    margin: 0;
    color: #fda481;
    background-color: #37415c;
  }
/* media queries */
@media only screen and (max-width: 600px) {
  .site-header {
    font-size: 10px;
  }

  .brand-name {
    font-size: 20px;
  }

  .logo {
    height: 50px;
  }

  .cha {
    font-size: 15px;
  }

.display-3 {
  font-size: 25px;
}

.haha {
  font-size: 15px;
}

.btn-dark {
  font-size: 12px;
}

.btn-light {
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 50px;
  transform: scale(.8);
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.btn-light:hover {
  background-color: #ff896f;
  border-radius: 50px;
  transform: scale(.9);
  opacity: 1;   
  box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.col-12 {
  display: table;
  padding-bottom: 30px;
}

}