* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

header {
  color: #6b3e26;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fdf7f2;
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
   max-width: 1100px;
   margin: 0 auto;
}
/* navbar */
nav a {
  color: #6b3e26;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
    border-bottom: #6b3e26 1px solid;
}
nav a:hover {
  border-top: #6b3e26 1px solid;
  padding-bottom: 3px;
}
.logo{
  width:40px
}
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* navbar */
/*hero*/
.hero {
  background: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1522&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  background-attachment: fixed;
  height: 60vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* the actual overlay */
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h2{
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  background: #6b3e26;
  color: #fff;
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}
/*hero end*/
/* menu */
.menu {
  text-align: center;
  padding: 60px 20px;
}

.menu h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin:0 auto!important;
}

.item {
  max-width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  width: 100%;
  border-radius: 8px;
}

.item h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
}

.item .price {
  color: #7b4f3c;
  font-weight: bold;
}

.btn {
  margin-top: 40px;
  display: inline-block;
  padding: 12px 30px;
  background-color: #7b4f3c;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #5e3a2c;
}
/* menu */
.menu, .about, .contact{
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}
/* about */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
}

.about-content {
  flex: 1 1 400px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4b2e2e;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a4a42;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* about */
/* contact */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #4b2e2e;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.map {
  flex: 1 1 400px;
  min-width: 300px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-details {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-details p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #5a4a42;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  background-color: #7b4f3c;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #5e3a2c;
}

footer {
  padding: 20px;
  text-align: center;
  background-color: #fdf7f2;
  font-size: 0.9rem;
  color: #7b4f3c;
}
footer a {
  color: #7b4f3c;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
/* footer */
/* rewards */
.rewards {
  background: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1522&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  background-attachment: fixed;
  height: 40vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.rewards {
  opacity: 0; /* AOS handles fading in */
  transition: opacity 0.6s ease-out;
}


.rewards::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* the actual overlay */
  z-index: 0;
}

.rewards > * {
  position: relative;
  z-index: 1;
}


.rewards h2 {
  font-size: 2rem;;
  color: #fff;

}

.rewards p {
  font-size: 1.1rem;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.rewards .btn {
  display: inline-block;
  background-color: #7b4f3c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.rewards .btn:hover {
  background-color: #5e3a2c;
}
/* rewards */
/* Responsive */
/* Mobile */
@media (max-width: 768px) {
  .menu-items {
    flex-direction: column;
  }

  nav {
    display: none;
    flex-direction: row;
    
  }

  nav a {
    margin: 10px 0;
 padding-left: 10px;
 border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  nav.active {
    display: flex;
  }
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem;
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr 1fr;
  }
  .item{margin:0 auto}
}

@media (max-width: 480px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
   .item{margin:0 auto}
}
