/* ============================================
   ENJANG'IW WORDPRESS THEME — MAIN STYLES
   ============================================ */

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

:root {
  --orange: #E8680A;
  --orange-dark: #B84E00;
  --orange-light: #FFF0E0;
  --purple: #3D1A6E;
  --purple-mid: #6B3FAA;
  --cream: #FDF8F0;
  --wood: #C8924A;
  --wood-light: #F5DEB3;
  --dark: #120A1E;
  --text: #1A0E30;
  --muted: #6B5080;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.enj-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2.5rem;
  background: var(--purple);
}
.enj-nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; color: var(--orange); text-decoration: none; letter-spacing: 2px; }
.enj-nav-links { display: flex; gap: 2rem; list-style: none; }
.enj-nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; transition: color 0.2s; }
.enj-nav-links a:hover { color: var(--orange); }
.enj-nav-cta { background: var(--orange) !important; color: #fff !important; padding: 0.45rem 1.4rem; border-radius: 50px; }
.enj-nav-cta:hover { background: var(--orange-dark) !important; }
@media(max-width:700px){ .enj-nav-links { display: none; } }

/* ── HERO ── */
.enj-hero {
  min-height: 100vh;
  background: var(--purple);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}
.enj-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,104,10,0.18) 0%, transparent 60%);
}
.enj-hero::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px);
}
.enj-hero-text { position: relative; z-index: 2; }
.enj-hero-eyebrow {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.enj-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  color: #fff; line-height: 0.88; margin-bottom: 0.2rem;
}
.enj-hero h1 em { color: var(--orange); font-style: normal; }
.enj-hero-tagline { font-size: 1.25rem; font-weight: 900; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin: 1rem 0 0.6rem; }
.enj-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; max-width: 420px; margin-bottom: 2rem; }
.enj-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.enj-hero-img { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.enj-hero-img img {
  width: 100%; max-width: 480px; border-radius: 20px;
  animation: enj-float 4s ease-in-out infinite;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
@keyframes enj-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@media(max-width:800px){
  .enj-hero { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; text-align: center; }
  .enj-hero-img { display: none; }
  .enj-hero-btns { justify-content: center; }
}

/* ── BUTTONS ── */
.btn-orange {
  background: var(--orange); color: #fff;
  padding: 1rem 2.4rem; border-radius: 50px;
  font-weight: 900; font-size: 1rem; text-decoration: none;
  letter-spacing: 0.5px; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232,104,10,0.45);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.35); color: #fff;
  padding: 0.95rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(232,104,10,0.12); }

/* ── STATS ── */
.enj-stats {
  background: var(--orange);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.enj-stat { padding: 1.3rem 2.5rem; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.25); }
.enj-stat:last-child { border-right: none; }
.enj-stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; line-height: 1; }
.enj-stat-l { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; margin-top: 2px; }

/* ── SECTION HELPERS ── */
.enj-eyebrow { font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; display: block; }
.enj-big-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem,5vw,4.5rem); color: var(--purple); line-height: 0.95; margin-bottom: 1rem; }
.enj-pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.enj-pill { background: var(--orange-light); color: var(--orange-dark); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }

/* ── HOW TO PLAY (split left) ── */
.enj-split-how {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 70vh;
}
.enj-split-how-img { overflow: hidden; min-height: 500px; max-height: 600px; position: relative; }
.enj-split-how-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; }
.enj-split-how-text { padding: 4rem; background: var(--white); }
.enj-split-how-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
@media(max-width:800px){
  .enj-split-how { grid-template-columns: 1fr; }
  .enj-split-how-img { min-height: 280px; }
  .enj-split-how-text { padding: 2.5rem 1.5rem; }
}

