/* PRH Bénin – Brand Identity Override */
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,700;0,800;1,700&family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --prh-dark:    #1E2535;
  --prh-lilas:   #CEA6E3;
  --prh-citron:  #ACE31E;
  --prh-violet:  #573CF9;
  --prh-purple:  #8F52BF;
  --prh-coral:   #FF4C00;
  --prh-orange:  #FFB666;
  --prh-light:   #EAEAEA;
  --prh-bg:      #F4F4F5;
  --prh-white:   #FFFFFF;
}

/* ── Typography ───────────────────────────────────── */
body {
  font-family: 'Fira Sans', sans-serif;
  color: var(--prh-dark);
  background: var(--prh-white);
}

h1, h2, h3, h4, h5, h6,
.section-headding h2,
.hero-content h1,
.hero-content h2,
.breadcrumb-content h2 {
  font-family: 'Alegreya', serif;
  font-weight: 700;
  color: var(--prh-dark);
}

/* ── Header ───────────────────────────────────────── */
.header .col-lg-9 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .menu {
  order: 1;
}

.header .hr_btn {
  order: 2;
  float: none;
  height: auto;
  padding-left: 24px;
}

.header {
  background: var(--prh-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header.sticky {
  background: var(--prh-dark);
}

.header .menu nav ul li a {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}

.header .menu nav ul li a:hover,
.header .menu nav ul li.current-menu-item > a {
  color: var(--prh-citron);
}

.header .menu nav ul li.current-menu-item > a::after {
  background: var(--prh-citron);
}

.logo img { max-height: 60px; }

.canvas_open a span {
  background: var(--prh-white) !important;
}

/* CTA button in header */
.hr_btn .button-2 {
  background: var(--prh-citron);
  color: var(--prh-dark);
  border-color: var(--prh-citron);
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 24px;
}
.hr_btn .button-2:hover {
  background: var(--prh-dark);
  border-color: var(--prh-dark);
  color: var(--prh-white);
}

/* ── Hero Section ─────────────────────────────────── */
.hero-area {
  background: var(--prh-dark);
  position: relative;
  overflow: hidden;
}

.hero-area::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,60,249,.25) 0%, transparent 70%);
}

.hero-area::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172,227,30,.15) 0%, transparent 70%);
}

.hero-content h1,
.hero-content h2 {
  font-family: 'Alegreya', serif;
  font-weight: 800;
  color: var(--prh-white);
  line-height: 1.15;
}

.hero-content h1 span,
.hero-content h2 span {
  color: var(--prh-citron);
}

.hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  font-weight: 300;
}

.hero-content .button-1 {
  background: var(--prh-citron);
  color: var(--prh-dark);
  border-color: var(--prh-citron);
  font-weight: 700;
}
.hero-content .button-1:hover {
  background: transparent;
  color: var(--prh-citron);
}

.hero-content .button-2 {
  border-color: rgba(255,255,255,.4);
  color: var(--prh-white);
}
.hero-content .button-2:hover {
  background: var(--prh-white);
  color: var(--prh-dark);
}

/* Typed text cursor */
.typed-cursor { color: var(--prh-citron); }

/* ── Section headings ─────────────────────────────── */
.section-headding .heading-label {
  color: var(--prh-violet);
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-headding h2 {
  font-family: 'Alegreya', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--prh-dark);
  margin-top: 8px;
}

/* ── Buttons ──────────────────────────────────────── */
.button-1 {
  background: var(--prh-violet);
  border-color: var(--prh-violet);
  color: var(--prh-white);
  border-radius: 6px;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  transition: all .25s;
}
.button-1:hover {
  background: var(--prh-dark);
  border-color: var(--prh-dark);
  color: var(--prh-white);
}

/* ── Feature / About item boxes ──────────────────── */
.about_item_box {
  background: var(--prh-white);
  border-radius: 12px;
  border: 1px solid var(--prh-light);
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s;
}
.about_item_box:hover {
  box-shadow: 0 8px 32px rgba(87,60,249,.12);
  transform: translateY(-4px);
}

.about_item_box .icon { font-size: 2.5rem; }
.about_item_box h4 {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  margin: 16px 0 8px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--prh-violet), var(--prh-lilas));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Counter / Stats ─────────────────────────────── */
.counter-area {
  background: var(--prh-dark);
}
.counter-item h2, .counter-item span { color: var(--prh-white); }
.counter-item p { color: var(--prh-lilas); font-size: 14px; }

/* ── Pricing / Formations cards ──────────────────── */
.pricing-item {
  border-radius: 12px;
  border: 2px solid var(--prh-light);
  padding: 36px 32px;
  transition: border-color .25s, box-shadow .25s;
}
.pricing-item:hover { border-color: var(--prh-violet); }
.pricing-item.active {
  background: var(--prh-dark);
  border-color: var(--prh-dark);
}
.pricing-item.active .pricing-header h4,
.pricing-item.active .pricing-header h2,
.pricing-item.active .pricing-content ul li { color: var(--prh-white); }

