/* =========================================
   ANEZI — Personal Brand CSS
   Design: Refined editorial, warm off-white
   with deep forest green + gold accents
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:        #F7F4EF;
  --bg-alt:    #EFEAE2;
  --text:      #1A1A18;
  --text-muted:#6B6460;
  --accent:    #2D5016;   /* deep forest green */
  --accent-lt: #3D6B20;
  --gold:      #B8952A;
  --gold-lt:   #D4AA40;
  --white:     #FFFFFF;
  --border:    rgba(45,80,22,0.15);
  --radius:    4px;
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --shadow:    0 2px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

/* --- Utility --- */
.serif { font-family: var(--font-serif); }
.text-gold { color: var(--gold); }
.text-green { color: var(--accent); }
.text-muted-custom { color: var(--text-muted); }
.bg-alt { background-color: var(--bg-alt); }
.bg-green { background-color: var(--accent); }
.bg-dark-section { background-color: #1A1A18; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.divider-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.divider-line.center { margin-left: auto; margin-right: auto; }

/* --- Navbar --- */
.navbar-anezi {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.navbar-anezi.scrolled { box-shadow: var(--shadow); }

.navbar-anezi .navbar-brand img {
  height: 44px;
  width: auto;
}

.navbar-anezi .navbar-brand span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.navbar-anezi .nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 0.4rem 0.9rem !important;
  transition: color .2s;
}

.navbar-anezi .nav-link:hover { color: var(--accent) !important; }
.navbar-anezi .nav-link.active { color: var(--accent) !important; font-weight: 500; }

.navbar-anezi .nav-cta {
  background-color: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 0.4rem 1.1rem !important;
}

.navbar-anezi .nav-cta:hover { background-color: var(--accent-lt); color: var(--white) !important; }

.navbar-toggler { border: 1px solid var(--border); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45,80,22,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Buttons --- */
.btn-primary-anezi {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background .25s, color .25s, transform .2s;
}

.btn-primary-anezi:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-anezi {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background .25s, color .25s, transform .2s;
}

.btn-outline-anezi:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-gold-anezi {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background .25s, color .25s, transform .2s;
}

.btn-gold-anezi:hover {
  background-color: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-white-anezi {
  display: inline-block;
  background-color: var(--white);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: background .25s, color .25s, transform .2s;
}

.btn-white-anezi:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* --- Hero Section --- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero h1 span {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.hero-webinar-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-webinar-box .webinar-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-webinar-box .webinar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  margin: 0.2rem 0 0.1rem;
}

.hero-webinar-box .webinar-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,80,22,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-wrap img {
  max-width: 380px;
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.1));
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Section: About --- */
.about-section { padding: 6rem 0; background-color: var(--bg-alt); }

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-credentials {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-credentials li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-credentials li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* --- Section: Services --- */
.services-section { padding: 6rem 0; background-color: var(--bg); }

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
}

.service-card.gold::before { background: var(--gold); }

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.92rem; }

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.service-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.service-card.gold .service-list li::before { color: var(--gold); }

/* --- Webinar Banner --- */
.webinar-banner {
  background-color: var(--accent);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.webinar-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.webinar-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.webinar-banner h2 { color: var(--white); font-family: var(--font-serif); }
.webinar-banner p { color: rgba(255,255,255,0.75); }
.webinar-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 0;
  background-color: var(--bg-alt);
  text-align: center;
}

.cta-section h2 { font-family: var(--font-serif); font-style: italic; }
.cta-section p { max-width: 500px; margin: 0 auto 2rem; }

/* --- Forms --- */
.form-anezi .form-control {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-anezi .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
  outline: none;
  background-color: var(--white);
}

.form-anezi .form-control::placeholder { color: #aaa; }

.form-anezi label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-anezi select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D5016' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- Page Header --- */
.page-header {
  background-color: var(--bg-alt);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { max-width: 580px; font-size: 1.05rem; }

/* --- Benefit Cards --- */
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.benefit-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.benefit-num.gold { background: var(--gold); }

.benefit-item h4 { font-family: var(--font-serif); margin-bottom: 0.25rem; font-size: 1.1rem; }
.benefit-item p { font-size: 0.88rem; margin: 0; }

/* --- Events / Cards --- */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow .2s;
}

.event-card:hover { box-shadow: var(--shadow); }

.event-date-box {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  min-width: 52px;
}

.event-date-box .day { font-size: 1.4rem; font-weight: 500; line-height: 1; font-family: var(--font-serif); }
.event-date-box .month { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.event-card h4 { margin: 0 0 0.25rem; font-family: var(--font-serif); font-size: 1.05rem; }
.event-card p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* --- Bio Section --- */
.bio-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--accent);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* --- Footer --- */
.footer {
  background-color: #1A1A18;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer p, .footer a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

.footer a:hover { color: var(--gold); }

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* --- Program Modules --- */
.program-module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.program-module h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.program-module p { font-size: 0.88rem; margin: 0; }

/* --- Stats row --- */
.stat-item { text-align: center; padding: 1.5rem; }
.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item .stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }

/* --- Testimonial --- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 1rem;
  line-height: 1;
}

.testimonial p { font-style: italic; font-size: 0.95rem; position: relative; z-index: 1; }
.testimonial .author { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* --- Responsive --- */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 3.5rem 0; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-webinar-box { text-align: left; }
  .hero-cta { justify-content: center; }
  .hero-logo-wrap { margin-top: 2.5rem; }
  .hero-logo-wrap img { max-width: 220px; }
  .hero-logo-wrap::before { display: none; }
  .about-img-wrap::after { display: none; }
  .divider-line { margin-left: auto; margin-right: auto; }
  .page-header { padding: 3rem 0 2.5rem; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 2rem; }
  .btn-primary-anezi, .btn-outline-anezi, .btn-gold-anezi, .btn-white-anezi {
    width: 100%;
    text-align: center;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
