/******************
Colors 
Navy #101e35
Brown #A27B5B
Gold #CEBC8B
********************/
*{
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
.overlaycaption,figure,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%; 
}
html {
  scroll-behavior: smooth;
}
body{
	margin: 0;
	font-family:"Momo Trust Sans", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
}

:focus  { outline: 0; }

/* deleting the default appearence for form elements */
input[type=text], input[type=password], input[type=submit], input[type=button], textarea, button, select 
{ 
	-moz-appearance: none; -webkit-appearance: none;
	border-style:solid;
	border-color:#CEBC8B;
}

/* HTML5 display definitions */
article, aside, details, .overlaycaption, figure, footer, header, hgroup, menu, nav, section, dialog { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; visibility: hidden; }

/* ===== Base link reset ===== */
a{
  color: inherit;
  text-decoration: none;
  position: static;
}
a::before, a::after{ content: none; }

ul{
	list-style: none;
	padding: 0;
	overflow:hidden;
}

h1, h2, h3{
	font-family: "Momo Trust Display", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}

.nav{
	display:flex;
	justify-content: space-between;
	align-items:center;
	margin-bottom:10px;
}
.logo{
	max-width:250px;
	transform: rotate(-15deg);
	padding:5px;
}
.nav ul{
	display:flex;
	justify-content:space-around;
	width:40%;
}
.nav ul li{
	font-size:1.3em;
}
.brown{
	color:#A27B5B;
}

/***************************
Nav link hover effects (scoped to nav only)
*****************************/
.nav ul li a {
  position: relative;
  display: inline-block;
  color: #fff; /* nav sits on dark bg */
  text-decoration: none;
}

/* Underline (left → right) */
.nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #a27b5b, #cebc8b);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

/* Gradient text overlay (right → left wipe) */
.nav ul li a::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #a27b5b, #cebc8b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* start hidden on RIGHT side */
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s ease;
}

/* Hover actions */
.nav ul li a:hover::before { transform: scaleX(1); }
.nav ul li a:hover::after  { clip-path: inset(0 0 0 0); }

/* Kill any nav effects inside footer just in case */
.site-footer a::before,
.site-footer a::after,
.footer-right a::before,
.footer-right a::after,
.contact-email::before,
.contact-email::after,
.contact-icon::before,
.contact-icon::after { content: none !important; }

/* Also force no text-decoration in footer links */
.site-footer a,
.footer-right a,
.contact-email,
.contact-icon { text-decoration: none !important; }

