body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #111; /* Consistent dark background */
  color: #fff;
}

  /* Default: hide menu */
#nav-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  min-width: 180px;
}

/* Show menu when active */
#nav-menu.active {
  display: flex;
}

/* Show hamburger only on small screens */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #f4b400;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  header nav {
    display: none; /* Hide nav in header since it appears in dropdown */
  }
}



/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background-color: #1e1e1e; /* Dark header */
  color: #f4b400;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  color: #f4b400;
  text-decoration: none;
  font-size: 1rem;
}

header nav a:hover {
  text-decoration: underline;
}

.home {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 40px;
  margin: 20px 0;
  color: #f4b400;
  text-align: center;
}

#menu-heading {
  text-align: center;
  font-size: 36px;
  color: #f4b400;
  margin-bottom: 20px;
}

.menu-section {
  padding: 40px 0;
  background: transparent; /* Removed background for consistency */
}

.menu-card {
  display: flex;
  align-items: flex-start; /* Align content to the top */
  background: #1e1e1e;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  width: 80%;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.menu-card img {
  width: 50%;
  height: 100%;  /* Full height of the content */
  max-height: 300px;  /* Limits image height to avoid it being too tall */
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.menu-content {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-content h3 {
  font-size: 24px;
  color: #f4b400;
  margin-bottom: 10px;
}

.menu-content ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  color: #ddd;
}

.menu-content ul li {
  margin-bottom: 8px;
}



footer {
  background: #000;
  padding: 20px 50px;
  text-align: center;
}

footer p {
  color: #fff;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f4b400;
}

#about p, #events p {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  font-size: 18px;
  line-height: 1.6;
}

#contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 18px;
  margin-top: 20px;
}
