* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fff9f0, #fefce8);
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

h1 {
  color: #f7931e; /* orange */
  font-size: 2.5em;
}

header p {
  color: #4CAF50; /* green */
  font-style: italic;
}

/* Menu Section */
.menu {
  background-color: #fff7ec;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #f9d89c;
  max-width: 600px;
  margin: 0 auto;
}

.menu h2 {
  text-align: center;
  color: #f7931e;
  margin-bottom: 20px;
}

.item {
  margin-bottom: 20px;
}

.item h3 {
  color: #4CAF50;
  margin-bottom: 10px;
}

ul {
  list-style-type: circle;
  padding-left: 20px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #999;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- APPLY ANIMATIONS --- */

.logo {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  animation: fadeInScale 1s ease-out;
}

h1 {
  color: #f7931e;
  font-size: 2.5em;
  animation: slideInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

header p {
  color: #4CAF50;
  font-style: italic;
  animation: slideInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.menu .item {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s ease-out forwards;
}

.menu .item:nth-child(1) {
  animation-delay: 0.8s;
}

.menu .item:nth-child(2) {
  animation-delay: 1.2s;
}

/* Hover Effect */
.menu .item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.social-icon {
  margin: 0 10px;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: orange;
}
.footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.footer p {
  margin-bottom: 10px;
  font-weight: bold;
}

.social-icon {
  margin: 0 10px;
  font-size: 22px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: orange;
}
.menu-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}