/* ── POURQUOI (purple full width) ── */
.enj-pourquoi { background: var(--purple); padding: 5rem 2rem; }
.enj-pourquoi-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.enj-pourquoi-inner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.enj-pourquoi-inner .enj-big-title { color: #fff; }
.enj-pourquoi-inner .enj-pill { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.enj-pourquoi-img { display: flex; justify-content: center; align-items: center; }
.enj-pourquoi-img img { width: 100%; max-width: 380px; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
@media(max-width:800px){
  .enj-pourquoi-inner { grid-template-columns: 1fr; }
  .enj-pourquoi-img { display: none; }
}

/* ── STEPS ── */
.enj-steps { background: var(--cream); padding: 5rem 2rem; }
.enj-steps-head { text-align: center; margin-bottom: 3.5rem; }
.enj-steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.enj-step-card {
  background: var(--white); border-radius: 18px; padding: 2rem 1.5rem;
  position: relative; border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s; overflow: hidden;
}
.enj-step-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.enj-step-n { position: absolute; top: 1rem; right: 1.2rem; font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--orange); opacity: 0.12; line-height: 1; }
.enj-step-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.enj-step-card h3 { font-size: 1rem; font-weight: 900; color: var(--purple); margin-bottom: 0.4rem; }
.enj-step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── ORDER ── */
.enj-order { background: var(--purple); padding: 5rem 2rem; }
.enj-order-head { text-align: center; margin-bottom: 2.5rem; }
.enj-order-head .enj-big-title { color: #fff; }
.enj-order-inner {
  max-width: 1000px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 3rem;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}
.enj-price-big { font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem; color: var(--orange); line-height: 1; }
.enj-price-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1.5rem; }
.enj-includes { margin-bottom: 1.5rem; }
.enj-includes li { list-style: none; display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 0.55rem; }
.enj-chk { color: var(--orange); font-weight: 900; font-size: 1.1rem; }
.enj-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.enj-qty-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--orange); background: none;
  color: var(--orange); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.enj-qty-btn:hover { background: var(--orange); color: #fff; }
.enj-qty-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #fff; min-width: 2rem; text-align: center; }
.enj-total { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; margin-bottom: 1.5rem; }
.enj-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.enj-trust span { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 700; }
.enj-order-form { display: flex; flex-direction: column; gap: 0.9rem; }
.enj-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.enj-order-form input[type=text],
.enj-order-form input[type=tel],
.enj-order-form select,
.enj-order-form textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid rgba(255,255,255,0.15); border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.enj-order-form input::placeholder,
.enj-order-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.enj-order-form input:focus,
.enj-order-form textarea:focus,
.enj-order-form select:focus { border-color: var(--orange); }
.enj-order-form select option { background: var(--purple); color: #fff; }
.enj-order-form textarea { min-height: 80px; resize: vertical; }
.enj-btn-submit {
  background: var(--orange); color: #fff; border: none; cursor: pointer;
  padding: 1.05rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 900;
  width: 100%; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232,104,10,0.4);
}
.enj-btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.enj-success {
  display: none; background: #0F4D20; border: 2px solid #27AE60;
  border-radius: 10px; padding: 1rem 1.2rem;
  color: #7FFFB2; font-weight: 700; text-align: center; font-size: 0.95rem;
}
@media(max-width:800px){
  .enj-order-inner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .enj-form-row { grid-template-columns: 1fr; }
}

/* ── REVIEWS ── */
.enj-reviews { background: var(--cream); padding: 5rem 2rem; }
.enj-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem; max-width: 1000px; margin: 2.5rem auto 0;
}
.enj-review { background: var(--white); border-radius: 16px; padding: 1.8rem; border-left: 4px solid var(--orange); }
.enj-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 0.7rem; }
.enj-review p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.enj-reviewer { font-weight: 900; color: var(--purple); font-size: 0.88rem; }
.enj-rev-city { font-weight: 400; color: var(--muted); font-size: 0.8rem; }

/* ── FAQ ── */
.enj-faq { background: var(--white); padding: 5rem 2rem; }
.enj-faq-list { max-width: 720px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.8rem; }
.enj-faq-item { background: var(--cream); border-radius: 12px; overflow: hidden; border: 1px solid #EDE8E0; }
.enj-faq-q {
  padding: 1.2rem 1.5rem; font-weight: 900; font-size: 0.92rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--purple); user-select: none;
}
.enj-faq-q::after { content: '+'; font-size: 1.4rem; color: var(--orange); transition: transform 0.2s; line-height: 1; }
.enj-faq-item.open .enj-faq-q::after { transform: rotate(45deg); }
.enj-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; color: var(--muted); font-size: 0.88rem; line-height: 1.65; }
.enj-faq-item.open .enj-faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ── FOOTER ── */
.enj-footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 3rem 2rem; text-align: center; }
.enj-footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--orange); margin-bottom: 0.4rem; }
.enj-footer-tagline { font-size: 0.85rem; margin-bottom: 1.5rem; }
.enj-footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.enj-footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 700; font-size: 0.85rem; transition: color 0.2s; }
.enj-footer-links a:hover { color: var(--orange); }
.enj-footer-copy { font-size: 0.75rem; opacity: 0.35; }

/* ── WordPress body overrides ── */
.enjangiw-page .site-header,
.enjangiw-page .site-footer,
.enjangiw-page #wpadminbar + * > header,
body.page-template-enjangiw .site-header,
body.page-template-enjangiw .site-footer { display: none !important; }