.pricing-item .pricing-header h4 {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prh-violet);
  margin-bottom: 8px;
}
.pricing-item .pricing-header h2 {
  font-family: 'Alegreya', serif;
  font-size: 2.8rem;
}

.pricing-item .badge {
  background: var(--prh-citron) !important;
  color: var(--prh-dark) !important;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonial-item {
  background: var(--prh-bg);
  border-radius: 12px;
  border-left: 4px solid var(--prh-citron);
}

/* ── Blog cards ──────────────────────────────────── */
.blog-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--prh-light);
  transition: box-shadow .25s;
}
.blog-item:hover { box-shadow: 0 8px 32px rgba(30,37,53,.1); }
.blog-item .content { padding: 20px; }
.blog-item .content h3 {
  font-family: 'Alegreya', serif;
  font-size: 1.2rem;
}

/* ── Subscribe / CTA area ────────────────────────── */
.subscribe-area {
  background: var(--prh-violet) !important;
  background-image: none !important;
}
.subscribe-content h2 {
  color: var(--prh-white);
  font-family: 'Alegreya', serif;
  font-size: 2.4rem;
}
.subscribe-content p { color: rgba(255,255,255,.8); }
.subscribe-content input[type="email"] {
  border-radius: 6px 0 0 6px;
}
.subscribe-content button {
  background: var(--prh-citron);
  color: var(--prh-dark);
  font-weight: 700;
  border-radius: 0 6px 6px 0;
  border: none;
}
.subscribe-content ul li { color: rgba(255,255,255,.8); }
.subscribe-content ul li i { color: var(--prh-citron); }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb-area {
  background: var(--prh-dark) !important;
  background-image: none !important;
  padding: 80px 0 60px;
}
.breadcrumb-content h2 {
  color: var(--prh-white);
  font-family: 'Alegreya', serif;
  font-size: 2.6rem;
}
.breadcrumb-content ul li a { color: var(--prh-lilas); }
.breadcrumb-content ul li { color: rgba(255,255,255,.6); }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--prh-dark); }
.footer .f-widgets-item h3 {
  font-family: 'Alegreya', serif;
  color: var(--prh-white);
}
.footer .f-widgets-item p { color: rgba(255,255,255,.6); }
.footer .f-widgets-item ul li a { color: rgba(255,255,255,.6); }
.footer .f-widgets-item ul li a:hover { color: var(--prh-citron); }
.footer .copy-f-text p { color: rgba(255,255,255,.5); }
.footer .copy-f-text a { color: var(--prh-citron); }
.footer .footer_social ul li a {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.footer .footer_social ul li a:hover {
  background: var(--prh-citron);
  color: var(--prh-dark);
}

/* ── Mobile menu ─────────────────────────────────── */
.offcanvas_menu { background: var(--prh-dark); }
.offcanvas_main_menu li a { color: rgba(255,255,255,.85); }

/* ── Scroll-to-top ───────────────────────────────── */
.scroll-area {
  background: var(--prh-citron);
  color: var(--prh-dark);
}

/* ── Team cards ──────────────────────────────────── */
.team-item .content { text-align: center; padding: 16px 0; }
.team-item .content h4 {
  font-family: 'Alegreya', serif;
  color: var(--prh-dark);
}
.team-item .content span { color: var(--prh-violet); font-weight: 500; }
.team-item .social ul li a {
  background: var(--prh-light);
  color: var(--prh-dark);
}
.team-item .social ul li a:hover {
  background: var(--prh-violet);
  color: var(--prh-white);
}

/* ── Feature list / analytics section ───────────── */
.feature-item .icon {
  background: linear-gradient(135deg, var(--prh-violet), var(--prh-lilas));
  border-radius: 10px;
  color: var(--prh-white);
}
.feature-item h4 { font-family: 'Alegreya', serif; }

/* ── Form inputs ──────────────────────────────────── */
.single-input input,
.single-input textarea {
  border: 1px solid var(--prh-light);
  border-radius: 6px;
  font-family: 'Fira Sans', sans-serif;
}
.single-input input:focus,
.single-input textarea:focus {
  border-color: var(--prh-violet);
  outline: none;
}
.contact-form button[type="submit"] {
  background: var(--prh-citron);
  color: var(--prh-dark);
  font-weight: 700;
  border-radius: 6px;
  border: none;
  font-family: 'Fira Sans', sans-serif;
}
.contact-form button[type="submit"]:hover {
  background: var(--prh-violet);
  color: var(--prh-white);
}

/* ── Utility ─────────────────────────────────────── */
.section-padding   { padding: 90px 0; }
.section-padding-2 { padding: 90px 0; }
.bg-light-prh { background: var(--prh-bg); }
