/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Navbar Styling */
.custom-navbar {
  background: #040404;
  padding: 15px 0;
}

.custom-navbar .nav-link {
  color: #c2944a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #fff;
}

.logo-img {
  height: 40px;
  border-radius: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
}

.btn-gold {
  background-color: #c2944a;
  color: white;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background-color: #a37a38;
}

/* Menu Section */
.menu-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.menu-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-image {
  position: relative;
}

.menu-image img {
  width: 100%;
  display: block;
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c2944a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Footer */
.footer_section {
  background: #040404;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #c2944a;
}

.footer_section a {
  color: #c2944a;
  text-decoration: none;
}
