/* ============================================
   DCW — Divine Connexion Worldwide
   Site Web Officiel — Styles Globaux
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --blue: #73c6f0;
  --blue-dark: #4aabdc;
  --blue-deep: #1a6fa0;
  --peach: #e0a47f;
  --peach-light: #f0c9ad;
  --noir: #333333;
  --blanc: #ffffff;
  --gris: #f5f7f9;
  --gris-mid: #e8edf2;
  --shadow: 0 4px 24px rgba(26,111,160,0.10);
  --radius: 14px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.65;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin-bottom: 1rem; }
a { color: var(--blue-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--peach); }

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gris); }
.section-dark { background: var(--noir); color: white; }
.section-blue { background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); color: white; }

.section-label {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--blue-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after { content:''; width: 36px; height: 2px; background: var(--blue); }
.section-dark .section-label, .section-blue .section-label { color: var(--peach-light); }
.section-dark .section-label::after, .section-blue .section-label::after { background: var(--peach-light); }

.section-title { margin-bottom: 8px; }
.section-title span { color: var(--blue-dark); }
.section-dark .section-title, .section-blue .section-title { color: white; }
.section-dark .section-title span { color: var(--blue); }

.title-accent { width: 48px; height: 4px; background: var(--peach); border-radius: 2px; margin-bottom: 40px; }

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::after { display: none; }
.text-center .title-accent { margin: 8px auto 40px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--blue);
  box-shadow: 0 2px 20px rgba(115,198,240,0.12);
  transition: all var(--transition);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1080px; margin: 0 auto;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.1rem; color: var(--blue-deep);
}
.navbar-brand img { width: 42px; height: 42px; object-fit: contain; }
.navbar-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand small { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 400; color: #888; letter-spacing: 0.1em; text-transform: uppercase; }

.navbar-nav { display: flex; align-items: center; gap: 6px; list-style: none; }
.navbar-nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.875rem;
  font-weight: 500; color: var(--noir); transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: var(--gris); color: var(--blue-deep);
}
.navbar-nav .btn-don {
  background: var(--peach); color: white !important; padding: 9px 20px;
  border-radius: 8px; font-weight: 600;
}
.navbar-nav .btn-don:hover { background: #d4855a; }

/* Translate widget */
.translate-wrap { margin-left: 12px; }
#google_translate_element select {
  border: 1px solid var(--gris-mid); border-radius: 8px;
  padding: 6px 10px; font-size: 0.8rem; background: var(--gris);
  color: var(--noir); cursor: pointer;
}
.goog-te-gadget-simple { border: none !important; background: transparent !important; }

/* Mobile menu */
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--noir); margin: 5px 0; border-radius: 2px; transition: all var(--transition); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue-deep); color: white; }
.btn-primary:hover { background: var(--blue-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,160,0.25); }
.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-peach { background: var(--peach); color: white; }
.btn-peach:hover { background: #d4855a; color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,164,127,0.35); }
.btn-outline { background: transparent; color: var(--blue-deep); border-color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: white; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 45%, var(--blue) 100%);
  color: white; padding-top: 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(224,164,127,0.08);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: white; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 7px 18px; border-radius: 20px;
  margin-bottom: 24px; font-weight: 500;
}
.hero h1 { color: white; margin-bottom: 12px; }
.hero h1 em { color: var(--peach-light); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  margin-bottom: 36px; font-weight: 300; line-height: 1.7;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.hero-badge {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-logo {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  position: relative; z-index: 2;
}
.hero-logo-ring {
  width: 240px; height: 240px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 72px rgba(0,0,0,0.25);
}
.hero-logo-ring img { width: 190px; height: 190px; object-fit: contain; }
.hero-logo-tagline {
  color: rgba(255,255,255,0.8); font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: var(--peach-light); line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,111,160,0.15); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--noir); }
.card-text { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }

