/* ==========================
   PALETTE — calm + elegant
========================== */
:root {
  --sage: #6f8f7a;
  --deep-green: #2f4a3a;
  --moss: #4e6b57;
  --cream: #f6f3ee;
  --soft-ivory: #fbf9f6;
  --ink: #1f1f1f;
  --gold-soft: #c6b48a;
}

/* ==========================
   GLOBAL
========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ==========================
   HERO — more cinematic
========================== */
/* Make hero fill the viewport */
.hero {
  min-height: 100vh;      /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;        /* optional, reduces top/bottom padding */
  overflow: hidden;
  position: relative;
}

/* dark overlay for contrast */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,20,18,0.55),
    rgba(15,20,18,0.55)
  );
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
   HERO CONTENT
========================== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================
   BRAND TITLE
========================== */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.22em;
  color: var(--soft-ivory);
  margin-bottom: 12px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.7);
}

.title-line {
  display: block;
}

.highlight {
  display: block;
  color: var(--gold-soft);
}

/* ==========================
   PRIMARY TAGLINE
========================== */
.tag-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--soft-ivory);
  margin-top: 12px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* ==========================
   SUB TAG
========================== */
.sub-tag {
  margin-top: 12px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  color: #e7ebe7;
  opacity: 0.95;
  letter-spacing: 0.05em;
}

/* ==========================
   BUTTON — refined
========================== */
.signup-button {
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 40px;
  background: var(--soft-ivory);
  color: var(--deep-green);
  border: 1px solid rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.25s ease;
}

.signup-button:hover {
  background: var(--gold-soft);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==========================
   ACCENT IMAGE
========================== */
.section-accent {
  position: relative;
  width: 100%;
  height: 120px; /* adjust height as needed */
  background: url('Images/leafbackground1.jpg') center/cover no-repeat;
  opacity: 0.15; /* subtle fade */
  pointer-events: none;
  z-index: 0;
}

/* ==========================
   INTRO / ABOUT SECTION
========================== */
.intro {
  position: relative;
  padding: 110px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #f8f6f3 0%,
    #f1efe9 100%
  );
  overflow: hidden;
}

/* subtle art-deco divider lines */
.intro::before,
.intro::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
  left: 50%;
  transform: translateX(-50%);
}

.intro::before { top: 55px; }
.intro::after { bottom: 55px; }

.intro .container {
  max-width: 760px;
  text-align: center;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  color: #2f4739;
}

.intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b4b4b;
  opacity: 0.95;
}


/* ==========================
   NEWSLETTER
========================== */
.newsletter-section {
  position: relative;
  padding: 110px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(
    circle at top,
    #eef2ec,
    #e7ece6 60%,
    #e1e6e0 100%
  );
}
/* Center all newsletter content */
.newsletter-section .sib-form {
  text-align: center;
}

.newsletter-section .sib-form p {
  text-align: center;
  line-height: 1.8; /* keeps it readable */
  margin-bottom: 30px;
  color: #4b4b4b;
}

/* subtle botanical overlay feel */
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/texture-light.png");
  opacity: 0.05;
  pointer-events: none;
}

/* card */
.sib-form {
  position: relative;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 55px 45px;
  max-width: 760px;
  width: 100%;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(191,174,138,0.35);
}

/* deco top line */
.sib-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
  transform: translateX(-50%);
}

/* heading */
.sib-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #2f4739;
}

/* text */
.sib-form p {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #4b4b4b;
}

/* form */
.sib-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* input */
.sib-form input[type="email"] {
  flex: 1 1 260px;
  padding: 16px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.18);
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
}

/* button */
.sib-form button {
  padding: 14px 30px;
  border-radius: 50px;
  background: #2f4739;
  color: #fff;
  border: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sib-form button:hover {
  background: #1f3327;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}


/* ==========================
   CAREERS / COLLAB SECTION
========================== */
#careers {
  position: relative;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #f3f0ea 0%,
    #ece8e1 100%
  );
  overflow: hidden;
  text-align: center;
}

/* subtle texture overlay */
#careers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/texture-light.png");
  opacity: 0.05;
  pointer-events: none;
}

/* soft divider lines (matching intro section) */
#careers::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
}

.careers-container {
  position: relative;
  max-width: 760px;
  width: 100%;
}

/* heading */
#careers h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  color: #2f4739;
}

/* paragraph */
#careers p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b4b4b;
  opacity: 0.95;
  margin-bottom: 34px;
}

/* button row */
.careers-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* primary button */
.careers-btn-primary {
  padding: 14px 34px;
  border-radius: 40px;
  background: #2f4739;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.25s ease;
}

.careers-btn-primary:hover {
  background: #1f3327;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* secondary button */
.careers-btn-secondary {
  padding: 14px 34px;
  border-radius: 40px;
  background: transparent;
  color: #2f4739;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.25);
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.careers-btn-secondary:hover {
  background: #c6b48a;
  color: #000;
  transform: translateY(-2px);
}

/* ==========================
   FOOTER
========================== */
footer {
  background: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.footer-seals {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer-seals img {
  width: 75px;
  opacity: 0.9;
}

/* ==========================
   ANIMATION
========================== */
.hero-content > * {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content > *:nth-child(2){animation-delay:.2s;}
.hero-content > *:nth-child(3){animation-delay:.35s;}
.hero-content > *:nth-child(4){animation-delay:.5s;}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}

/* ==========================
   MOBILE
========================== */
@media (max-width:768px){

  .hero{
    min-height:72vh;
    padding:60px 16px;
  }

  .tag-line{
    font-size:1.25rem;
  }

  .sub-tag{
    font-size:.95rem;
  }

  .intro{
    padding:60px 20px;
  }

  .sib-form{
    padding:30px 20px;
  }

  .footer-seals img{
    width:55px;
  }
}