/* -------------------------------
   Global Settings & Base Styles
---------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #141212;
  color: #fff;
}

/* -------------------------------
   Header / Navbar
---------------------------------- */
/* .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e2430;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
} */



.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(46, 36, 48, 0.4); /* 40% opacity */
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px); /* Glass-like blur effect */
}


/* .logo img {
  height: 45px;
  border-radius: 100%;
} */


.site-logo {
  height: 60px;
  border-radius: 50%;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px #fbbf24);
}

.logo-link:hover .site-logo {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 0 10px #fbbf24) brightness(1.2);
}


.navbar {
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  font-weight: 600;
}

.order-btn {
  background-color: #e53935;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #1c1c1c;
    width: 200px;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Hover Nav Animation */
.nav-links li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links li:hover {
  transform: translateY(-5px);
}

.nav-links li a:hover {
  color: #fbbf24;
}

/* -------------------------------
   Hero Section with Slider
---------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 5rem;
  margin: 0;
  font-weight: bold;
}

.hero-content h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: magenta;
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: #fbbf24;
}

.hero-content .subtext {
  font-size: 1rem;
  color: #fef3c7;
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h3 {
    font-size: 1.3rem;
  }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* -------------------------------
   CTA Buttons
---------------------------------- */
.cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
}

.primary-btn {
  background-color: #ea580c;
  color: white;
}

.secondary-btn {
  background-color: #fbbf24;
  color: #1f2937;
}

/* -------------------------------
   Section Common Styling
---------------------------------- */
.menu-section,
.about-section,
.testimonials-section,
.contact-section,
.site-footer {
  padding: 40px 20px;
  text-align: center;
}

/* -------------------------------
   Menu Section
---------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-container h2 {
  color: rgb(195, 255, 0);
}

.menu-item {
  background: #a5be61;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.menu-item:hover {
  transform: scale(1.03);

     transform: translateY(5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-item {
  background: #a5be61;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  
}




/* -------------------------------
   Testimonials Section
---------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonials-container h2 {
  color: rgb(195, 255, 0);
}

.testimonial-card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
}

/* Slid */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-slide {
  display: none;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}




/* -------------------------------
   About Section
---------------------------------- */
.about-container h2 {
  color: rgb(195, 255, 0);
}

/* -------------------------------
   Contact Section
---------------------------------- */
 .contact-container {
  color: rgb(195, 255, 0);
  margin: auto;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
  background: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fbbf24;
  outline: none;
  background-color: #3a3a3a;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #fbbf24;
  color: #1f2937;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #f59e0b;
} 


/* -------------------------------
   Footer Section
---------------------------------- */
.site-footer {
  width: 100vw;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: #f3f4f6;
  padding: 30px 15px 10px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #4b5563;
  padding-bottom: 30px;
}

/* Common styles for each footer section */
.footer-logo,
.footer-links,
.footer-social,
.footer-Online {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo h3 {
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-logo p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.3rem;
  color: #fbbf24;
  margin-bottom: 15px;
  border-left: 4px solid #fbbf24;
  padding-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links a,
.footer-social a {
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fbbf24;
  text-decoration: underline;
  transform: translateX(4px);
}

.footer-social a {
  margin: 8px 10px 8px 0;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-Online h4 {
  color: #fbbf24;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-Online a {
  color: white;
}

.footer-Online a:hover {
  color: #fbbf24;
  text-decoration: underline;
  transform: translateX(4px);
}

/* -------------------------------
   Mobile Footer Responsive
---------------------------------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-logo,
  .footer-links,
  .footer-social,
  .footer-Online {
    width: 100%;
  }

  .footer-logo p {
    margin: auto;
  }

  .footer-social a {
    margin: 10px;
    font-size: 1.4rem;
  }
}