.headerRight img{
	max-width:100%;
	max-height:100vh;
}
.mainHeading{
	font-size: 4em;
}
.gradient-heading {
  background: linear-gradient(90deg, #A27B5B, #CEBC8B, #fff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO LAYOUT */
.hero{
  background-color:#101e35;
  color:#fff;
  min-height:90vh;
  position:relative;
  overflow:hidden;                 /* keep the image inside the dark area */
}

/* content container */
.headerContainer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  padding:40px 5vw 0;
  margin:0 auto;
  gap:4vw;
}

/* left column: keep heading width stable */
.headerLeft{
  max-width:48ch;                  /* ~48 characters; adjust to taste */
}

.mainHeading{
  font-size:clamp(2.4rem, 5vw, 4.5rem);
  line-height:1.06;
	color:#a27b5b;
}
.subHeading{
	padding-top:20px;
	font-size:1.5em;
}

/* right column: pin image to bottom-right of hero */
.headerRight{
  position:absolute;
  right:5vw;
  bottom:0;                        /* sits on the hero bottom edge */
  height:72vh;                     /* scales with viewport height */
}

.headerRight img{
  height:100%;
  width:auto;
  display:block;
  object-fit:contain;
}

.join {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 1.5em;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to right, #a27b5b, #cebc8b);
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

/* Hover motion: gradient reverses + lift */
.join:hover {
  background: linear-gradient(to right, #cebc8b, #a27b5b);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Shine sweep overlay */
.join::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.7s ease;
  pointer-events: none;
}

/* Animate the shine across */
.join:hover::after {
  left: 130%;
}

/*************************************
HOW IT WORKS SECTION 
****************************************/
.howItWorks {
  background-color: #f7f7f7;
  color: #101e35;
  text-align: center;
  padding: 100px 20px;
}

.sectionHeading {
  font-family: "Momo Trust Display", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #A27B5B;
  margin-bottom: 1rem;
}

.sectionIntro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  opacity: 0.85;
}

/* Cards */
.stepsContainer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.stepCard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 2rem;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stepCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.stepNumber {
  background: linear-gradient(to right, #A27B5B, #CEBC8B);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stepCard h3 {
  color: #101e35;
  margin-bottom: 0.5rem;
}

.stepCard p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}
.pricingNote{
  margin-top:2rem;
  font-size:1rem;
  color:#555;
  text-align:center;
}
.pricingNote strong{color:#A27B5B;}

/*********************************************
WHY JOIN SECTION
**********************************************/
.why-join {
  background: #ffffff;
  color: #101e35;
  padding: 100px 20px;
  text-align: center;
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
}
.why-container .sectionHeading{
	color:#101e35;
}
.why-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  opacity: 0.9;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-item {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.why-closer {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #0B1324;
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
}

/* Add subtle motion on hover for polish */
.why-item:hover h3 {
  color: #A27B5B;
  transition: color 0.3s ease;
}

/* Mobile */
@media (max-width: 700px) {
  .why-join {
    padding: 80px 15px;
  }
  .why-intro {
    font-size: 1rem;
  }
  .why-item h3 {
    font-size: 1.2rem;
  }
}


/**************************************
ABOUT SECTION 
****************************************/
/* ===== Colors you’re using across the site ===== */
:root{
  --navy: #0B1324;              /* deep navy background */
  --card-bg: rgba(255,255,255,.96);
  --shadow: 0 12px 30px rgba(0,0,0,.25);
  --accent: #C6A472;            /* your bronze/gold */
}

/* ===== About section with gold candles background ===== */
.about-section{
  position: relative;
  isolation: isolate;           /* keeps overlay effects contained */
  padding: clamp(64px, 8vw, 120px) 20px;
  background: var(--navy);
  overflow: hidden;
}

/* Background image layer */
.about-section::before{
  content: "";
  position: absolute;
  inset: 0;
  /* gradient starts dark at top and fades into transparent/gold at bottom */
  background-image:
    linear-gradient(
      to bottom,
      rgba(11,19,36,0.55) 0%,
      rgba(11,19,36,0.25) 40%,
      rgba(11,19,36,0.05) 70%,
      rgba(11,19,36,0) 100%
    ),
    url("images/gold-candles-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: no-preference){
  .about-section::before{
    transition: transform .6s ease-out;
  }
  .about-section:is(:hover, :focus-within)::before{
    transform: scale(1.02);
  }
}

/* ===== Center card ===== */
.about-card{
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}

/* Heading with subtle gold accent */
.about-card h2{
  margin: 0 0 .75rem;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: .2px;
  position: relative;
}

.about-card h2::after{
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
  border-radius: 2px;
}

.about-card p{
  margin: 0 0 1rem;
  color: #1d2433;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
}

/* Tighten last paragraph spacing */
.about-card p:last-child{ margin-bottom: 0; }

/*********************************************
CONTACT FOOTER
**********************************************/
:root{
  --navy:#0B1324;
  --accent:#C6A472;     /* bronze/gold */
  --ink:#0B1324;
}

/* Wrapper */
.site-footer{
  background:#fff;
  color:var(--ink);
  margin-top:80px;
  box-shadow:0 -6px 28px rgba(0,0,0,.06);
}

/* 3-column grid */
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:3.25rem 2rem 2.75rem;
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap:2.5rem;
  align-items:center;
}

/* Left */
.footer-logo{
  width:min(280px, 90%);
  height:auto;
}

/* Center */
.footer-center p{
  margin:0;
  font-size:1.05rem;
  line-height:1.7;
  color:#1c2536;
  text-align:center;
}

/* Right (stacked) */
.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:.5rem;
  text-align:right;
}

.contact-label{
  margin:0;
  font-weight:700;
  font-size:1.5em;
  letter-spacing:.2px;
}

.contact-email{
  color:var(--ink);
  text-decoration:none;                /* no underline */
  font-weight:600;
  padding:.25rem 0;
  border-radius:6px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.contact-email:hover{
  transform: translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  opacity:.9;
}

/* Icon stack */
.contact-stack{
  display:flex;
  flex-direction:column;               /* stacked */
  gap:.6rem;
  margin-top:.35rem;
}
.contact-icon{
  display:inline-flex;
  border-radius:10px;
  padding:.15rem;
  transition: transform .18s ease, filter .18s ease;
}
.contact-icon img{
  display:block;
}
.contact-icon:hover{
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.15));
}

.biz-note{
  color:#6b7280;
  margin-top:.25rem;
  font-size:.85rem;
}

/* Bottom bar */
.footer-bottom-bar{
  background-color: #A27B5B;
  height:56px;                         /* thicker */
  display:flex;
  align-items:center;
}
.bar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:.95rem;
  letter-spacing:.2px;
}
/* =========================
   Notify popup (matches site)
   ========================= */
.notify-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  display: none; /* use [hidden] attr to toggle */
  place-items: center;
  z-index: 9999;
}
.notify-overlay[hidden]{ display:none; }
.notify-overlay.show{ display:grid; }

