body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #88e55d;
  color: #c8922b;
  
}
nav a.active {
  color: #c8922b;
  font-weight: bold;
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: rgb(247, 248, 247);
  border-bottom: 1px solid #eee;
}

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

.logo {
     
    font-size: 22px;
    font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
}

nav a:hover {
  color: #c8922b;
}


.hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
}


.hero-images {
  position: absolute;
  inset: 0;
}


.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 18s infinite;
}


.hero-images img:nth-child(1) { animation-delay: 0s; }
.hero-images img:nth-child(2) { animation-delay: 6s; }
.hero-images img:nth-child(3) { animation-delay: 12s; }


.hero h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 42px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  padding: 20px 30px;
  max-width: 90%;
  margin: auto;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}


@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}


.text-section {
  padding: 60px 0;
}

footer {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #333;
}


.hero-small {
  height: 40vh;
}

.story img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}

.story h3 {
  margin-top: 40px;
  color: #c8922b;
}

.menu-section {
  padding: 60px 0;
}

.menu-section h3 {
  margin: 50px 0 20px;
  color: #c8922b;
  font-size: 24px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.menu-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item h4 {
  margin: 15px 0 5px;
}

.menu-item p {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
}

.menu-item span {
  display: block;
  margin: 15px 0 20px;
  font-weight: bold;
  color: #c8922b;
  font-size: 16px;
}

/*  CONTACT  */

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  background: #c8922b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
}

.contact-form button:hover {
  opacity: 0.9;
}


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