/** MakroLab Landing Page - Premium Minimal CSS **/


/* HERO SECTION */
.hero-bg {
  position: relative;
  width: 100%;
  min-height: 55vh;
  height: 55vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  inset: 0;

  background-image: url("../images/hero-home.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(255,255,255,0);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: lighten;
}

.hero-label {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  color: #7d7d7d;
  font-weight: 600;
  background: rgba(255,255,255,0.35);
  padding: 7px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .hero-label { font-size: 1.3rem; padding: 10px 36px; }
  .hero-bg { min-height: 60vh; height: 60vh; }
}

/* CONTENT WRAPPER */
.wrapper {
  background: #f8f7f5;
  margin: -56px auto 0 auto; /* Slight overlap with hero */
  max-width: 700px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 8px 36px rgba(0,0,0,0.06);
  padding: 48px 16px 0 16px;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-top: -300px;

}


main h1 {
  font-size: 2.6rem;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  font-weight: 700;
  color: #322f2a;
  letter-spacing: -1.5px;
  line-height: 1.12;
}

.description {
  font-size: 1.15rem;
  color: #444d;
  margin-bottom: 2.0em;
  font-weight: 500;
  line-height: 1.5;
}

.secondary, .supporting {
  color: #676664;
  font-size: 1.05rem;
  margin-bottom: 1.4em;
  font-weight: 400;
}

.small-line {
  font-size: 1rem;
  color: var(--brand-green);
  font-weight: 500;
  margin-bottom: 1.6em;
  letter-spacing: 0.03em;
}

/* Spacing between sections */
main > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 630px;
}
main > * + * {
  margin-top: 1.1em;
}

.supporting {
  margin-bottom: 2.4em;
}

section.cta-section {
  margin-top: 2.5em;
  margin-bottom: 2.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3em;
  padding-inline: 0.5em;
}

.cta-text {
  font-size: 1.08rem;
  font-weight: 500;
  color: #69645d;
}

.cta-button {
  background: var(--brand-green);
  color: #ffffff;

  padding: 16px 26px;
  border-radius: 14px;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 600;
  border: none;

  transition: all 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  background: #6f865f;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}


.cta-line {
  color: #aaa;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  margin-top: -0.8em;
  margin-bottom: 0.7em;
}

/* FOOTER EMAIL */
footer {
  width: 100%;
  margin-top: 4.7em;
  margin-bottom: 2.6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-email {
  color: #aaa7a4;
  font-size: 0.96rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: color 0.15s;
  font-weight: 400;
}
.footer-email:hover {
  color: #524c39;
}

@media (max-width: 730px) {
  .wrapper { max-width: 98vw; }
}

@media (max-width: 530px) {
  .wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
    border-radius: 0;
    box-shadow: none;
    margin-top: -40px;
  }
  .hero-label { font-size: 0.98rem; padding: 6px 10px; top: 22px; }
  main h1 { font-size: 2.05rem; }
}

/* End minimal premium MakroLab CSS */