/* ============================================
   PRUNE TSIMI — style.css
   prunetsimi.com
   ============================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'CenturyGothic';
  src: url('/fonts/centurygothic.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CenturyGothic';
  src: url('/fonts/centurygothic-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CUSTOM PROPERTIES ── */
:root {
  --yellow:     #ffff00;
  --navy:       #090435;
  --offwhite:   #f5f0e8;
  --magenta:    #db007d;
  --white:      #ffffff;
  --gray-text:  #555555;

  --font-head:  Georgia, 'Times New Roman', serif;
  --font-body:  'CenturyGothic', 'Century Gothic', 'Trebuchet MS', sans-serif;

  --section-v:  80px;
  --section-h:  48px;
  --max-content: 640px;

  /* Hero sizing */
  --portrait-w: 720px;   /* 1 — 2x wider than original 360px */
  --portrait-h: 540px;   /* height stays same → proportions stretch horizontally */
  --name-max:   450px;   /* 3 — hero-name 2x smaller (was 900px) */
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--navy);
  overflow-x: hidden;
  padding-bottom: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--yellow);
  padding: 12px var(--section-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 4 — logo 2.5x smaller: was 72px → 29px */
.nav-logo {
  height: 29px;
  width: auto;
}

/* 5 — contact me! 1.5x bigger: was 14px → 21px */
.nav-contact {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
}
.nav-contact:hover {
  text-decoration: underline;
}

/* ── HERO ── */
.hero {
  background-color: var(--yellow);
  padding-top: 70px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* 3 — hero-name is background of the hero-name-wrap div, 2x smaller */
.hero-name-wrap {
  position: relative;
  width: 100%;
  max-width: var(--name-max);
  margin: 0 auto;
  /* height is derived from image proportions: name image ~500x360 ratio ≈ 0.72 */
  /* At 450px wide → ~324px tall */
  height: 324px;
  background-image: url('/images/logo-name.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

/* hero-name img is now hidden — background handles display */
.hero-name {
  display: none;
}

/* hero-middle: portrait overlaps bottom 10% of hero-name-wrap */
.hero-middle {
  position: relative;
  width: 100%;
  max-width: 1200px;
  /* pull up so portrait covers bottom 10% of name: 10% of 324px = 32px */
  margin-top: -32px;
  padding: 0 var(--section-h);
  display: grid;
  /* 1 — portrait 2x wider: 720px center column */
  grid-template-columns: 1fr var(--portrait-w) 1fr;
  /* 2 — claim texts align to TOP of the row */
  align-items: start;
}

/* 1 — portrait 2x wider, same height, background-size cover keeps proportions */
.hero-portrait {
  width: var(--portrait-w);
  height: var(--portrait-h);
  background-image: url('/images/portrait.webp');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

/* 2 — claim texts at top of hero-middle, overlapping portrait */
.hero-claim-text {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  padding-top: 24px;
  position: relative;
  z-index: 3;
}
.hero-claim-text.left {
  text-align: right;
  padding-right: 40px;
}
.hero-claim-text.right {
  text-align: left;
  padding-left: 40px;
}

/* 6 — scribble underline 4x bigger */
.pricing-wrap {
  position: relative;
  display: inline-block;
}
.scribble-underline {
  position: absolute;
  bottom: -40px;
  left: -32px;
  width: calc(100% + 64px);
  height: 56px;
  object-fit: fill;
  pointer-events: none;
}

/* ── ABOUT ── */
.about {
  background-color: var(--offwhite);
  padding: var(--section-v) var(--section-h);
}

.about h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.about p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 20px;
}
.about p:last-child {
  margin-bottom: 0;
}

.revenu-ref {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 21px);
  color: var(--navy);
  text-decoration: none;
}

.revenu-circle-wrap {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

/* 6 — scribble circle 4x bigger */
.scribble-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320%;
  height: 500%;
  object-fit: fill;
  pointer-events: none;
}

/* ── REVENU SECTION ── */
.revenu-section {
  background-color: var(--yellow);
  padding: var(--section-v) var(--section-h);
}

.revenu-logo-img {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}

.revenu-claim {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.7;
}

.grow-wrap {
  position: relative;
  display: inline-block;
}

/* 9 — to grow: Georgia Bold, 80% of 1.5em = 1.2em */
.grow-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2em;
}

/* 6 — scribble under "to grow" 4x bigger */
.grow-wrap .scribble-underline {
  bottom: -32px;
  left: -24px;
  width: calc(100% + 48px);
  height: 48px;
}

.fog {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 20px;
}

/* 8 — fog-punch: Century Gothic, NOT bold */
.fog-punch {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--navy);
  margin: 32px 0;
  line-height: 1.4;
}

.revenu-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 16px;
}

/* 9 — get more clients / clear actions: Georgia Bold, 80% of 1.5em = 1.2em */
.kw {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2em;
}

.revenu-bullets {
  list-style: none;
  margin-top: 16px;
}
.revenu-bullets li {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.85;
  color: var(--navy);
}

/* ── NUMBERS ── */
/* 10 — no gap, no navy between columns */
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background-color: var(--magenta);
}

.num-card {
  background-color: var(--magenta);
  padding: 60px 36px;
  text-align: center;
}

.num-big {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.num-word {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.num-desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

/* ── LOGOS ── */
.logos-section {
  background-color: var(--offwhite);
  padding: var(--section-v) var(--section-h);
  text-align: center;
}

.logos-section h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  max-width: 860px;
  margin: 0 auto;
}

.logos-grid img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── CONTACT ── */
.contact {
  background-color: var(--offwhite);
  padding: var(--section-v) var(--section-h);
  text-align: center;
}

.contact h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

/* 11 — all contact links in Century Gothic */
.contact-email {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  color: var(--navy);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.contact-email:hover {
  text-decoration: underline;
}

/* 11 — book a call is now a plain link, Century Gothic, between email and facebook */
.contact-book-link {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 21px);
  color: var(--navy);
  text-decoration: underline;
  display: block;
  margin-bottom: 20px;
}
.contact-book-link:hover {
  opacity: 0.7;
}

/* 11 — social row: Century Gothic */
.social-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.social-row img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.social-row a {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 18px);
  color: var(--navy);
  text-decoration: none;
}
.social-row a:hover {
  text-decoration: underline;
}

/* ── CHICAGO ── */
.chicago {
  background-color: var(--navy);
  height: 300px;
  overflow: hidden;
}
.chicago img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

/* ── STICKY BUTTON ── */
/* 7 — bottom right, Georgia Bold, 2 lines, rounded corners, gray text, no shadow */
.sticky-btn {
  position: fixed;
  bottom: 28px;
  right: 36px;
  z-index: 9999;
  display: inline-block;
  background-color: var(--navy);
  color: var(--gray-text);
  font-family: var(--font-head);
  font-size: 21px; /* 1.5x bigger than 14px */
  font-weight: 700;
  line-height: 1.3;
  padding: 16px 28px;
  text-decoration: none;
  text-align: center;
  border-radius: 8px; /* rounded corners */
  box-shadow: none;
  border: none;
  max-width: 220px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  transform: translateZ(0);
}
.sticky-btn:hover {
  background-color: var(--yellow);
  color: var(--navy);
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up {
    opacity: 1;
    transition: none;
  }
}
