/*
Theme Name: Navarro Leadership Coaching & Consulting
Theme URI: https://navarroleadership.com
Author: Maximo Navarro
Author URI: https://navarroleadership.com
Description: Navarro Leadership Coaching & Consulting — A professional dark-themed WordPress theme for leadership coaching and consulting.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: navarro-leadership
Tags: one-page, dark, custom-logo, custom-menu, featured-images, theme-options
*/

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --text-primary: #f0ede8;
  --text-secondary: #b8b4ad;
  --text-muted: #7a7670;
  --accent: #c9a96e;
  --accent-hover: #dbbf8a;
  --accent-subtle: rgba(201,169,110,0.12);
  --border: #2a2825;
  --border-light: #3a3835;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --max-width: 1200px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CTA BUTTON ========== */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.cta-button:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Schedule CTA — top bar (slide 1 style), above brand + nav */
.header-cta-bar {
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,6,0.98);
}
.header-cta-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}
.header-cta-top {
  padding: 11px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.header-main {
  border-bottom: 1px solid var(--border);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 10px 0;
}
.header-nav-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}
.site-brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* WP Nav Menu Styles */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation li { position: relative; }
.main-navigation a {
  display: block;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.main-navigation a:hover { color: var(--text-primary); }
.main-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: var(--text-primary);
}
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  transform: scaleX(1);
}

/* Sub-menus */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px 0;
  flex-direction: column;
  z-index: 100;
}
.main-navigation li:hover > ul { display: flex; }
.main-navigation ul ul a {
  padding: 10px 20px;
  font-size: 0.75rem;
}
.main-navigation ul ul a::after { display: none; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ========== HERO BANNER ========== */
.hero {
  position: relative;
  min-height: 480px;
  padding: 100px 40px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-secondary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.5) 0%, rgba(26,26,26,0.3) 50%, rgba(10,10,10,0.6) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(201,169,110,0.04) 0%, transparent 50%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-logo-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-logo-text span { color: var(--accent); font-weight: 500; }
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
}
.hero-divider {
  width: 60px;
  height: 1.5px;
  background: var(--accent);
  margin: 24px auto;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.hero-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero-cta-wrap {
  margin-top: 8px;
}

/* Custom Logo in Hero */
.hero .custom-logo-link { display: inline-block; max-width: 600px; }
.hero .custom-logo { width: 100%; height: auto; }

/* ========== SECTION COMMONS ========== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 30px;
}
.section-divider {
  width: 50px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 35px;
}
.section-intro {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 28px;
}
.section-intro p + p { margin-top: 1.25em; }

/* ========== CREDENTIALS BAR ========== */
.credentials-bar {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* ========== LIST SECTIONS (e.g. This is for you) ========== */
.statement-list {
  max-width: 720px;
  margin: 0;
  padding: 0;
  counter-reset: stmt;
}
.statement-list li {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 18px 0 18px 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  counter-increment: stmt;
}
.statement-list li:last-child { border-bottom: none; }
.statement-list li::before {
  content: counter(stmt) '.';
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
}

/* ========== ACCENT BULLETS ========== */
.accent-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
}
.accent-bullets li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.accent-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  opacity: 0.75;
}

/* ========== STEPS GRID ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.step-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== WAYS GRID / WAY CARDS ========== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.way-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 45px 35px;
  transition: border-color 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}
.section-alt .way-card {
  background: var(--bg-primary);
}
.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.way-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}
.way-card:hover::before { transform: scaleX(1); }
.way-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.way-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.way-card-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s;
}
.way-card-link:hover { color: var(--accent-hover); }
.way-card-link::after { content: ' >'; margin-left: 2px; transition: margin-left 0.3s; }
.way-card-link:hover::after { margin-left: 6px; }

/* ========== WHAT CHANGES LIST ========== */
.check-list {
  max-width: 560px;
}
.check-list li {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

/* ========== TESTIMONIAL ========== */
.testimonial-block {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  position: relative;
}
.testimonial-block::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 8px;
}
.testimonial-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0 0 20px;
}
.testimonial-block cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== BOTTOM CTA STRIP ========== */
.bottom-cta-section .bottom-cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.4;
}
.bottom-cta-section .cta-button-wrap {
  text-align: center;
  margin-bottom: 20px;
}

/* ========== PAGE CONTENT (interior) ========== */
.page-hero {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.page-hero .section-title { margin-bottom: 0; }
.page-hero .section-divider { margin-bottom: 0; }

.page-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.page-content .entry-content > * + * {
  margin-top: 1.25em;
}
.page-content .entry-content h1,
.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.65em;
}
.page-content .entry-content h1 { font-size: clamp(2rem, 4vw, 2.5rem); }
.page-content .entry-content h2 { font-size: clamp(1.65rem, 3vw, 2rem); }
.page-content .entry-content h3 { font-size: 1.45rem; }
.page-content .entry-content p,
.page-content .entry-content li {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.88;
}
.page-content .entry-content ul,
.page-content .entry-content ol {
  list-style: disc;
  padding-left: 1.35em;
  margin: 1em 0;
}
.page-content .entry-content ol { list-style: decimal; }
.page-content .entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content .entry-content a:hover { color: var(--accent-hover); }

/* CTA below interior page content — inside .page-content so it aligns with prose column */
.page-cta-wrap {
  text-align: left;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.page-cta-wrap .cta-button {
  text-decoration: none;
}

/* ========== CALENDLY ========== */
.calendly-section {
  min-height: 700px;
  margin-top: 40px;
}
.calendly-section .calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  width: 100%;
  max-width: 100%;
}

/* ========== ABOUT PHOTO (Customizer — optional blocks) ========== */
.about-photo-wrap { position: relative; }
.about-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-light);
  z-index: 1;
  pointer-events: none;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-social a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }
.footer-social .footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p,
.footer-bottom .footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-legal a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--accent); }
.footer-legal span {
  margin: 0 10px;
  opacity: 0.5;
}

/* ========== WP CORE OVERRIDES ========== */
.wp-block-image img { height: auto; }
.page-content .entry-content .alignwide { max-width: min(100%, calc(750px + 80px)); margin-left: auto; margin-right: auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social { align-items: center; }
  .footer-nav ul { justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 70px 0; }

  .header-cta-bar-inner {
    padding: 10px 0;
  }
  .header-cta-top {
    width: 100%;
    max-width: 340px;
    text-align: center;
    white-space: normal;
    padding: 12px 20px;
  }

  .header-nav-group {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0 24px;
  }
  .header-nav-group.open {
    display: flex;
  }
  .main-navigation ul { flex-direction: column; }
  .main-navigation a { padding: 14px 24px; font-size: 0.85rem; }

  .mobile-toggle { display: flex; }

  .hero { padding: 80px 24px 70px; min-height: 0; }
  .hero-logo-text { font-size: 2.4rem; }

  .steps-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
