*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  color: white;
  background-color: #faf3e0;;
}

/* *************************************************************** */
.navbar{
  position: fixed;
  font-family: fantasy;
  height: 13vh;
  width: 100vw;
  background: rgb(16,16,17);
  opacity: 0.9;
  align-items: right; 
  font-size: 18px;
  letter-spacing: 1px;
  padding-right: 60px;
}

.navbar-brand img{
  width: 75px;
  height: 75px;
  border-radius: 60px;
  margin-left: 20px;
}


/* Align menu items to the right */
 .navbar-nav {
  margin-left: auto;
}


/* Change the font color to white */
.navbar .navbar-nav .nav-link {
  color: white !important;
}

/* Hover effect with sliding background color animation */
  .navbar .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(173,3,3);
    border-radius: 5px;
    z-index: -1;
    transition: left 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::before {
  left: 0;
}


/* Highlight the active page with the background hover color */
 .navbar .navbar-nav .nav-link.active::before {
  left: 0;
}


/* Add spacing between menu items */
.navbar-nav .nav-item {
  margin-left: .5rem;
  padding-right: 30px;
}

.navbar-toggler-icon {
  background-color: white; 
}


/* ***************************************** */
.menu-section {
  margin-top: 6vh;
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #faf3e0;
  height: 180vh;
  /* font-family: Arial, sans-serif; */
}
  
.heading-cover{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Start invisible */
  animation: fadeIn 2s ease-in forwards; /* Apply the fade-in animation */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5); /* Start small */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Grow to full size */
  }
}


.menu-section h1 {
  font-family: fantasy;
  font-size: 30px;
  color: rgb(213,0,0);
  position: relative;
}

.menu-section h1::after {
  content: "";
  width: 100px;
  height: 4px;
  background: black;
  display: block;
  margin: 10px auto;
}

.menu-section p {
  /* font-family: 'Courier New', Courier, monospace; */
  width: 70%;
  font-size: 20px;
  color: black;
}

/* Menu Card Styles */
.menu-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.menu-card {
  width: 270px;
  height: 370px;
  perspective: 1000px;
  position: relative;
  border-radius: 10px;
  transition: transform 0.6s ease;
}

.menu-card-front,
.menu-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.menu-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transform: rotateY(0);
}

.menu-card-front img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.menu-card-front h3 {
  font-family: fantasy;
  font-size: 1.3em;
  color: black;
  margin: 10px 0;
  letter-spacing: 1px;
  word-spacing: 5px;
}

.menu-card-front i{
  color: black;
  font-size: 18px;
}

.details-btn {
  margin-top: auto;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 1em;
  background: #d62828;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.details-btn:hover {
  background: black;
}

.menu-card-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 15px;
  transform: rotateY(180deg);
}

.menu-card-back h3{
  font-family: fantasy;
  font-size: 20px;
  color: black;
}
.menu-card-back a{
  text-decoration: none;
  color: black;
}

.menu-card-back ul {
  list-style: image();
  font-size: .9em;
  font-weight: 700;
  text-align: left;
  color: black;
}

.menu-card-back li {
  padding: 4px 0;
}

.back-btn {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 1em;
  background: #d62828;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.back-btn:hover {
  background: black;
}

/* Flip Effect */
.menu-card.flip .menu-card-front {
  transform: rotateY(180deg);
}

.menu-card.flip .menu-card-back {
  transform: rotateY(0);
}
/* ************************************************************ */

/*TESTIMONIALS */
.testimonials {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 70vh;
    text-align: center;
    /* padding: 50px 20px; */
    align-items: center;
    justify-content: center;
}

.testimonials-container{
    position: absolute;
    display: flex;
    width: 65vw;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.testimonials img{
    width: 70%;
    height: 100%;
    opacity: 0.3;
  }

.testimonials h2 {
    font-family: fantasy;
    font-size: 30px;
    margin-bottom: 40px;
    color: rgb(213,0,0);
    position: relative;
    display: inline-block; /* Ensures underline is centered under the text */
}

.testimonials h2::after {
    content: "";
    position: absolute;
    width: 50%; /* Adjust width for desired underline length */
    height: 3px; /* Thickness of the underline */
    background-color: black;
    bottom: -15px; /* Distance from text */
    left: 25%; /* Centers the line under the text */
}
.testimonials-desc{
    /* font-family: 'Courier New', Courier, monospace; */
    text-align: center;
    width: 55%;
    font-size: 20px;
    /* color: rgb(167,167,167); */
    color: black;
    /* text-shadow: 1px 1px red; */
}

.testimonial-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    height: 200px; /* Adjust height to fit the testimonial */
}

.testimonial-card {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: #f5f5f5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 20px;
}

.testimonial-card h3 {
    font-family: fantasy;
    letter-spacing: 1px;
    color: rgb(181,28,28);
    font-weight: bold;
}

/* Active card animation */
.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* ************************************************************** */

#company{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 70vh;
    justify-content: center;
    align-items: center;
    background-color: rgb(213,0,0);
    /* background-color: blue; */
  }
  .logo-name{
    display: flex;
    width: 100vw;
    height: 20vh;
    justify-content: center;
    align-items: center;
    /* background-color: lightblue; */
  }
  .logo-name h1{
    font-family: "Cherish", cursive;
    font-weight: bolder;
    font-size: 50px;
    letter-spacing: 14px;
    word-spacing: 30px;
  }
  
  .logo-name img{
    margin-right: 40px;
    width: 140px;
    height: 140px;
    border-radius: 150px;
  }
  
  
  .socials{
    display: flex;
    width: 25vw;
    height: 10vh;
    justify-content: space-evenly;
    align-items: center;
    /* background-color: yellow; */
    
  }
  
  .socials a{
    text-decoration: none;
    color: white;
  }
  
  .socials a:hover{
    color: black;
  }
  
  .location-address{
    margin-top: 5vh;
    display: flex;
    width: 35vw;
    height: 5vh;
    justify-content:center;
    align-items: center;
    /* background-color: yellow; */
    
  }
  .location-address a{
    text-decoration: none;
    color: white;
  }
  .location-address a:hover{
    color: black;
  }
    
/* *************************************************************** */
footer{
    display: flex;
    width: 100vw;
    height: 10vh;
    background-color: black;
    color: white;  
    justify-content: right;
    align-items: center;
    font-size: 16px;
  }
  
  .foot{
    display: flex;
    width: 18vw;
    height: 10vh;
    color: white;  
    justify-content: center;
    place-items: center;
    font-size: 16px;
  }
  
  .foot a{
    color: white;
    text-decoration: none;  
  }
  .foot a:hover{
    color: red;
  }
  
  .tag{
   text-shadow:2px 2px 2px grey;
   animation:bayo 2s ease 1s infinite;
  }
  
  @keyframes bayo{
  
   0%{
      transform:rotateX(-45deg);
  }
   50%{
      transform:rotateY(45deg);
  }
  }