/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; transition: background 0.3s, color 0.3s; }

/* Light Mode */
body.light { background: #fff; color: #333; }
body.light .navbar { background: #222; color: #fff; }
body.light .card { background: #f4f4f4; }

/* Dark Mode */
body.dark { background: #121212; color: #eee; }
body.dark .navbar { background: #333; color: #fff; }
body.dark .card { background: #1e1e1e; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem; }
.menu { list-style: none; display: flex; }
.menu li { margin-left: 1rem; }
.menu a { color: inherit; text-decoration: none; }
.toggle {  background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mode { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
/* Hero */
.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(to right, #ff6b6b, #f06595); color: #fff; }
.btn { display: inline-block; padding: 0.7rem 1.2rem; background: #fff; color: #333; border-radius: 5px; text-decoration: none; }

/* Sections */
.section { padding: 3rem 2rem; text-align: center; }
.grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.card { padding: 1.5rem; border-radius: 8px; flex: 1; min-width: 200px; }

/* Contact */
form { display: flex; flex-direction: column; max-width: 400px; margin: auto; }
form input, form textarea { margin: 0.5rem 0; padding: 0.7rem; border: 1px solid #ccc; border-radius: 5px; }
form button { margin-top: 1rem; }

/* Footer */
footer { text-align: center; padding: 1rem; background: #222; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .menu { display: none; flex-direction: column; }
  .menu.show { display: flex; }
}

@media (min-width:600px) {
    .toggle{display: none;}
}


/* Hero with background image */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* overlay for readability */
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #f06595;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background: #ff6b6b;
  transform: scale(1.05);
}

/* Featured Dishes */
.featured .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.featured .card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}
.featured .card p {
  font-size: 0.9rem;
  padding: 0 1rem 1rem;
}
.featured .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* About Preview */
.about-preview {
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
.about-preview p {
  max-width: 600px;
  margin: 1rem auto;
  font-size: 1rem;
  color: #555;
}

/* Testimonials */
.testimonials {
  background: #f06595;
  color: #fff;
}
.testimonials blockquote {
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
  padding: 1rem;
  border-left: 4px solid #fff;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #ff6b6b, #f06595);
  color: #fff;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}



/* Menu Page */
.menu-page {
  padding: 4rem 2rem;
  text-align: center;
}

.menu-page h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f06595;
}

.menu-page .intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #555;
}

/* Dish Grid */
.menu-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-page .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.menu-page .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-page .card h3 {
  margin: 1rem;
  font-size: 1.3rem;
  color: #333;
}

.menu-page .card p {
  margin: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #555;
}

.menu-page .card .price {
  display: block;
  margin: 0 1rem 1rem;
  font-weight: bold;
  color: #f06595;
}

.menu-page .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Dark Mode Adjustments */
body.dark .menu-page .card {
  background: #1e1e1e;
  color: #eee;
}
body.dark .menu-page .card h3 {
  color: #fff;
}
body.dark .menu-page .card p {
  color: #ccc;
}
body.dark .menu-page .card .price {
  color: #ff6b6b;
}

/* About Hero */
.about-hero {
  text-align: center;
  padding: 5rem 2rem;
  background: url('assets/images/about-hero.jpg') no-repeat center center/cover;
  color: #fff;
  position: relative;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero h2, .about-hero p {
  position: relative;
  z-index: 1;
}

/* Story Section */
.story p {
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1.1rem;
  color: #555;
}

/* Chef Spotlight */
.chef-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.chef-profile img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.chef-info {
  max-width: 400px;
}
.chef-info h3 {
  margin-bottom: 0.5rem;
  color: #f06595;
}

/* Team Grid */
.team .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.team .card h3 {
  margin: 1rem 0 0.5rem;
}
.team .card p {
  margin-bottom: 1rem;
  color: #777;
}
.team .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Dark Mode Adjustments */
body.dark .story p { color: #ccc; }
body.dark .chef-info p { color: #ddd; }
body.dark .team .card { background: #1e1e1e; color: #eee; }
body.dark .team .card p { color: #aaa; }



/* Contact Page */
.contact-page {
  padding: 4rem 2rem;
  text-align: center;
}

.contact-page h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f06595;
}

.contact-page .intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #555;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-info {
  text-align: left;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-info h3 {
  margin-bottom: 1rem;
  color: #f06595;
}
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  margin: 0.5rem 0;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.contact-form button {
  margin-top: 1rem;
  padding: 0.8rem;
  border: none;
  border-radius: 30px;
  background: #f06595;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.contact-form button:hover {
  background: #ff6b6b;
  transform: scale(1.05);
}

/* Map Section */
.map {
  margin-top: 4rem;
  text-align: center;
}
.map h2 {
  margin-bottom: 1rem;
  color: #f06595;
}
.map iframe {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Dark Mode Adjustments */
body.dark .contact-info {
  background: #1e1e1e;
  color: #eee;
}
body.dark .contact-info p { color: #ccc; }
body.dark .contact-form input,
body.dark .contact-form textarea {
  background: #2a2a2a;
  color: #eee;
  border: 1px solid #444;
}


/* Menu Hero */
.menu-hero {
  text-align: center;
  padding: 5rem 2rem;
  background: url('assets/images/menu-hero.jpg') no-repeat center center/cover;
  color: #fff;
  position: relative;
}
.menu-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.menu-hero h2, .menu-hero p {
  position: relative;
  z-index: 1;
}

/* Section Headings */
.menu-page h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f06595;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Dish Cards */
.menu-page .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-page .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.menu-page .card h3 {
  margin: 1rem;
  font-size: 1.2rem;
  color: #333;
}
.menu-page .card p {
  margin: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #555;
}
.menu-page .card .price {
  display: block;
  margin: 0 1rem 1rem;
  font-weight: bold;
  color: #f06595;
}
.menu-page .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Dark Mode Adjustments */
body.dark .menu-page .card {
  background: #1e1e1e;
  color: #eee;
}
body.dark .menu-page .card h3 { color: #fff; }
body.dark .menu-page .card p { color: #ccc; }
body.dark .menu-page .card .price { color: #ff6b6b; }
