/* Navbar */
body{
    font-family:  "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0%;
    padding: 0%;
}
.navbar{
    padding-left: 20px;
    background-color: #f7f2f2;
    font-family: "Inter",  sans-serif;
}

.navbar-toggler {
    border: none; 
    outline: none;
}
.navbar-brand{
    font-size: 30px;
    margin-left: 10%;
}
.navbar-collapse{
    padding-left: 20%;
}
.nav-btn{
    margin-left: 60%;
}
/* home section styling */
.home-container{
    background-color: #f2f2f2;
    height: 100vh;    
}
.main-text,h1{
    font-family:"Amatic SC", sans-serif; 
    margin: 0%;
    font-size: 70px;
    font-weight: 800;
    margin-top: 30%;
}
.btn-group{
    margin-left: 20%;
    width: 60%;
    padding: 10px;
}
.main-img{
    display: flex;
    height: 20rem;
    margin-left: 20%;
    margin-top: 20%;
}
.image-move-continuous {
    animation: moveTopToBottom 3s ease-in-out infinite;
}
  
@keyframes moveTopToBottom {
0% {
    transform: translateY(-10px); 
}
50% {
    transform: translateY(10px);
}
100% {
    transform: translateY(-10px); 
}
}

/* about us section starts */
.sub-heading {
    font-family:"Amatic SC", sans-serif; 
    font-size: 50px;
    font-weight: 100;
    word-spacing: 8px;
  }
.highlight{
    color: red;
}
.list-items {
    padding: 0;
    margin: 0;
  }
.list-items li {
    display: flex; 
    margin-bottom: 8px; 
    margin-left: 7%;
}
.list-items i {
    margin-right: 5px; 
    font-size: 1.2rem; 
}
.list-items span {
    line-height: 1.5;
}
.about-1{
    background-color:#f2f2f2;
    margin-bottom: 20%;
}
.about-card {
    background-color: rgb(180, 5, 5);
    margin-left: 25%;
    border: 0;
}
.card-icon{
    font-size: 2rem;
    color: red;
}
/* status section */
/* .status-img{
    position: relative;
    width: 100%;
    filter: brightness(50%);
}
.stats-item{
    position: absolute; 
    transform: translate(0%, -200%);
    color: white;
    font-size: 1.2rem; 
    font-weight: 600;
    padding: 10px;
} */
.counters{
    padding: 3em 2em;
    color: white;
    text-align: center;
}
.counters div{
    margin: 0 auto;
    gap: 4em 2em;
}
.counter{
    position: relative;
}
.counter h2{
    font-size: 1em;
    margin-top: 0.5em;
    font-weight: bold;
    color: white;
}
.counter h3{
    font-size:0.8rem ;
}
.counter:not(:last-child)::before{
    content: '';
    position: absolute;
    width: 2px;
    height: 3em;
    top: 50%;
}


/*  menu section */
.menu{
    background-color: white;
}
.menu-heading{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
}
.hover-underline-color {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: black;
}

.hover-underline-color::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: black; /* Default underline color */
    transition: background-color 0.3s ease;
}

.hover-underline-color:hover::after {
    background-color: red; /* Change underline color on hover */
}
.card-heading{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}
.card-text{
    display: flex;
    justify-content: center;
    color: rgb(184, 177, 177);
    font-size: 1.1rem;
}
.card-amount{
    display: flex;
    justify-content: center;
    font-size: 1.3rem;
    color: rgb(203, 8, 8);
    font-weight: 1000;

}
/* testimonial */
.swipper-testimonial {
    width: 100%;
    height: 100%;
  }
  .swiper-slides {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-slides img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container-testimonial,.swiper-slides,.card-test{
    background-color:#f2f2f2;
  }
  .test-img{
    margin-left: 70%;
  }
  .stars{
    color: rgb(232, 232, 13);
  }
.test-head{
    font-family:"Amatic SC", sans-serif; 
}
/* event  */
.event-slide {
    position: relative;
  }
  .swiper-img {
    width: 100%;
    filter: brightness(50%);
  }

  .text-overlay {
    position: absolute;
    justify-content:right;
    top: 70%;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 80%;
  }
  .price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 10px;
  }
  .description p {
    font-size: 1rem;
  }
  .text-overlay h2{
    font-family:"Amatic SC", sans-serif; 
  }

  /* chefs */
.team-members {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Enlarge the entire card when hovering over the image */
.member-img:hover ~ .team-members,
.team-members:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.member-img {
    position: relative;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    display: block;
}

.social {
    position: absolute;
    top: 20%;
    right: -50px; /* Initially outside */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
}

/* Show social icons when hovering */
.member-img:hover .social,
.team-members:hover .social {
    right: 10px;
    opacity: 1;
}

.social a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social a:hover {
    color: #f8b400;
}

.member-details {
    text-align: center;
    padding: 15px;
}

.member-details h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.member-details span {
    color: gray;
    font-size: 14px;
}

.member-details p {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}
/* book a table */
.book-table{
    background-color: #f2f2f2;
}
.forms input{
    padding: 10px;
    width: 25%;
    gap: 15px;
}
.form-btn{
    color: white;
    background-color: rgb(157, 39, 39);
    border: none;
    padding: 15px;
    width: 50%;
    margin-left: 20%;
}
/* gallery */
.gallery{
    background-color: #f2f2f2;
}

/* map section */ 
  .icon-container {
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }
  .contact-card{
    padding: 10px;
    background-color: white;
    box-shadow:10px 5px 10px 5px rgb(226, 225, 225);
  }
  .text-container h5{
    color: #555;
    font-weight: 600;
  }
  .text-container {
    font-size: 20px;
  }
  .contact-form{
    border:1px solid rgb(253, 252, 252);
    padding: 30px;
    box-shadow:10px 10px 10px 10px rgb(226, 225, 225);
  }
  .input1 input{
    width: 45%;
    height: 50px;
  }
  .input2 input{
    width: 90%;
    height: 50px;
  }
  .button-form button{
    width: 20%;
    height: 40%;
    color: white;
    background-color: rgb(164, 59, 59);
    border: none;
  }
  /* footer */
  .footer{
    color: white;
    background-color: black;
    padding: 20px;
  }