.section-banner {
  background: linear-gradient(rgba(0, 30, 20, 0.3), rgba(0, 30, 20, 0.3)),
    url("imgs/abouthero.webp");
  background-size: cover;
  background-position: center;
}

.banner-container {
  padding: 8rem 4rem;
}

.banner-text-container {
  max-width: 70rem;
  margin: 0 auto;
}

.banner-title {
  color: #fff;
  font-size: 5.6rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 2.4rem;
}

.banner-para {
  color: #e9d9c0;
  font-size: 1.8rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- STORY SECTION ---------- */

.section-story {
  background-color: #faf8f4;
}

.story-container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 8rem 4rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}

.story-textbox {
  align-self: center;
  animation: slideInLeft 0.8s ease-out;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-heading {
  font-size: 3.4rem;
  margin-bottom: 3.2rem;
  font-weight: 600;
  color: #001e14;
  letter-spacing: -0.5px;
}

.story-para {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.para-highlight {
  font-size: 1.9rem;
  font-style: italic;
  border-left: 4px solid #c89b3c;
  padding: 1.6rem;
  margin-top: 1.6rem;
  background-color: rgba(200, 155, 60, 0.05);
  color: #001e14;
  font-weight: 500;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.para-highlight:hover {
  background-color: rgba(200, 155, 60, 0.08);
  transform: translateX(4px);
}

.story-imgbox {
  overflow: hidden;
  animation: slideInRight 0.8s ease-out;
  display: flex;
  flex-direction: column;
}

.storyimg {
  width: 100%;
  border-radius: 2rem;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.storyimg:hover {
  transform: scale(1.02);
}

/* ---------- SECTION HISTORY ---------- */

.section-history {
  background-color: #f3eee7;
}

.history-container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 8rem 4rem;
}

.history-heading {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 1.8rem;
}

.history-para {
  font-size: 1.8rem;
  color: #4b4b4b;
  text-align: center;
}

.history-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 6.4rem;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
}

.history-year {
  color: #001e14;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #c89b3c;
  border-radius: 50%;
  height: 6.4rem;
  width: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.history-year:not(:nth-last-child(2))::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(4.6rem + 1px);
  background-color: #c89b3c;
}

.history-event {
  font-size: 1.8rem;
  color: #001e14;
  background-color: white;
  border-radius: 1.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  padding-left: 2.4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ---------- VALUES SECTION -------- */
.section-values {
  background-color: #faf8f4;
}

.values-container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 9.6rem 4rem;
}

.values-heading {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 1.8rem;
}

.values-para {
  text-align: center;
  font-size: 1.8rem;
  color: #4b4b4b;
  margin-bottom: 6.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
}

.values-box {
  display: flex;
  column-gap: 2.4rem;
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 2.8rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.values-iconbox {
  width: 5.2rem;
  height: 5.2rem;
  background-color: #e9d9c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.values-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: #001e14;
  stroke-width: 2;
}

.values-box-heading {
  font-size: 2.4rem;
  color: #001e14;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.values-box-para {
  font-size: 1.6rem;
  color: #4b4b4b;
  line-height: 1.6;
}

/* ---------- CRAFT SECTION ------------- */
.section-craft {
  background: linear-gradient(180deg, #f3eee7 0%, #faf8f4 100%);
}

.craft-container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 10rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: start;
}

.craft-textbox {
  align-self: center;
}

.craft-text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.craft-heading {
  font-size: 4.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #001e14;
}

.craft-para {
  font-size: 1.7rem;
  color: #333;
  line-height: 1.9;
}

.craft-para:last-child {
  font-size: 1.9rem;
  font-weight: 500;
  font-style: italic;
  color: #001e14;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(200, 155, 60, 0.08) 0%,
    rgba(200, 155, 60, 0.03) 100%
  );
  border-left: 4px solid #c89b3c;
  border-radius: 0 1.2rem 1.2rem 0;
  margin-top: 1.2rem;
}

.craft-imgbox {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 4rem);
  gap: 2rem;
  animation: slideInRight 0.8s ease-out;
}

.craft-img {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.craft-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.craftimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.craft-img:hover .craftimg {
  transform: scale(1.15);
}

.craft-img:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 7;
}

.craft-img:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 5;
}

.craft-img:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 5 / 10;
}

.craft-img:nth-child(4) {
  grid-column: 1 / 8;
  grid-row: 7 / 13;
}

/* Staggered animation delays */
.craft-img:nth-child(1) {
  animation: fadeInScale 0.6s ease-out 0.1s backwards;
}

.craft-img:nth-child(2) {
  animation: fadeInScale 0.6s ease-out 0.2s backwards;
}

.craft-img:nth-child(3) {
  animation: fadeInScale 0.6s ease-out 0.3s backwards;
}

.craft-img:nth-child(4) {
  animation: fadeInScale 0.6s ease-out 0.4s backwards;
}
