

/* ===== HOME PAGE – INDIA UNCOVERED ===== */

/* Base setup for the content */
body {
  background-color: #fff8ec; /* same as your Contact Us page */
  color: #3b2a20;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding-top: 90px; /* for your fixed header */
}

.content-container {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  text-align: center;
}

/* ---------- Section 1: Welcome + Taj Mahal ---------- */
.content-container > section:first-child div {
  max-width: 1100px;
  margin: 2rem auto 4rem;
  text-align: center;
}

/* Main heading ABOVE the image */
.content-container > section:first-child h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #f29b2f; /* orange accent */
}

/* Taj Mahal image — large and clear */
.content-container > section:first-child img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin: 0 auto 1.5rem;
}

/* Subtitle below the image */
.content-container > section:first-child h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #c96e13; /* deeper orange */
  margin-bottom: 1rem;
}

/* Paragraph below the subtitle */
.content-container > section:first-child p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
  color: #3b2a20;
}

/* ---------- Section 2: Our Mission ---------- */
.content-container > section:nth-child(2) div {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.content-container > section:nth-child(2) img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.content-container > section:nth-child(2) h2 {
  font-size: 1.8rem;
  color: #f29b2f;
  text-align: center;
  margin-bottom: 1rem;
}

.content-container > section:nth-child(2) p {
  line-height: 1.8;
  font-size: 1rem;
  color: #3b2a20;
}

/* ---------- Section 3: Featured Experiences ---------- */
.content-container > section:nth-child(3) div {
  text-align: center;
}

.content-container > section:nth-child(3) h2 {
  font-size: 1.8rem;
  color: #f29b2f;
  margin-bottom: 1.5rem;
}

.content-container > section:nth-child(3) ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.content-container > section:nth-child(3) ul img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.content-container > section:nth-child(3) ul li {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #3b2a20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.our-mission{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.grid-item {
  background-color: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.grid-item img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
}


.grid-item p {
  margin: 1rem;
  line-height: 1.4;
}



/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .content-container > section:first-child img {
    max-height: 50vh;
  }

  .content-container > section:nth-child(2) img {
    height: 240px;
  }

  .content-container > section:nth-child(3) ul img {
    height: 180px;
  }
}