@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --bleu: #1a2b5e;
  --or: #c8952a;
  --or-light: #e8b84b;
  --creme: #faf8f3;
  --texte: #1a1a1a;
  --gris: #666;
  --blanc: #ffffff;
  --ombre: 0 12px 40px rgba(26, 43, 94, 0.15);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', system-ui, sans-serif;
  background: var(--creme);
  color: var(--texte);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.font-serif, h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }

.diamond-pattern {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200, 149, 42, 0.06) 20px,
    rgba(200, 149, 42, 0.06) 21px
  );
}

/* NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bleu);
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}
.nav-content {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--or);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--or); }
.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: var(--bleu);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 0 24px 16px;
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 600;
}
.mobile-menu a.active { color: var(--or); }

/* GENERIC */
.section { padding: 80px 0; }
.section-white { background: white; }
.section-blue { background: var(--bleu); color: white; }
.section-gold { background: var(--or); color: white; }
.kicker {
  display: inline-block;
  color: var(--or);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.title-xl {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.02;
  font-weight: 700;
}
.title-lg {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--bleu);
}
.title-md {
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--bleu);
}
.text-center { text-align: center; }
.text-muted { color: #666; }
.text-white-muted { color: rgba(255,255,255,.78); }
.max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8 { margin-top: 32px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--or); color: white; }
.btn-gold:hover { background: var(--or-light); }
.btn-blue { background: var(--bleu); color: white; }
.btn-blue:hover { background: var(--or); }
.btn-white { background: white; color: var(--or); }
.btn-white:hover { background: var(--creme); }
.btn-outline-white { border-color: rgba(255,255,255,.45); color: white; }
.btn-outline-white:hover { border-color: white; }
.btn-outline-gold { border-color: white; color: white; }
.btn-outline-gold:hover { background: white; color: var(--or); }

.card {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.03);
}
.card-hover { transition: transform .2s ease, box-shadow .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.icon { font-size: 2.5rem; margin-bottom: 14px; }

/* HOME */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--bleu);
  color: white;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0;
}
.hero h1 span { color: var(--or); }
.hero p { font-size: 1.12rem; margin: 24px 0 32px; }
.quick-contact { display: flex; flex-wrap: wrap; gap: 24px; font-size: .95rem; color: rgba(255,255,255,.72); }
.quick-contact a:hover { color: var(--or); }
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}
.image-card img { width: 100%; height: 420px; object-fit: cover; }
.image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,94,.55), transparent 60%);
}
.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-weight: 700;
}
.values-list li { display: flex; gap: 12px; margin-bottom: 18px; color: #555; }
.values-list .star { color: var(--or); font-weight: 900; }
.link-gold { color: var(--or); font-weight: 800; }
.link-gold:hover { text-decoration: underline; }
.quote { font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.25; }

/* INNER PAGES */
.page-hero {
  background-color: var(--bleu);
  color: white;
  padding: 88px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(3rem, 6vw, 4rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.feature-list { display: grid; gap: 18px; }
.feature-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #eee;
}
.feature-item span { color: var(--or); font-size: 1.35rem; font-weight: 900; }
.training-price { color: var(--or); font-weight: 900; margin-top: 12px; }
.founders-box{
  margin-top:30px;
  padding:8px 24px;
  background:white;
  border-left:4px solid #c8952a;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.founders-box p{
  margin:8px 0;
  color:#1a2b5e;
  font-size:16px;
}

.founders-box strong{
  color:#c8952a;
}

/* CONTACT */
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.03);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bleu);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-card small { color: #777; }
.contact-card strong, .contact-card a { color: var(--bleu); font-size: 1.15rem; font-weight: 900; }
.contact-card a:hover { color: var(--or); }
.hours-card { background: var(--bleu); color: white; border-radius: var(--radius); padding: 28px; }
.hours-card h3 { color: var(--or); margin-bottom: 12px; font-size: 1.6rem; }
.form-box { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid #eee; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: .9rem; font-weight: 700; color: #444; margin-bottom: 6px; }
input, textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border .2s ease;
}
input:focus, textarea:focus { border-color: var(--or); }
textarea { resize: vertical; min-height: 140px; }
.success-message { display: none; text-align: center; padding: 48px 0; }
.success-message.show { display: block; }
.contact-form.hide { display: none; }

.devis-box{
  background:#1a2b5e;
  color:white;
  padding:40px;
  border-radius:20px;
  margin-bottom:40px;
}

.devis-tag{
  color:#c8952a;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:700;
}

.devis-box h2{
  font-size:36px;
  margin:15px 0;
}

.devis-box p{
  color:rgba(255,255,255,0.8);
  line-height:1.7;
}

.devis-buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
  flex-wrap:wrap;
}

.devis-buttons a{
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.devis-buttons a:first-child{
  background:#c8952a;
  color:white;
}

.devis-buttons a:last-child{
  border:1px solid rgba(255,255,255,0.3);
  color:white;
}

.devis-buttons a:hover{
  transform:translateY(-2px);
}

/* FOOTER */
.footer { background: var(--bleu); color: white; padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer h3 { color: var(--or); font-size: 2rem; margin-bottom: 12px; }
.footer h4 { color: var(--or); margin-bottom: 12px; }
.footer p, .footer a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer a:hover { color: white; }
.footer li { margin-bottom: 8px; }
.copyright {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1120px); }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .mobile-menu.open { display: block; }
  .hero-grid, .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 72px 0; }
  .image-card img { height: 320px; }
  .section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-card { align-items: flex-start; }
}
