:root {
  --saffron: #FF8C00;
  --turmeric: #F4A261;
  --paprika: #E76F51;
  --cumin: #8B4513;
  --mint: #2A9D8F;
  --cream: #F8F5F0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--cream);
}

.brand-font {
  font-family: 'Dancing Script', cursive;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--saffron), var(--turmeric)) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--cream) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FF8C00" width="1200" height="600"/><circle fill="%23F4A261" cx="200" cy="150" r="80" opacity="0.7"/><circle fill="%23E76F51" cx="800" cy="300" r="120" opacity="0.6"/><circle fill="%23FFD700" cx="1000" cy="100" r="60" opacity="0.8"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--paprika), var(--saffron));
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  margin: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  margin: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--saffron);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 30px;
  border-top: 4px solid var(--saffron);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 20px;
}

/* Menu Section */
.menu {
  padding: 80px 0;
  background: var(--cream);
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.menu-image {
  height: 200px;
  background: linear-gradient(45deg, var(--turmeric), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.menu-content {
  padding: 20px;
}

.price {
  color: var(--paprika);
  font-weight: 700;
  font-size: 1.2rem;
}

.dietary-tags {
  margin-top: 10px;
}

.dietary-tag {
  display: inline-block;
  background: var(--mint);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-right: 5px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-image {
  height: 400px;
  background: linear-gradient(135deg, var(--saffron), var(--turmeric));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--cream);
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--saffron);
  font-family: serif;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 15px;
}

.form-control {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--cumin), #654321);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--turmeric);
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--turmeric);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--cumin);
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--saffron);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/*Feedback section*/
#feedback-stars .star {
        font-size: 40px;
        color: #ccc;
        cursor: pointer;
        transition: color 0.3s;
        padding: 0 10px;
    }

    #feedback-stars .star:hover,
    #feedback-stars .star:hover ~ .star {
        color: #ffcc00;
    }