/* ── STATS BAR ── */
.stats-strip {
  background: var(--noir); color: white; padding: 48px 0;
}
.stats-strip-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  color: var(--blue); line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── PHOTO ── */
.photo-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-caption {
  font-size: 0.8rem; color: #888; font-style: italic;
  margin-top: 8px; text-align: center;
}

/* ── QUOTE / HIGHLIGHT ── */
.quote-block {
  border-left: 4px solid var(--peach); padding: 20px 28px;
  background: var(--gris); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 1.05rem; line-height: 1.8; color: #555;
}
.quote-block cite { display: block; margin-top: 12px; font-style: normal; font-weight: 600; font-size: 0.875rem; color: var(--blue-deep); }

/* ── ACTION CARDS ── */
.action-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition);
}
.action-card:hover { transform: translateY(-5px); }
.action-card-img { height: 200px; overflow: hidden; }
.action-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.action-card:hover .action-card-img img { transform: scale(1.05); }
.action-card-body { padding: 24px; background: white; }
.action-card-tag {
  display: inline-block; background: var(--blue); color: white;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; font-weight: 600;
}
.action-card-tag.peach { background: var(--peach); }
.action-card-tag.dark { background: var(--noir); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--gris-mid); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-dark); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--blue);
}
.timeline-year { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-dark); font-weight: 600; margin-bottom: 4px; }
.timeline-title { font-weight: 700; margin-bottom: 6px; }
.timeline-text { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ── DON PAGE ── */
.don-hero {
  background: linear-gradient(135deg, var(--peach) 0%, #d4855a 100%);
  color: white; padding: 120px 0 80px; text-align: center;
}
.don-hero h1 { color: white; }
.don-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  color: white; line-height: 1; margin: 20px 0 10px;
}
.don-card {
  background: white; border-radius: 20px; padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); margin-bottom: 24px;
}
.don-iban {
  font-family: monospace; font-size: 1rem; background: var(--gris);
  padding: 12px 16px; border-radius: 8px; letter-spacing: 0.05em;
  word-break: break-all; color: var(--noir); margin: 8px 0;
}
.don-method { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.don-method-icon { font-size: 1.8rem; }
.don-method-info strong { display: block; font-size: 0.95rem; }
.don-method-info span { font-size: 0.82rem; color: #888; }

/* ── BLOG ── */
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 180px; overflow: hidden; background: var(--gris); display: flex; align-items: center; justify-content: center; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.72rem; color: #999; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.875rem; color: #666; line-height: 1.6; }
.blog-card-link { font-size: 0.82rem; font-weight: 600; color: var(--blue-deep); margin-top: 14px; display: inline-block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #999; font-weight: 600; margin-bottom: 2px; }
.contact-value { font-size: 0.95rem; font-weight: 500; line-height: 1.55; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gris-mid);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--noir); background: white; margin-bottom: 16px;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--blue-dark);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form label { font-size: 0.8rem; font-weight: 600; color: #666; margin-bottom: 6px; display: block; }

/* ── CANVA IFRAME ── */
.canva-section { padding: 0; }
.canva-frame {
  width: 100%; border: none; display: block;
  min-height: 600px;
}

/* ── FOOTER ── */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.05rem; color: white; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue-dark); color: white; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--peach); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-dark); color: white; border: none;
  font-size: 1.1rem; cursor: pointer; box-shadow: 0 4px 20px rgba(74,171,220,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 500; opacity: 0; transition: all var(--transition);
}
.back-top.visible { opacity: 1; }
.back-top:hover { background: var(--blue-deep); transform: translateY(-3px); }

/* ── AWARD BADGE ── */
.award-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  padding: 20px; border-left: 3px solid var(--peach);
}
.award-icon { font-size: 1.8rem; flex-shrink: 0; }
.award-text strong { display: block; color: white; margin-bottom: 4px; }
.award-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-logo { display: none; }
  .hero-badges { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .grid-2, .grid-2-1, .grid-1-2, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid var(--gris-mid); }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: block; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 56px 0; }
}
