body {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
  color: #f5f5f5;
  min-height: 100vh;
  margin: 0;
}

@keyframes bgShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 15px 25px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.buttons a:hover {
  background-color: #005fa3;
}

h1 {
  font-weight: 700;
}

button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Main menu styling */

.main-menu {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 32px;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  animation: fadeSlide 1s ease-out;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-menu h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
}


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

.menu-item {
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.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; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }

.menu-btn {
  display: block;
  margin: 0 auto;
  width: 220px;
  height: 48px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #64748b, #4b5563);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
}

.menu-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.menu-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tag {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #a5b4fc;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-container {
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: right;
}

.contact-btn {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-info {
  margin-top: 8px;
  padding: 6px 10px;
  background: #1e293b;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-info.show {
  opacity: 1;
  pointer-events: auto;
}
