/* Fempower Workshops Inc. - Shared Styles */
:root {
  --berry: #BE185D;
  --berry-dark: #9D174D;
  --berry-light: #FCE7F3;
  --indigo: #1E1B4B;
  --indigo-light: #312E81;
  --off-white: #FDF2F8;
  --slate: #0F172A;
  --slate-muted: #475569;
  --white: #FFFFFF;
  --border: #FBCFE8;
  --shadow: 0 4px 6px -1px rgba(30, 27, 75, 0.08), 0 2px 4px -2px rgba(30, 27, 75, 0.06);
  --radius: 10px;
  --max-width: 1100px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: var(--berry); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--berry-dark); }

/* Top Bar */
.top-bar {
  background: var(--indigo);
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
}
.top-bar strong { color: #F9A8D4; }

/* Header / Nav */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate);
  text-decoration: none;
}
.logo:hover { color: var(--slate); }
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo span { line-height: 1.2; }
.logo small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--slate-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.nav a {
  color: var(--slate-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover,
.nav a.active {
  background: var(--berry-light);
  color: var(--berry-dark);
}

/* Main content */
main {
  flex: 1;
  width: 100%;
}

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

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--berry) 0%, #DB2777 45%, var(--indigo) 100%);
  color: var(--white);
  padding: 4rem 1.25rem 4.5rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero .sub {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--white);
  color: var(--berry-dark);
  border-color: var(--white);
}
.btn-primary:hover {
  background: var(--berry-light);
  color: var(--berry-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--slate);
}
.section-lead {
  color: var(--slate-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}
.section-alt {
  background: var(--white);
}

/* Cards / Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 10px 15px -3px rgba(30, 27, 75, 0.1); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--berry-light);
  color: var(--berry);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--slate);
}
.card p {
  color: var(--slate-muted);
  font-size: 0.95rem;
}

/* Mission highlight */
.mission-box {
  background: var(--berry-light);
  border-left: 4px solid var(--berry);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.mission-box p {
  color: var(--slate);
  font-size: 1.05rem;
}

/* Value cards */
.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.value-card .card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Program cards */
.program-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.program-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--berry);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.program-card h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.program-card p { color: var(--slate-muted); font-size: 0.95rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.info-list {
  list-style: none;
}
.info-list li {
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.info-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-muted);
  margin-bottom: 0.2rem;
}
.info-list span, .info-list a {
  font-size: 1.05rem;
  color: var(--slate);
}

/* Form */
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--slate);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--slate);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn {
  width: 100%;
  text-align: center;
  border: none;
  background: var(--berry);
  color: var(--white);
}
.contact-form .btn:hover {
  background: var(--berry-dark);
  color: var(--white);
}

/* Domain notice */
.domain-notice {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--slate-muted);
  margin: 2rem 0;
}
.domain-notice strong { color: var(--slate); }

/* Footer */
.site-footer {
  background: var(--indigo);
  color: #A5B4FC;
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: auto;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-mission {
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.footer-meta {
  font-size: 0.85rem;
}
.footer-meta a { color: #A5B4FC; }
.footer-meta a:hover { color: #F9A8D4; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: #A5B4FC; }
.footer-col a:hover { color: #F9A8D4; }

.footer-bottom {
  border-top: 1px solid #312E81;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom p { margin-bottom: 0.35rem; }
.footer-bottom .official {
  color: #C7D2FE;
}

/* Page header (inner pages) */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.page-header p {
  color: var(--slate-muted);
  max-width: 600px;
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--slate);
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
}
