/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  height: 290em;
}

/* Header Styles */
.header {
  background-color: #ffffff;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo-container {
  flex: 1;
  text-align: left;
}

.logo {
  height: 100px; 
  max-width: 100%; 
  object-fit: contain; 
}

.nav-container {
  flex: 1;
  text-align: right;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-list a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.nav-list a:hover {
  color: #E70870;
}

/* UI verse button */
.order-online{
  --color: #E70870;
  font-family: inherit;
  display: inline-block;
  width: 6em;
  height: 2.6em;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  margin: 20px;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
}

.order-online::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}

.order-online:hover {
  color: white;
}

.order-online:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.order-online:hover::before {
  top: -30px;
  left: -30px;
}


/* Responsive Layouts with Media Queries */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center; 
    gap: 1rem;
    padding: 1rem; 
  }
  .header{
    position: relative;
  } 
  
  body{
    height: 560em;
  }
  
  .nav-container {
    order: 2; 
    text-align: center; 
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem; 
  }

  .order-online {
    order: 3; 
  }
}


/* Image Bar */
.carousel {
  position: relative;
  width: 100%;
  height: 600px; 
  overflow: hidden;
}

.carousel-slides {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-slide {
  flex: 1; 
  opacity: 0; 
  transition: opacity 1.5s ease-in-out; 
  position: absolute; 
  top: 0;
  left: 0;
}

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

/* Display the first slide initially */
.carousel-slide:first-child {
  opacity: 1; 
}

#menu1, #chefs ,#aboutus, #location, #RateUs{
  color: #E70870;
  position: relative;
  text-align: center;
  font-size: 3em;
}

@media (max-width: 480px) {
  .carousel {
    height: 200px; 
  }

  .layer {
    font-size: 5vw; 
  }
}


.layer {
  position: absolute;
  z-index: 1;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4vw; 
  padding: 0 20px; 
  color: #E70870; 
  background: rgba(0, 0, 0, 0.5); 
}



/* MENU */

.menu-container {
  padding: 20px;
  background: #f8f8f8;
}

/* Grid layout for menu items */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  column-gap: 16px; 
  row-gap: 40px; 
}


.menu-item:hover img{
  opacity: 0.5;
}

.menu-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  text-align: center; 
  padding: 20px; 
}

.menu-item img {
  width: 100%;
  height: 150px;
  object-fit: cover; 
  border-radius: 8px; 
}

.menu-title {
  font-weight: 600;
  font-size: 1.25em;
  color: #333; 
  margin-top: 10px; 
}

.menu-description {
  font-size: 1em; 
  color: #666;
  margin-top: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr; 
  }
}

/* CHEF */
.chef-container {
  padding: 20px;
  background: #f8f8f8;
}

/* Grid layout for menu items */
.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  column-gap: 16px; 
  row-gap: 40px; 
}


.chef-item:hover img{
  opacity: 0.5;
}

.chef-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center; 
  padding: 20px;
}

.chef-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px; 
}

.chef-title {
  font-weight: 600;
  font-size: 1.25em;
  color: #333; 
  margin-top: 10px; 
}

.chef-description {
  font-size: 1em; 
  color: #666;
  margin-top: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .chef-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .chef-grid {
    grid-template-columns: 1fr; 
  }
}


/* ABOUT US */



/* Container styling */
.about-us-content {
  background-color: #f9f9f9; 
  padding: 40px; 
  margin: 40px auto; 
  max-width: 800px; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1); 
  text-align: justify;
  font-family: 'Poppins', sans-serif;
}

/* Paragraph styling */
.about-us-content p {
  font-family: 'Poppins', sans-serif; 
  font-size: 18px; 
  line-height: 1.6; 
  color: #333; 
  margin-bottom: 20px; 
}

/* Title styling */
.about-us-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; 
  color: #333; 
  text-align: center; 
  margin-bottom: 20px; 
}




/* RATE US */
.rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.3rem;
  --stroke: #666;
  --fill: #ffc73a;
   justify-content: center;
}

.rating input {
  appearance: unset;
}

.rating label {
  cursor: pointer;
}

.rating svg {
  width: 2rem;
  height: 2rem;
  overflow: visible;
  fill: transparent;
  stroke: var(--stroke);
  stroke-linejoin: bevel;
  stroke-dasharray: 12;
  animation: idle 4s linear infinite;
  transition: stroke 0.2s, fill 0.5s;
}

@keyframes idle {
  from {
    stroke-dashoffset: 24;
  }
}

.rating label:hover svg {
  stroke: var(--fill);
}

.rating input:checked ~ label svg {
  transition: 0s;
  animation: idle 4s linear infinite, yippee 0.75s backwards;
  fill: var(--fill);
  stroke: var(--fill);
  stroke-opacity: 0;
  stroke-dasharray: 0;
  stroke-linejoin: miter;
  stroke-width: 8px;
}

@keyframes yippee {
  0% {
    transform: scale(1);
    fill: var(--fill);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--stroke);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30% {
    transform: scale(0);
    fill: var(--fill);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--stroke);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30.1% {
    stroke: var(--fill);
    stroke-dasharray: 0;
    stroke-linejoin: miter;
    stroke-width: 8px;
  }

  60% {
    transform: scale(1.2);
    fill: var(--fill);
  }
}

/* FEEDBACk */


#feedback-form{
  text-align: center;
  padding-top: 2em;
}

#feedback{
font-size: 1.5em;
margin-top: 0.5em;
width: 80%;
height: 200px;
max-width: 400px;
max-height: 300px;
resize: none;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adding shadow */
}

@media (max-width: 768px) {
#feedback {
  width: 90%;
  height: 150px;
  max-width: none;
  max-height: none;
}
}

#buttons{
background-color: #E70870;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
font-size: 1em;
border-radius: 5px;
font-weight: bold;
height: 2.5em;
text-align: center;
font-family: 'Poppins', sans-serif;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adding shadow */
}

#label1{
font-size: 1.5em;
font-family: 'Poppins', sans-serif;
}




/* FOOTER */
/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0; /* Adjusted padding */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Centered vertically */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info, .social-media {
  flex: 1;
}

.contact-info h3, .social-media h3 {
  font-size: 1em; /* Adjusted font size */
  margin-bottom: 0.5rem; /* Adjusted margin */
}

.contact-info p {
  margin-bottom: 0.25rem; /* Adjusted margin */
}

.social-media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.social-media-list li {
  width: 30px; /* Adjusted width */
  height: 30px; /* Adjusted height */
}

.social-media-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer {
    padding-top: 0.1em;
    padding-bottom: 0.1em; /* Decreased padding for smaller screens */
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem; /* Adjusted gap */
  }

  .contact-info, .social-media {
    text-align: center;
  }

  .contact-info h3, .social-media h3 {
    font-size: 0.8em; /* Decreased font size for smaller screens */
  }
}


/* UIVERSE.io - for social media logo */

.socials-container {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 20px 40px;
  background-color: #333333;
}
.social {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(194, 194, 194);
}
.twitter:hover {
  background: linear-gradient(45deg, #66757f, #00acee, #36daff, #dbedff);
}
.facebook:hover {
  background: linear-gradient(45deg, #134ac0, #316ff6, #78a3ff);
}
.google-plus:hover {
  background: linear-gradient(45deg, #872419, #db4a39, #ff7061);
}
.instagram:hover {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.social svg {
  fill: white;
  height: 20px;
}
