/*
Theme Name: PinkiTechi
Theme URI: https://pinkitechi.com
Description: QA sandbox site — plum, magenta, coral palette
Author: Jennifer (QE Tester)
Version: 2.0.0
*/

/* ── PALETTE ──────────────────────────────────── */
:root {
  --plum:        #2B1240;
  --berry:       #8B2B6B;
  --coral-rose:  #C44B6A;
  --coral:       #D4705A;
  --peach:       #E8A882;
  --lavender:    #C39ABF;
  --blush:       #FDF5EE;
  --blush-mid:   #F5E6D8;
  --white:       #ffffff;
  --text-dark:   #1E0A2E;
  --text-mid:    #4A2560;
  --text-light:  #ffffff;
  --radius:      14px;
  --max-w:       1200px;
  --font:        'Inter', -apple-system, Arial, sans-serif;
  --shadow:      0 4px 20px rgba(43,18,64,0.12);
  --shadow-hover:0 12px 40px rgba(43,18,64,0.22);
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--berry); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── HEADER ───────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--plum);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w); margin: 0 auto;
}
.site-logo img  { height: 52px; width: auto; }
.site-logo span {
  font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.site-logo em   { color: var(--peach); font-style: normal; }

.primary-nav ul { list-style: none; display: flex; gap: 4px; }
.primary-nav a  {
  display: block; padding: 9px 16px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.82);
  border-radius: 8px; transition: all 0.2s;
}
.primary-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

.header-cta {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 25px; font-weight: 700;
  font-size: 14px; letter-spacing: 0.3px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--coral-rose); text-decoration: none; }

.nav-hamburger {
  display: none; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
}

/* ── HERO ─────────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  background: var(--plum);
  color: var(--white);
  padding: 110px 24px 90px;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #8B2B6B55 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, #C44B6A33 0%, transparent 55%),
              linear-gradient(160deg, #2B1240 0%, #4A1259 50%, #2B1240 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  background: var(--coral);
  color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 25px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--peach) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 19px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 38px; line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 25px;
  font-weight: 700; font-size: 15px;
  transition: all 0.2s; text-decoration: none !important;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-rose); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* wave divider */
.hero-wave {
  display: block; width: 100%;
  margin-bottom: -2px; line-height: 0;
}

/* ── FEATURE STRIP ────────────────────────────── */
.feature-strip { background: var(--blush-mid); border-bottom: 1px solid #EDD5C5; }
.feature-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w); margin: 0 auto;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 28px 16px;
  border-right: 1px solid #EDD5C5;
  color: var(--text-dark); text-decoration: none !important;
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: #F0DBCA; }
.feature-icon {
  width: 52px; height: 52px; margin-bottom: 10px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 24px;
}
.feature-label { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; color: var(--berry); }

/* ── SECTIONS ─────────────────────────────────── */
.section          { padding: 80px 24px; }
.section-blush    { background: var(--blush); }
.section-blush-mid{ background: var(--blush-mid); }
.section-dark     { background: var(--plum); color: var(--white); }
.section-berry    { background: var(--berry); color: var(--white); }

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800; text-align: center;
  color: var(--text-dark); margin-bottom: 10px;
}
.section-dark .section-title,
.section-berry .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px; text-align: center;
  color: var(--text-mid); margin-bottom: 52px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.section-dark .section-subtitle,
.section-berry .section-subtitle { color: rgba(255,255,255,0.75); }

/* ── CARDS ────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; max-width: var(--max-w); margin: 0 auto;
}
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.card-header {
  padding: 14px 20px; font-weight: 700;
  font-size: 13px; color: var(--white);
  letter-spacing: 0.8px; text-transform: uppercase;
}
.card-header.plum       { background: var(--plum); }
.card-header.berry      { background: var(--berry); }
.card-header.coral-rose { background: var(--coral-rose); }
.card-header.coral      { background: var(--coral); color: var(--white); }
.card-header.peach      { background: var(--peach); color: var(--text-dark); }
.card-header.lavender   { background: var(--lavender); color: var(--text-dark); }

.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--text-dark); }
.card-text  { font-size: 14px; color: #5A3A6A; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.card-link  {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--berry);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-top: auto;
}
.card-link::after { content: '›'; font-size: 18px; line-height: 1; }
.card-link:hover  { color: var(--coral-rose); text-decoration: none; }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 60%, var(--coral-rose) 100%);
  color: var(--white); text-align: center; padding: 90px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.cta-banner .section-title  { color: var(--white); position: relative; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.8); position: relative; }
.cta-banner .hero-buttons   { position: relative; }

/* ── FOOTER ───────────────────────────────────── */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.65); padding: 60px 24px 28px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-brand .site-logo span { font-size: 20px; }
.footer-nav h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--peach); margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a  { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-nav a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; max-width: var(--max-w); margin: 0 auto;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .primary-nav, .header-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .section { padding: 52px 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
