/* ===== Travel Tips & Itineraries – Page Styles ===== */

/* Page base */
body {
  background-color: #fff8ec;
  /* same warm tone as other pages */
  color: #3b2a20;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding-top: 90px;
  /* for fixed header from style.css */
}

.content-container {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* ---------- HERO ---------- */

.tips-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/tips_pic1.jpg") center/cover no-repeat;
  /* make sure file exists */
}


.tips-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2.2rem;
  color: #fff;
}

.tips-hero-overlay h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
}

.tips-hero-overlay p {
  margin: 0;
  font-size: 0.98rem;
  opacity: 0.96;
}

/* ---------- GENERIC SECTIONS ---------- */


.tips-section {
  margin-bottom: 3rem;
}

li {
  list-style: none;
}

.tips-section h2 {
  font-size: 1.7rem;
  color: #f29b2f;
  margin-bottom: 1rem;
}

.tips-section p {
  font-size: 0.95rem;
  color: #6b5846;
  line-height: 1.7;
}

.tips-section ul img {
  display: inline-block;
  width: 280px;         
  height: 180px;        
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
  margin-right: 0.8rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}
.tips-section .note {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #8b7c6b;
}

/* ---------- DO / DON'T GRID ---------- */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
}

.tips-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.tips-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: #f29b2f;
}

/* ---------- TRANSPORT IMAGES ---------- */

/* You placed images inside the UL; style them so they don't break layout */
.tips-section ul img {
  display: inline-block;
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.6rem;
  margin-right: 0.6rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

/* ---------- ITINERARY IMAGES AT BOTTOM ---------- */

.tips-section img#itinerary-extra,
.tips-section img[src*="tip_pic3"],
.tips-section img[src*="stay_1"],
.tips-section img[src*="Taj-Mahal"] {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0.6rem 0.6rem 0.6rem 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  display: inline-block;
  vertical-align: middle;
}

/* ---------- TEAM SECTION ---------- */

/* ---------- TEAM SECTION (same style as Dine & Stay) ---------- */
.team {
  text-align: left;
  margin-top: 1.5rem;
}

.team-intro,
.team-note {
  font-size: 0.92rem;
  color: #6b5846;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.team-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;
}

.team-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f29b2f;
}

.team-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3b2a20;
}

.team-card img {
  width: 100%;
  height: 60%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  margin-bottom: 0.6rem;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .team {
    text-align: center;
  }

  .team-intro,
  .team-note {
    text-align: center;
  }
}


