* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/**hero section**/
.hero-section {
  position: relative;
  height: calc(100vh - 100px);
  margin-top: 100px;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-food {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-image: url("hero_food.jpg"); */
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("hero_food.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* filter: brightness(50%); */
}
.hero-content {
  background: rgba(0, 0, 0, 0.25);
  padding: 30px 50px;
  border-radius: 15px;
  position: absolute;
  animation: fadeSlide 1.2s ease;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  color: white;
  font-size: 2.6rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-shadow: 2px 2px 3px black;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero-content h2 {
  color: white;
  font-size: 1.4rem;
  font-family: cursive;
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 3px black;
  opacity: 0.9;
}
.hero-content a {
  color: white;
  font-size: 1.1rem;
  padding: 12px 35px;
  border: none;
  background: linear-gradient(45deg, rgb(209, 73, 49), rgb(255, 145, 77));
  display: inline-block;
  margin-top: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.hero-content a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 2px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/**header section begins**/
.navbar {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100px;
  line-height: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: rgb(0, 0, 0, 0.6);
}
.logo {
  background-image: url("logo.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100%;
}
.nav-logo {
  height: 100px;
  width: 100px;
}
.navbar ul {
  display: flex;
  padding: 3px 15px 3px 15px;
  margin-left: 10px;
}
.navbar ul a {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 15px 3px 15px;
  text-decoration: none;
  color: beige;
  font-size: 1.2rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.phone-no a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 25px;
  background: linear-gradient(45deg, rgb(209, 73, 49), rgb(255, 145, 77));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  
}
.phone-no a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgb(215, 104, 64);
  background-color: rgb(171, 131, 23);
  cursor: pointer;
}
.navbar ul a:hover {
  border: 1px solid rgb(73, 49, 5);
  background-color: rgb(182, 155, 4);
  cursor: pointer;
}
/** Menu design**/
.menu {
  padding: 25px 0 25px 0;
}
.section {
  padding: 25px 0 25px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.menu-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.menu-col {
  box-shadow: 2px 2px 2px #bbb;
  border: 1px solid #d8cfc4;
  background-color: #ddd1c0;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 10px;
  padding: 10px;
  flex: 1;
}
.menu-col h2 {
  background-color: rgb(209, 73, 49);
  text-align: center;
  padding: 5px 20px;
  font-family: cursive;
  /* letter-spacing: 2px; */
  border-bottom: 3px solid rgb(209, 73, 49);
  /* display: inline-block; */
  margin: 0 auto 20px auto;
  width: fit-content;
  border-radius: 5px;
}
.box {
  animation: fadeIn 0.6s ease-in;
  background-color: #dbd7d2;
  padding: 15px;
  border-radius: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.image {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid orange;
}
.image {
  overflow: hidden;
}

.image img {
  transition: transform 0.3s ease;
}

.box:hover .image img {
  transform: scale(1.1);
}
.box h4 {
  transition: color 0.3s ease;
}

.box:hover h4 {
  color: rgb(209, 73, 49);
}
.image img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 5px;
  transition: all 0.3s ease;
}
.box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
  background-color: #fff7f0;
  border-radius: 10px;
}

/** About Section begin**/
.about {
  padding: 25px 0 25px 0;
}
.about-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 100px 0 100px;
}
.about-col {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.about_img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: auto;
  border: 4px solid #d14531;
  padding: 5px;
}
.about_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: fill;
}
.about-col h2 {
  text-align: center;
  font-family: cursive;
  margin-bottom: 20px;
  color: #d14531;
  font-size: 28px;
}
.about-col p {
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  text-align: justify;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 10px;
  color: #333;
}
.section {
  letter-spacing: 2px;
  color: #222;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin: 0 auto 30px auto;
}
.section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background-color: #d14531;
  transition: width 0.4s ease;
}
.section:hover::after {
  width: 100%;
}
/* CONTACT SECTION */
.contact-section {
  padding: 80px 10%;
  background: linear-gradient(to right, #f5efe6, #fffaf3);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  letter-spacing: 2px;
  color: #333;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-info h2 {
  margin-bottom: 20px;
  color: rgb(209, 73, 49);
}

.contact-info p {
  margin: 15px 0;
  font-size: 1rem;
  color: #444;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.3);
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: rgb(209, 73, 49);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(209, 73, 49);
}

/* BUTTON */
.contact-form button {
  background-color: rgb(209, 73, 49);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: rgb(209, 73, 49);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.section-title:hover::after {
  width: 80%;
}
/* Center the title */
.section-title {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 12px;
}

/* Hidden line */
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: rgb(209, 73, 49);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Show line on hover */
.section-title:hover::after {
  width: 100%;
}

.section-title:hover::after {
  box-shadow: 0 0 12px rgba(209, 73, 49, 0.8);
}
.section-title {
  padding-bottom: 16px;
}

.contact-form button:hover {
  background-color: #b33b2a;
  transform: translateY(-3px);
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff7a18;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #cccccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff7a18;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff7a18;
  transform: scale(1.2);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaaaaa;
}

/* .mobile-menu {
  display: none;
  height: 40px;
  line-height: 40px;
  background: magenta;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.mobile-menu ul {
  display: flex;
  justify-content: center;
}
.mobile-menu ul a {
  padding: 0 5px 0 5px;
  display: inline-block;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.mobile-menu ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3 ease;
}
.hero {
  padding-top: 150px;
}

@media screen and (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  .navbar ul {
    display: none;
  }
} */