.notify-dialog{
  background: #0B1324; /* deep navy */
  color: #fff;
  width: min(92vw, 520px);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  position: relative;
  border: 1px solid #C6A47233; /* subtle gold edge */
}

.notify-close{
  position:absolute; top:10px; right:12px;
  width:36px; height:36px; border-radius:50%;
  background:#ffffff12; color:#fff; border:none; cursor:pointer;
  font-size:22px; line-height:36px; text-align:center;
}
.notify-close:hover{ background:#ffffff22; }

#notify-title{
  margin: 4px 0 6px;
  font-family: "Momo Trust Display", sans-serif;
  font-size: clamp(22px, 2.8vw, 28px);
  color: #CEBC8B; /* gold */
}

.notify-sub{
  margin: 0 0 14px; color:#e6e6e6; opacity:.9;
}

.notify-form{
  display:flex; gap:12px; align-items:center;
  margin-top: 8px;
}

.notify-input{
  flex:1; min-width: 220px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #CEBC8B55;
  background: #101e35;
  color:#fff; font-size:16px;
}

.notify-submit.join{
  margin-top: 0; /* reuse your .join button look */
  white-space: nowrap;
}

.notify-fineprint{
  margin-top: 12px; font-size: 12px; color:#cfcfcf; opacity:.75;
  text-align:center;
}

/* Click-outside area: allow closing when clicking overlay background */


/* Responsive */
@media (max-width:1000px){
  .footer-inner{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .footer-right{ align-items:center; text-align:center; }
  .footer-center p{ font-size:1rem; }
  .footer-logo{ width:220px; margin:0 auto; }
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-right {
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
}

/* ================================
   RESPONSIVE (consolidated)
   ================================ */

/* ================================
   RESPONSIVE (final, optimized)
   ================================ */

/* Footer collapse */
@media (max-width:1000px){
  .footer-inner{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .footer-right{ align-items:center; text-align:center; }
  .footer-center p{ font-size:1rem; }
  .footer-logo{ width:220px; margin:0 auto; }
}

/* ================================
   HERO + NAV
   ================================ */

/* Tablets & small laptops: 701–1024px
   - Nav spreads to 80%
   - Image sits higher & smaller
   - Hero navy stops just below image
*/
@media (max-width:1024px) and (min-width:701px){
  .nav ul{ width:80%; }

  /* bring blue up (shorter hero) */
  .hero{
    min-height: 56vh;             /* trims the navy background */
    padding-bottom: 0;
  }

  .headerContainer{
    align-items: center;
    gap: 2.5vw;
    padding-right: min(38vw, 400px);
  }

  .headerLeft{ max-width: 44ch; }

  .mainHeading{ font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
  .subHeading{ font-size: 1.15rem; }
  .logo{ max-width: 200px; }

  /* smaller, higher image */
  .headerRight{
  position: absolute;
  top: 64%;            /* ↓ lower it more (was 58%) */
  bottom: auto;
  right: 3vw;
  height: 40vh;        /* a touch smaller for balance */
  transform: translateY(-50%);
}
}
/* Narrower tablets: ≤900px */
@media (max-width:900px) and (min-width:701px){
  .hero{ min-height: 52vh; }      /* even less navy */
  .headerContainer{ padding-right: min(40vw, 380px); }
  .headerRight{ height: 38vh; }   /* smaller yet */
}

/* Phones: ≤700px
   - Hide image
   - Reset spacing and tighten typography
*/
@media (max-width:700px){
  .headerRight{ display:none !important; }
  .hero{ min-height:auto;
	padding-bottom:40px;}
  .headerContainer{
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .mainHeading{
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    line-height: 1.15;
  }
  .subHeading{ font-size: 1.05rem; }
	.nav{
		flex-direction: column;
		justify-content: center;
	}
	.nav ul{
		width:100%;
	}
	.logo{
		max-width:180px;
		transform: rotate(0);
	}
	.nav ul li{
		font-size:1em;
	}
}
