* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: "Martel Sans", sans-serif;
  line-height: 1.6;
  color: #333;
}

:root {
  --primary-color: #f8f6f0;
  --secondary-color: #ff9913;
  --button-first-color: rgb(255, 153, 19);
  --button-second-nav-color: #2c3e50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#header {
  background-color: var(--button-second-nav-color);
  padding: 1rem 0;
  color: aliceblue;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
#logo #tagline {
  font-size: 0.9rem;
  opacity: 0.8;
}
#link {
  display: flex;
  list-style: none;
  gap: 2rem;
}
#link a {
  color: whitesmoke;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
  border-radius: 1rem;
}

#link a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  border: none;
}
#link a:active {
  color: #ff9913;
  border-bottom: 2px solid var(--secondary-color);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.pexels.com/photos/776538/pexels-photo-776538.jpeg?_gl=1*1qv0rsy*_ga*OTczMzQ1MjQxLjE3MjE3NDI1MDE.*_ga_8JE65Q40S6*czE3NTUzMzk3MTgkbzkkZzEkdDE3NTUzMzk3ODQkajU5JGwwJGgw");
  background-position: center;
  background-size: cover;
  color: #f8f6f0;
  text-align: center;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content h2 {
  margin-bottom: 3.5rem;
  font-size: 4rem;
  letter-spacing: 2px;
  font-weight: 300;
}
.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.btn {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3 ease;
  display: inline-block;
}
.btn-primary {
  color: rgb(245, 244, 244);
  /* background-color: rgb(255, 153, 19); */
  background-color: var(--button-first-color);
  border: none;
}
.btn-primary:hover {
  background-color: rgb(230, 135, 11);
  transform: translateY(-2px);
}
.btn-secondary {
  color: #f8f6f0;
  border: 1px solid white;
  background-color: transparent;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgb(238, 229, 214);
  color: #2c3e50;
}

/* start here Menu page */

.menu-1 {
  padding: 6.9rem 0;
  background-color: #f8f6f0;
}
.section-title {
  text-align: center;
  color: black;
  font-size: 2.8rem;
}

.section-subtitle {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.menu-category {
  /* margin-bottom: 5rem; */
  margin-top: 5rem;
}
.menu-category h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 0.5rem;
}
.menu-items {
  display: grid;
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  align-items: flex-start;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-3px);
}
.menu-item-info {
  padding: 0.5rem 1rem;
}
.menu-item-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.menu-item-info p {
  font-size: 0.9rem;
}
.out {
  color: #ff9913;
  text-align: center;
  margin-top: 1.9rem;
  font-size: 1.2rem;
  font-weight: 900;
}
.price {
  font-size: 1.1rem;
  margin-left: 1rem;
  color: #ff9913;
  font-weight: bold;
}

/* About us page start here  */

.about {
  padding: 2.6rem 0;
  /* background-color: #e0ab0d; */
  /* background-color: #dfa39d; */
}
.section-title1 {
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0 3rem 0;
}
.about-content {
  margin-top: 0.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20vh;
  margin-bottom: 5rem;
}

.about-text h3 {
  margin-top: 3rem;
  font-size: 2rem;
  color: #ff9913;
  text-shadow: 0 0.1px 25px rgba(0, 0, 0, 0.5);
  border-left: 2px solid brown;
  padding-left: 5px;
}
.about-text p {
  margin-top: 1rem;
  letter-spacing: 1px;
}

.about-image img {
  object-fit: cover;
  border-radius: 15px;
  height: 500px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.9s ease;
}
.about-image img:hover {
  cursor: pointer;
  transform: translateY(-10px);
}

.boldd {
  color: crimson;
  font-size: 1.2rem;
  font-weight: 800;
}

/* footer start here  */

.contact {
  padding: 5rem 0;
  background-color: #f8f6f0;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3,
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.contact-item {
  margin-bottom: 1rem;
}
.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}
.from-group {
  margin-bottom: 1.5rem;
}

.from-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #2c3e50;
}
.from-group input,
.from-group select,
.from-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.from-group input:hover,
.from-group select:hover,
.from-group textarea:hover {
  background-color: #f8f6f0;
  color: #000000;
}
.from-group input:focus,
.from-group select:focus,
.from-group textarea:focus {
  outline: none;
  border-color: #ff9913;
}

.secondary1 {
  color: #1b1501;
  background-color: #f8f6f0;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  box-shadow: 1px 5px rgba(0, 0, 0, 0.5);
}

.secondary1:hover {
  transform: translateY(2px);
  box-shadow: none;
  background-color: #ff9913;
  color: #f8f6f0;
}

/* footer start next */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
  #navbar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  #link {
    gap: 1rem;
  }
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInleft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-content {
  animation: fadeInUp 1s ease-out;
}
.menu-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.menu-item:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-item:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-item:nth-child(3) {
  animation-delay: 0.3s;
}

.about-image {
  animation: 0.8s ease-out 0.3s both;
}

.section-title {
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* footer start here */
.footer {
  background-color: var(--button-second-nav-color);
  color: var(--primary-color);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}
.footer-content {
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  font-size: 2rem;
  color: var(--primary-color);
}
.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  gap: 20px;
  border-bottom: 2px solid var(--secondary-color);
}
.footer-section p {
  font-size: 0.9rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section a {
  color: var(--primary-color);
  text-decoration: none;
}
.footer-section {
  letter-spacing: 1px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: small;
  letter-spacing: 2px;
  font-weight: 500;
}

.footer-section img{
border: none;
border-radius: 20px;
  display: inline-block;
  transition: all 0.7s ease;
}


.footer-section img:hover {
transform: translateY(-4px);
border: #e74c3c solid;
border-radius: 20px;
}