/* ===============================
   Kate Fedotova — Global Styles
   Fonts: Bowlby One, Open Sans
   Accent: #E148C6
=================================*/

:root{
  --ink: #1d0e10;              /* primary text (very dark plum) */
  --muted: #666666;            /* secondary text */
  --bg: #ffffff;               /* page background */
  --card: #ffffff;             /* surfaces */
  --accent: #E148C6;           /* from image */
  --btn: #1d0e10;              /* primary button bg (ink) */
  --btn-2: #6f6f6f;            /* secondary button bg */
  --radius: 12px;
  --shadow-sm: 0 6px 18px rgba(0,0,0,.10);
  --shadow-md: 0 12px 40px rgba(0,0,0,.14);
}

/* ---------------- Base reset (light) ---------------- */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{
  padding: 0;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

a{
  color: inherit;
  text-decoration: none;
}

/* Focus visibility */
:focus-visible{
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Typography */
body{
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  font-size: 16px;
}

/* ---------------- Header ---------------- */
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

header h1{
  font-family: "Bowlby One", sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0;
}

header nav{
  display: flex;
  gap: 1rem;
  align-items: center;
}

header nav a{
  font-size: 0.98rem;
  text-underline-offset: 2px;
  padding: .25rem .4rem;
  border-radius: 6px;
  transition: opacity .2s ease, background-color .2s ease;
}

header nav a:hover{
  opacity: .8;
  background: rgba(225,72,198,.10); /* accent tint */
}

/* ---------------- Hero ---------------- */
.hero{
  padding: 2rem 1rem 0;
}

.hero-grid{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-title{
  font-family: "Bowlby One", sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 .6rem 0;
  text-shadow: 0 2px 0 rgba(0,0,0,.05);
}

/* short intro */
.hero-sub{
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  margin: 0 0 1.2rem 0;
  max-width: 62ch;
}

/* role pill */
.now-pill{
  display: inline-block;
  margin: 0 0 .7rem 0;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(225,72,198,.10);
  border: 1px solid rgba(225,72,198,.25);
  font-size: .95rem;
}

.now-pill .pill-link{
  text-decoration: underline;
}

/* CTAs */
.hero-ctas{
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn{
  display: inline-block;
  padding: .72rem 1.05rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: #fff;
  background: var(--btn);
  box-shadow: var(--shadow-sm);
  transition: transform .06s ease, opacity .2s ease;
}

.btn:hover{ opacity: .9; }
.btn:active{ transform: translateY(1px); }

.btn.btn-secondary{
  background: var(--btn-2);
}

.link-inline{
  text-decoration: underline;
}

/* Hero image with soft accent glow */
.hero-figure{ text-align: right; }

.hero-figure img{
  width: min(440px, 92%);
  height: auto;
  filter:
    drop-shadow(0 12px 30px rgba(0,0,0,.12))
    drop-shadow(0 0 50px rgba(225,72,198,.18)); /* accent glow */
}

/* ---------------- Cards (if added later) ---------------- */
.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.4rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-figure{ text-align: center; }
  .hero-figure img{ width: min(340px, 85%); }
}

@media (max-width: 600px){
  header{ padding: .8rem .9rem; }
  header nav a{ font-size: .95rem; }
}

/* ---------------- Motion preferences ---------------- */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}
