/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  height: 100%;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(20, 70, 45, 0.85); /* darker green overlay */
  z-index: 1;
}

/* Content wrapper */
.hero-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

/* =========================
   TEXT BLOCK
========================= */

.hero-text {
  width: 70%;
  margin: 0 auto;
  color: #E1D19D;
  font-size: 18px;
  font-family: Tenor sans, sans-serif;
  line-height: 1.65;
  text-align: left;
  position: relative;
  padding-left: 26px;
}

/* LEFT GOLD LINE */
.hero-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 100%;
  background: #E1D19D;
 
}

/* Paragraph spacing */
.hero-text p {
  margin: 0 0 26px;
}

/* =========================
   NOTE TEXT
========================= */

.hero-note {
  margin-top: 40px;
  text-align: center;
  color: #E1D19D;
  font-size: 20px;
  font-weight: 600;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-text {
    width: 80%;
    font-size: 18px;
  }

  .hero-note {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-text {
    width: 90%;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 16px;
  }

  .hero-text::before {
    width: 2px;
  }

  .hero-text p {
    margin-bottom: 20px;
  }

  .hero-note {
    font-size: 16px;
    margin-top: 28px;
    padding: 0 10px;
  }
}

/* =========================
   BRAND SECTION
========================= */

.brand-section {
  padding: 50px 100px;
  background: #f2f2f2;
}

.brand-container {
  width: min(1100px, 92%);
  margin: 0 auto;

  border: 2px solid #1A4A33;
  border-radius: 24px;

  padding: 40px 50px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  align-items: center;
  background: #f8f8f6;
}

/* LEFT */
.brand-left {
  text-align: center;
}


.brand-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
}


/* RIGHT */
.brand-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.brand-block {
  position: relative;
  padding-left: 20px;
}

/* vertical gold line */
.brand-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 70%;
  background: #E1D19D;
  border-radius: 2px;
}

.brand-block h3 {
  margin: 0;
  color: #205C40;
  font-size: 26px;
  font-weight: 700;
}

.brand-block p {
  margin: 6px 0 0;
  color: #205C40;
  font-size: 18px;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .brand-container {
    padding: 35px;
    gap: 30px;
  }

  .brand-logo img {
    max-width: 260px;
  }
}

@media (max-width: 767px) {
  .brand-section {
  padding: 30px 20px;
}

  .brand-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 10px;
    gap: 20px;
  }

  .brand-right {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

  .brand-block {
    padding-left: 16px;
    text-align: left;
    width: 100%;
    max-width: 320px;
  }

  .brand-block h3 {
    font-size: 18px;
  }

  .brand-block p {
    font-size: 14px;
  }

  .brand-logo img {
    max-width: 150px;
  }
}