/* ===== Dine & Stay – India Uncovered ===== */

body {
  background-color: #fff8ec;
  color: #3b2a20;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding-top: 90px; /* allow for fixed header */
}

.content-container {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* Hero */
.food-hero {
  position: relative;
  margin: 1.5rem 0 2.5rem;
  height: 40vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  background: url("/images/food_pic4.jpg") center/cover no-repeat;
}

.food-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.2rem;
  color: #fff;
}

.food-hero-overlay h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
}

.food-hero-overlay p {
  margin: 0;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* Sections */
.food-section {
  margin-bottom: 3rem;
}

.food-section h2 {
  font-size: 1.7rem;
  color: #f29b2f;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.food-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.food-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f29b2f;
  height: 15%;
}

.food-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3b2a20;
}

.food-card .note {
  font-size: 0.85rem;
  color: #8b7c6b;
}
.food-card img{
  width: 100%;
  height: 60%;
}
/* Team section tweaks */
.team {
  text-align: left;
}

.team-intro,
.team-note {
  font-size: 0.92rem;
  color: #6b5846;
  margin-bottom: 1rem;
}

.team-cards .food-card h3 {
  color: #f29b2f;
}



/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .food-hero {
    height: 32vh;
  }

  .food-hero-overlay {
    padding-left: 1.3rem;
  }

  .food-section h2 {
    text-align: center;
  }

  .team-intro,
  .team-note {
    text-align: center;
  }
}