/* ===== Culture & Traditions Page ===== */

/* match global look */
body {
  background-color: #fff8ec;            /* warm cream */
  color: #3b2a20;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding-top: 90px;                    /* for fixed header */
}

/* main wrapper */
.content-container {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* page heading + intro */
.content-container > h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  color: #f29b2f;                       /* orange accent */
  margin: 1.5rem 0 0.3rem;
  text-align: left;
}

.content-container > p {
  font-size: 0.98rem;
  color: #8b7c6b;
  margin: 0 0 2rem;
  text-align: left;
}

/* each culture block as a card */
.content-container section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* heading inside cards */
.content-container section h2 {
  grid-column: 1 / -1;
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f29b2f;
  text-align: center;
}

/* images aligned left column */
.content-container section img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* text aligned right column */
.content-container section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3b2a20;
  text-align: left;
}



/* ===== Responsive ===== */
@media (max-width: 800px) {
  body {
    padding-top: 100px;
  }

  .content-container section {
    grid-template-columns: 1fr;       /* stack image and text */
    text-align: center;
  }

  .content-container section h2 {
    text-align: center;
  }

  .content-container section img {
    margin: 0 auto;
    height: 200px;
  }

  .content-container section p {
    text-align: left;
  }
}