@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --drc-blue: #1976d2;
  --drc-red: #e53935;
  --drc-gold: #f9a825;
  --drc-light-blue: #dbeafe;
  --drc-dark: #1a2744;
}

body { font-family: 'Montserrat', sans-serif; background: #fff; color: #333; }

a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--drc-blue); box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1.5rem; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .75rem; color: #fff; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand-flag { width: 40px; height: 26px; object-fit: cover; border-radius: 3px; }
.brand-text h1 { font-size: 1.1rem; font-weight: 700; }
.brand-text p  { font-size: .75rem; opacity: .85; }
.lang-toggle { display: flex; gap: .3rem; }
.lang-btn {
  padding: .35rem .75rem; border: none; border-radius: .4rem;
  font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s; background: rgba(255,255,255,.15); color: #fff;
}
.lang-btn.active-fr  { background: var(--drc-red); }
.lang-btn.active-en  { background: var(--drc-dark); }

/* ── NAV ── */
nav {
  background: var(--drc-red); border-top: 2px solid rgba(180,0,0,.2);
  display: flex; justify-content: center; flex-wrap: wrap; gap: .2rem; padding: .4rem 1rem;
}
nav a {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: .5rem; font-size: .9rem; font-weight: 500;
  color: #fff; transition: background .2s, color .2s;
}
nav a:hover { background: rgba(0,0,0,.15); color: #fff; }
nav a.active { background: #fff; color: var(--drc-red); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: all .3s; }
.mobile-nav { display: none; flex-direction: column; background: var(--drc-red); padding: .5rem; border-top: 1px solid rgba(0,0,0,.1); }
.mobile-nav a { padding: .6rem 1rem; border-radius: .4rem; font-size: .9rem; font-weight: 500; color: #fff; }
.mobile-nav a.active { background: #fff; color: var(--drc-red); }
.mobile-nav.open { display: flex; }

/* ── PAGE WRAPPER ── */
.page-bg { background: var(--drc-light-blue); min-height: 100vh; }

/* ── BANNER ── */
.banner {
  position: relative; height: 380px; overflow: hidden;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.banner-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  padding-top: 7rem;
}
.banner-text { text-align: center; padding: 0 1rem; }
.banner-text h1 { font-size: clamp(1.8rem,5vw,3rem); font-weight: 800; color: #fff; margin-bottom: .5rem; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.banner-text p  { font-size: 1rem; color: #bfdbfe; max-width: 600px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem 1rem; max-width: 800px; }
.hero-content h1 { font-size: clamp(1.8rem,5vw,3rem); font-weight: 800; color: #fff; margin-bottom: 2rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); line-height: 1.3; }
.hero-tagline { font-size: 1.1rem; color: rgba(255,255,255,.9); font-style: italic; font-weight: 500; margin-bottom: 0; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 3.5rem; }
.btn-gold {
  background: var(--drc-gold); color: #1a1a1a; font-weight: 700;
  padding: 1rem 2rem; border-radius: .5rem; font-size: 1rem;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
  font-family: 'Montserrat', sans-serif;
}
.btn-gold:hover { background: #fbbf24; transform: scale(1.03); }
.btn-blue {
  background: var(--drc-blue); color: #fff; font-weight: 700;
  padding: 1rem 2rem; border-radius: .5rem; font-size: 1rem;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.btn-blue:hover { background: #1565c0; transform: scale(1.03); }
.scroll-arrow { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: #fff; animation: bounce 1.5s infinite; font-size: 1.5rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── CONTAINER / SECTIONS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
section.content { padding: 3rem 0; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: .75rem; box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding: 1.75rem;
}
.card + .card { margin-top: 1.5rem; }
.card h2 { font-size: 1.25rem; font-weight: 700; color: var(--drc-blue); margin-bottom: 1rem; }
.card p  { color: #555; line-height: 1.7; margin-bottom: .75rem; }

/* ── QUICK NAV HOME ── */
.quick-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-top: 2rem; }
.quick-card {
  border-radius: .75rem; padding: 1.5rem; text-align: center; color: #fff;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform .15s, box-shadow .15s;
  text-decoration: none; display: block;
}
.quick-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.quick-card .icon { font-size: 2rem; margin-bottom: .5rem; }
.qc-blue   { background: linear-gradient(135deg,#1976d2,#1565c0); }
.qc-red    { background: linear-gradient(135deg,#e53935,#c62828); }
.qc-gold   { background: linear-gradient(135deg,#f9a825,#f57f17); }
.qc-green  { background: linear-gradient(135deg,#43a047,#2e7d32); }

/* ── ABOUT PREVIEW ── */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.about-preview img { width: 100%; border-radius: .75rem; object-fit: cover; height: 300px; }
@media(max-width:700px){ .about-preview { grid-template-columns:1fr; } }

/* ── LEADERSHIP ── */
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.leadership-grid img { width: 100%; border-radius: .75rem; object-fit: cover; object-position: top; height: clamp(280px,40vw,520px); }
@media(max-width:700px){ .leadership-grid { grid-template-columns:1fr; } }

/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; background: #f8f9fa; padding: 1.25rem; border-radius: .75rem; }
.value-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.vi-blue  { background:#dbeafe; }
.vi-gold  { background:#fef9c3; }
.vi-red   { background:#fee2e2; }
.vi-green { background:#dcfce7; }
.value-item h4 { font-weight: 600; color: var(--drc-blue); margin-bottom: .25rem; }
.value-item p  { font-size: .85rem; color: #666; }
@media(max-width:600px){ .values-grid { grid-template-columns:1fr; } }

/* ── RESOURCES ── */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; }
.resource-card { background:#fff; border-radius:.75rem; padding:1.5rem; text-align:center; box-shadow:0 2px 10px rgba(0,0,0,.08); }
.resource-icon { width:60px;height:60px;border-radius:50%;background:var(--drc-light-blue);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.6rem; }
.resource-card h3 { font-weight:700;color:var(--drc-blue);margin-bottom:.5rem; }
.resource-card p  { font-size:.9rem;color:#666;line-height:1.6; }

/* ── EVENTS ── */
.event-card { background:#fff;border-radius:.75rem;box-shadow:0 2px 10px rgba(0,0,0,.1);overflow:hidden;max-width:700px;margin:0 auto; }
.event-card img { width:100%;height:260px;object-fit:cover; }
.event-body { padding:2rem; }
.event-date { display:flex;align-items:center;gap:.4rem;color:var(--drc-gold);font-weight:600;margin-bottom:.5rem;font-size:.9rem; }
.event-body h3 { font-size:1.25rem;font-weight:700;color:#111;margin-bottom:.75rem; }
.event-body p  { color:#555;line-height:1.7;margin-bottom:1rem; }
.event-info { background:#eff6ff;border-radius:.5rem;padding:1rem;margin-bottom:1.25rem; }
.event-info-title { font-weight:700;color:var(--drc-blue);margin-bottom:.5rem;font-size:.9rem; }
.event-info-row { font-size:.9rem;color:#444;margin-bottom:.3rem; }
.event-info-row strong { color:#333; }
.badge { display:inline-block;background:#dcfce7;color:#166534;padding:.35rem 1rem;border-radius:999px;font-size:.8rem;font-weight:600;margin-bottom:1.5rem; }
.btn-rsvp { display:inline-block;background:var(--drc-gold);color:#111;font-weight:700;padding:.75rem 2rem;border-radius:.5rem;border:none;cursor:pointer;font-family:'Montserrat',sans-serif;font-size:1rem;transition:background .2s; }
.btn-rsvp:hover { background:#fbbf24; }

/* ── GALLERY ── */
.section-divider { display:flex;align-items:center;margin-bottom:1.5rem;cursor:pointer;gap:1rem;border:none;background:none;width:100%;text-align:center; }
.divider-line { flex:1;height:1px;background:var(--drc-blue);opacity:.3; }
.divider-text h3 { font-size:1.1rem;font-weight:700;color:var(--drc-blue); }
.divider-text p  { font-size:.8rem;color:#888;margin-top:.2rem; }
.divider-icon { font-size:1.2rem;color:var(--drc-blue);opacity:.7; }
.photo-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.75rem;margin-bottom:1.5rem; }
.photo-item { border-radius:.5rem;overflow:hidden;cursor:pointer;box-shadow:0 1px 6px rgba(0,0,0,.1);transition:box-shadow .2s; }
.photo-item:hover { box-shadow:0 4px 16px rgba(0,0,0,.2); }
.photo-item img { width:100%;height:180px;object-fit:cover;display:block;transition:transform .3s; }
.photo-item:hover img { transform:scale(1.05); }
.video-container { background:#fff;border-radius:.75rem;padding:1.5rem;box-shadow:0 2px 10px rgba(0,0,0,.08);text-align:center;margin-bottom:1.5rem; }
.video-container h4 { font-weight:700;color:var(--drc-blue);margin-bottom:.25rem; }
.video-container p  { font-size:.8rem;color:#888;margin-bottom:1rem; }
.video-container iframe { max-width:100%;border-radius:.5rem; }

/* ── LIGHTBOX ── */
.lightbox { display:none;position:fixed;inset:0;z-index:999;background:rgba(0,0,0,.92);align-items:center;justify-content:center; }
.lightbox.open { display:flex; }
.lb-img { max-height:85vh;max-width:90vw;object-fit:contain;border-radius:.5rem;box-shadow:0 8px 40px rgba(0,0,0,.6); }
.lb-close,.lb-prev,.lb-next { position:absolute;background:rgba(0,0,0,.5);color:#fff;border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;font-size:1.2rem; }
.lb-close { top:1rem;right:1rem;width:40px;height:40px; }
.lb-prev  { left:1rem;top:50%;transform:translateY(-50%);width:48px;height:48px; }
.lb-next  { right:1rem;top:50%;transform:translateY(-50%);width:48px;height:48px; }
.lb-close:hover,.lb-prev:hover,.lb-next:hover { background:rgba(0,0,0,.8); }
.lb-counter { position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.5);color:#fff;padding:.3rem .8rem;border-radius:999px;font-size:.85rem; }

/* ── CONTACT ── */
.contact-grid { display:grid;grid-template-columns:1fr 1.5fr;gap:2rem;align-items:start; }
@media(max-width:768px){ .contact-grid { grid-template-columns:1fr; } }
.contact-info h3 { font-size:1.3rem;font-weight:700;color:var(--drc-blue);margin-bottom:1.25rem; }
.contact-row { display:flex;gap:.75rem;align-items:flex-start;margin-bottom:1rem; }
.contact-icon { width:40px;height:40px;border-radius:50%;background:var(--drc-light-blue);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem; }
.contact-row h4 { font-weight:600;color:#222;font-size:.9rem;margin-bottom:.15rem; }
.contact-row p  { font-size:.875rem;color:#666; }
.social-row { display:flex;gap:.75rem;margin-top:1.25rem; }
.social-btn { width:42px;height:42px;border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.1rem;transition:opacity .2s; }
.social-btn:hover { opacity:.85; }
.sb-fb { background:#1877f2; }
.sb-ig { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sb-wa { background:#25d366; }
.sb-tt { background:#010101; border:1px solid #333; }
.contact-form { background:#f8f9fa;border-radius:.75rem;padding:1.75rem; }
.contact-form h3 { font-size:1.2rem;font-weight:700;color:var(--drc-blue);margin-bottom:1.25rem; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem; }
@media(max-width:500px){ .form-row { grid-template-columns:1fr; } }
.form-group { margin-bottom:1rem; }
.form-group label { display:block;font-size:.875rem;font-weight:600;margin-bottom:.35rem;color:#333; }
.form-group input, .form-group select, .form-group textarea {
  width:100%;padding:.65rem .9rem;border:1px solid #ddd;border-radius:.5rem;
  font-family:'Montserrat',sans-serif;font-size:.9rem;color:#333;
  transition:border-color .2s; outline:none; background:#fff;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--drc-blue); }
.form-group textarea { resize:vertical;min-height:100px; }
.btn-submit { background:var(--drc-blue);color:#fff;font-weight:700;padding:.8rem 2rem;border:none;border-radius:.5rem;cursor:pointer;font-family:'Montserrat',sans-serif;font-size:1rem;width:100%;transition:background .2s; }
.btn-submit:hover { background:#1565c0; }
.form-success { display:none;background:#dcfce7;color:#166534;padding:1rem;border-radius:.5rem;text-align:center;font-weight:600;margin-top:.75rem; }
.form-success.show { display:block; }

/* ── MODAL (RSVP) ── */
.modal-overlay { display:none;position:fixed;inset:0;z-index:500;background:rgba(0,0,0,.6);align-items:center;justify-content:center;padding:1rem; }
.modal-overlay.open { display:flex; }
.modal { background:#fff;border-radius:.75rem;padding:2rem;max-width:500px;width:100%;max-height:90vh;overflow-y:auto; }
.modal h3 { font-size:1.2rem;font-weight:700;color:var(--drc-blue);margin-bottom:1.5rem; }
.modal-close { float:right;background:none;border:none;font-size:1.5rem;cursor:pointer;color:#666;margin-top:-.5rem; }
.btn-modal-submit { background:var(--drc-red);color:#fff;font-weight:700;padding:.8rem 2rem;border:none;border-radius:.5rem;cursor:pointer;font-family:'Montserrat',sans-serif;font-size:1rem;width:100%;transition:background .2s; }
.btn-modal-submit:hover { background:#c62828; }

/* ── FOOTER ── */
footer { background:#111827;color:#d1d5db;padding:3rem 0 1.5rem; }
.footer-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;margin-bottom:2rem; }
.footer-brand { display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem; }
.footer-brand img { width:42px;height:42px;border-radius:50%;object-fit:cover; }
.footer-brand-flag { width:36px;height:24px;object-fit:cover;border-radius:2px; }
.footer-brand-text h3 { color:#fff;font-size:1rem;font-weight:700; }
.footer-brand-text p  { font-size:.75rem;opacity:.7; }
.footer-tagline { font-size:.85rem;margin-bottom:1rem;opacity:.75;line-height:1.6; }
.footer-social { display:flex;gap:.5rem; }
.footer-social a { width:36px;height:36px;border-radius:.4rem;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.9rem;transition:opacity .2s; }
.footer-social a:hover { opacity:.8; }
footer h4 { color:#fff;font-size:1rem;font-weight:700;margin-bottom:1rem; }
footer ul { list-style:none; }
footer ul li { margin-bottom:.5rem; }
footer ul li a { font-size:.875rem;color:#9ca3af;transition:color .2s; }
footer ul li a:hover { color:#fff; }
.footer-bottom { border-top:1px solid #374151;padding-top:1.25rem;text-align:center;font-size:.8rem;color:#6b7280; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .header-top { flex-wrap:wrap; }
  nav { display:none; }
  .hamburger { display:block; }
  .banner { height:280px; }
  .banner-overlay { padding-top:5rem; }
}
