@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
html {
  font-size: 18px;
}
body {
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #fbeee6 0%, #fbeee6 100%);
  color: #f9e1cd;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}
p, li {
  font-size: 1.1rem;
}
.about-us, .our-story, .founders, .careers, .career-role, .careers-contact {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
  text-align: center;
}
.careers {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.career-role {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}
.careers-contact {
  margin-bottom: 2.5rem;
}
body {
  background: #f6efe4;
  color: #7a2463;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
}

.logo {
  height: 64px;
}

nav a {
  color: #7a4a24;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: #a05a2c;
}

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #f7c6c7;
  color: #b23a48;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(178,58,72,0.15);
  cursor: pointer;
  z-index: 1000;
  opacity: 0.92;
  transition: background 0.2s, opacity 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top:hover {
  background: #f9d6d7;
  color: #e63946;
  opacity: 1;
  box-shadow: 0 6px 24px rgba(178,58,72,0.22);
}
nav a.active {
  border-bottom: 2px solid #7a4a24;
  color: #a05a2c;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  margin: 0 auto 2rem auto;
  max-width: 700px;
  background: url('../images/img1.jpg') center center/cover no-repeat;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(122,74,36,0.10);
  padding: 3rem 2rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 248, 225, 0.85);
  border-radius: 32px;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(122,74,36,0.18);
  margin-bottom: 2rem;
  border: 6px solid #fff8e1;
  background: #fff8e1;
}
.hero::after {
  content: '';
  position: absolute;
  left: -60px;
  top: 40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e8c48a55 60%, transparent 100%);
  z-index: 0;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: #7a4a24;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 1;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #a05a2c 0%, #e8c48a 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(122,74,36,0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  z-index: 1;
}
.cta:hover {
  background: linear-gradient(90deg, #7a4a24 0%, #a05a2c 100%);
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(122,74,36,0.22);
}

footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #7a4a24;
  font-size: 1rem;
  opacity: 0.8;
}

/* Dish grid and menu highlights */
.dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.dish {
  background: #fff8e1;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(122,74,36,0.08);
  padding: 1rem;
  width: 220px;
  text-align: center;
  color: #7a4a24;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.dish img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  background: #e8c48a;
  display: block;
}
.icons {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* Menu filters */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1rem 0;
}
.menu-filters button {
  background: #fff8e1;
  color: #7a4a24;
  border: 1px solid #e8c48a;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.menu-filters button:hover {
  background: #7a4a24;
  color: #fff;
}

.menu-filters button.active {
  background: #7a4a24;
  color: #fff;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(122, 74, 36, 0.3);
}

/* Plans cards */
.plans {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.plan-card {
  background: #fff8e1;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(122,74,36,0.08);
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: center;
  color: #7a4a24;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.plan-card li {
  margin-bottom: 0.5rem;
}

/* Contact form */
.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
}
.contact-form-section input,
.contact-form-section textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e8c48a;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form-section textarea {
  min-height: 100px;
  resize: vertical;
}

/* FAQ */
.faq {
  max-width: 600px;
  margin: 2rem auto;
}
.faq details {
  background: #fff8e1;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  color: #7a4a24;
}
.faq summary {
  font-weight: bold;
  cursor: pointer;
}

.who-can-join {
  background: #fff8e1;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(122,74,36,0.10);
  max-width: 900px;
  margin: 3rem auto 3rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.who-can-join h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: #7a4a24;
}
.who-can-join p, .who-can-join ul, .who-can-join h3 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.who-can-join ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fbeee6;
  border-radius: 16px;
  padding: 1.2rem 2rem;
  margin: 1.5rem auto 1.5rem auto;
  box-shadow: 0 2px 8px rgba(122,74,36,0.06);
  width: fit-content;
}
.who-can-join li {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  text-align: left;
}
.who-can-join li::before {
  content: '';
}
.who-can-join h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #a05a2c;
}

/* Testimonial carousel navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-nav button {
  background: #7a4a24;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.testimonial-nav button:hover {
  background: #a05a2c;
}

/* Stats section */
.stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin: 2.5rem auto 2rem auto;
  text-align: center;
  max-width: 900px;
}
.stat {
  background: #fff8e1;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(122,74,36,0.08);
  padding: 1.5rem 2rem;
  min-width: 120px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
}
.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #7a4a24;
  display: block;
  margin-bottom: 0.5rem;
}

/* Testimonial carousel */
.testimonial-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.testimonial-carousel blockquote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem auto;
  font-style: italic;
  font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 900px) {
  .plans, .dishes {
    flex-direction: column;
    align-items: center;
  }
  .plan-card, .dish {
    width: 90%;
    max-width: 350px;
  }
  .stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .stat {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }
  .hero {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    min-height: 50vh;
  }
  .hero img {
    width: 120px;
    height: 120px;
  }
  section {
    padding: 1.2rem 0.5rem;
    margin: 2rem auto 2rem auto;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .hero img {
    width: 120px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .cta {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  .dishes, .plans {
    gap: 1rem;
  }
  .dish img {
    height: 80px;
  }
  .plan-card {
    padding: 1.2rem 0.5rem;
  }
  .faq {
    padding: 0 1rem;
  }
  .who-can-join ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .who-can-join li {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .who-can-join {
    padding: 1.2rem 0.5rem;
    margin: 1.5rem auto 1.5rem auto;
  }
  .who-can-join ul {
    padding: 0.7rem 1rem;
  }
}
/* Lightbox styles */
#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
#lightbox-overlay.active {
  display: flex;
}
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
#lightbox-overlay .close-btn {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6, p {
  text-align: center;
} 

/* Animated fade-in for all main sections */
section, .stat, .dish, .plan-card, .career-role {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.2s;
}
section:nth-of-type(2), .stat:nth-of-type(2), .dish:nth-of-type(2), .plan-card:nth-of-type(2), .career-role:nth-of-type(2) {
  animation-delay: 0.4s;
}
section:nth-of-type(3), .stat:nth-of-type(3), .dish:nth-of-type(3), .plan-card:nth-of-type(3), .career-role:nth-of-type(3) {
  animation-delay: 0.6s;
}
section:nth-of-type(4), .stat:nth-of-type(4), .dish:nth-of-type(4), .plan-card:nth-of-type(4), .career-role:nth-of-type(4) {
  animation-delay: 0.8s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated underline for nav links */
nav a {
  position: relative;
  overflow: hidden;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #7a4a24;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}
nav a:hover::after, nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Card and button hover effects */
.dish, .plan-card, .stat, .career-role {
  transition: box-shadow 0.3s, transform 0.3s;
}
.dish:hover, .plan-card:hover, .stat:hover, .career-role:hover {
  box-shadow: 0 8px 32px rgba(122,74,36,0.18);
  transform: translateY(-8px) scale(1.03);
}
.cta, .testimonial-nav button, #back-to-top {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta:hover, .testimonial-nav button:hover, #back-to-top:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(122,74,36,0.18);
}

/* Dish image gentle scale on hover */
.dish img {
  transition: transform 0.3s, box-shadow 0.3s;
}
.dish img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(122,74,36,0.18);
} 