/* ===========================
   B'CREATIV — GLOBAL STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Museo+Moderno:wght@700&display=swap');

:root {
  --coral:       #ef794e;
  --coral-light: #faccbd;
  --coral-pale:  #fef3ee;
  --gray-dark:   #565756;
  --gray-mid:    #7a7c7c;
  --gray-light:  #c7c7c6;
  --gray-pale:   #dedede;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --black:       #1a1a1a;

  --font-title: 'Poppins', sans-serif;
  --font-body:  'Montserrat', sans-serif;

  --radius:     16px;
  --radius-lg:  32px;
  --shadow:     0 4px 24px rgba(86,87,86,0.09);
  --shadow-hover: 0 12px 48px rgba(239,121,78,0.18);

  --nav-height: 76px;
  --transition: 0.38s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-title); color: var(--black); }

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--gray-mid); }
.lead { font-size: 1.15rem; line-height: 1.7; font-weight: 400; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-title); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 6px 24px rgba(239,121,78,0.32);
}
.btn-primary:hover {
  background: #e0603a; transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(239,121,78,0.42);
}
.btn-outline {
  background: transparent; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline:hover {
  background: var(--coral); color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--gray-dark);
  border: 2px solid var(--gray-pale);
}
.btn-ghost:hover {
  border-color: var(--coral); color: var(--coral);
}
.btn svg { width: 18px; height: 18px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 999;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199,199,198,0.3);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(86,87,86,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Museo Moderno', 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--gray-dark); flex-shrink: 0;
  text-decoration: none;
}
.nav-logo .logo-b { color: var(--coral); }
.nav-logo .logo-sub {
  font-family: var(--font-body); font-size: 0.6rem;
  font-weight: 500; color: var(--gray-mid);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px; display: block; line-height: 1.1;
}
.nav-logo-wrap { display: flex; flex-direction: column; }
.nav-dots {
  display: grid; grid-template-columns: repeat(3,6px);
  gap: 3px; margin-right: 8px;
}
.nav-dots span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--coral); opacity: 0.6;
}
.nav-dots span:nth-child(1),
.nav-dots span:nth-child(4) { opacity: 0.3; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto; list-style: none;
}
.nav-links a {
  font-family: var(--font-title); font-size: 0.82rem;
  font-weight: 500; color: var(--gray-dark);
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--coral); background: var(--coral-pale); }
.nav-links a.active { color: var(--coral); }
.nav-rdv {
  margin-left: 8px;
  background: var(--coral); color: var(--white) !important;
  border-radius: 50px !important; padding: 10px 20px !important;
  box-shadow: 0 4px 16px rgba(239,121,78,0.28);
}
.nav-rdv:hover {
  background: #e0603a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239,121,78,0.38) !important;
}

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--gray-dark); border-radius: 2px; transition: all 0.3s; }

/* ---- SECTIONS ---- */
section { position: relative; }
.section-padded { padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 60px); }
.container { max-width: 1240px; margin: 0 auto; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 16px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: ''; display: block; width: 24px; height: 1.5px;
  background: var(--coral); border-radius: 2px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ---- DECORATIVE ELEMENTS ---- */
.deco-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.deco-circle-outline {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1.5px solid var(--coral); opacity: 0.3;
}
.deco-dots {
  position: absolute; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, var(--gray-light) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* ---- CARDS ---- */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ---- TAG / CHIP ---- */
.tag {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-coral { background: var(--coral-pale); color: var(--coral); }
.tag-gray { background: var(--off-white); color: var(--gray-mid); }

/* ---- FOOTER ---- */
.footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 60px clamp(20px, 5vw, 60px) 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; max-width: 1240px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Museo Moderno','Poppins',sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
}
.footer-logo span { color: var(--coral); }
.footer-tagline {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 4px; letter-spacing: 0.06em;
}
.footer h5 {
  color: var(--white); font-family: var(--font-title);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--coral); }
.footer-contact p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin: 0;
}
.footer-contact strong { color: var(--white); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--coral); color: var(--white); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1; transform: translateX(0);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1; transform: translateX(0);
}

/* Staggered reveal delay */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ---- BANDEAU CTA ---- */
.bandeau-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #e0603a 100%);
  padding: 72px clamp(20px, 5vw, 60px);
  text-align: center; position: relative; overflow: hidden;
}
.bandeau-cta h2 { color: var(--white); margin-bottom: 16px; }
.bandeau-cta p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.bandeau-cta .btn-white {
  background: var(--white); color: var(--coral);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.bandeau-cta .btn-white:hover {
  background: var(--off-white); transform: translateY(-2px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
