body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: rgb(23, 95, 23);
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: black;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #25D366;
  font-size: 14px;
  font-weight: bold;
}

.logo-img {
  height: 45px;
  width: auto;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  color: #25D366;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  opacity: 0.8;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

/* TITLE */
.title {
  text-align: center;
  margin-top: 40px;
}

/* MENU (KATI STYLE GRID) */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* CARD */
.card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* CAR IMAGES FIX */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 5px;
}

/* ABOUT + CONTACT */
.about, .contact {
  text-align: center;
  padding: 50px 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {display: flex;
    justify-content: space-between;
align-items: center;
  }

  .nav-links {
  display: flex;
   gap: 20px;
   list-style: none;
   margin: 0;
   padding: 0;
  }

  .hero h1 {
    font-size: 30px;
  }
}
.card h3 {
  color: yellow;
} 
.about h2,
.contact h2{
  color: yellow;

}
.title {
  text-align: center;
  color: yellow;
}
.flyer img{
  width: 95%;
  max-width: 600px;
  height: auto;
display: block;
margin: 20px auto;
border-radius: 15px;

}
.flyer img {
  width: 95%;
  max-width: 1100px;
  display: block;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* START STATE (hidden) */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* WHEN IT APPEARS */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}