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

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f1eb;
  color: #111;
  line-height: 1.7;
}

/* =========================
   GLOBAL
========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

p {
  margin-bottom: 16px;
  color: #2b2b2b;
}

h1,
h2,
h3 {
  color: #111;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 44px;
  margin-bottom: 18px;
}

h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

section {
  margin-bottom: 56px;
}

/* =========================
   HEADER
========================= */

header {
  background: rgba(12, 12, 12, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo img {
  height: 64px;
  width: auto;
}

.nav {
  position: relative;
  z-index: 1001;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease;
}

.nav a:hover,
.nav a:focus {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,111,0.35);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* MOBILE */
@media (max-width: 768px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
  }

  .logo img {
    height: 46px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17,17,17,0.98);
    display: none;
    z-index: 1005;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 18px 18px;
    overflow: hidden;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 10px;
    list-style: none;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(239, 255, 3, 0.878);
  }

  .nav a:hover,
  .nav a:focus {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,111,0.35);
  }

  .hero {
    position: relative;
    z-index: 1;
  }
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 55%, #242424 100%);
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,168,111,0.18), transparent 35%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  max-width: 1200px;
  white-space: nowrap;
}

.hero p {
  color: rgba(255,255,255,0.88);
  max-width: 1000px;
  font-size: 18px;
  margin-bottom: 0;
}

/* =========================
   INTRO / CONTENT BLOCKS
========================== */
main.container {
  padding-top: 1px;
  padding-bottom: 1px;
}

main section > img[style] {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

main section h2 {
  margin-top: 8px;
}

main section p:last-child {
  margin-bottom: 0;
}

main p a {
  color: #4781e6 !important;
  text-decoration: underline !important;
  font-weight: 600;
}

main p a:hover {
  text-decoration: none !important;
  opacity: 0.85;
}
/* =========================
   GRID / CARDS
========================= */
.grid {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  flex: 1 1 calc(50% - 16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.card-content {
  padding: 26px 24px 24px;
}

.card-content h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.card-content p {
  margin-bottom: 14px;
}

.card-content a {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: #8b6a2b;
}

.card-content a:hover {
  text-decoration: underline;
}

/* =========================
   CTA buttons
========================= */
.cta {
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 46px 28px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta p {
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin: 0 auto 18px;
}

.cta a {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #eb2426;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta a:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* =========================
   FAQ
========================= */
section h3[style] {
  margin-top: 24px !important;
}

ul {
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}
.faq-more {
  margin-top: 22px;
}

.faq-more a {
  font-weight: 700;
}
/* =========================
   FOOTER

footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.72);
  padding: 28px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  text-align: center;
}
========================= */
/* =========================
   SIMPLE HELPERS
========================= */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-0 {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 76px 0 68px;
  }

  .card img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 52px;
  }

  .hero p {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  main.container {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  section {
    margin-bottom: 42px;
  }

  .grid {
    gap: 22px;
  }

  .card {
    flex: 1 1 100%;
  }

  .card img {
    height: 220px;
  }

  .card-content {
    padding: 22px 20px;
  }

  .cta {
    padding: 34px 20px;
    border-radius: 16px;
  }

  .cta a {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 23px;
  }

  .hero {
    padding: 52px 0 46px;
  }

  .card img {
    height: 200px;
  }
}


/* =========================
   PAGE HELPERS
========================= */
.section-top {
  margin-top: 40px;
}

.section-large {
  margin-top: 45px;
}

.section-faq {
  margin-top: 50px;
  margin-bottom: 20px;
}

.media-cover {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 30px auto;
  display: block;
  border-radius: 6px;
}

.list-offset {
  margin-left: 20px;
}

.faq-item {
  margin-top: 20px;
}

.faq-item {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: #8b6a2b;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 20px 22px;
  margin: 0;
}
/* =========================
   HAMBURGER MENU
========================= */

/* =========================
   FOOTER
========================= */

footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.75);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-col {
  padding-right: 30px;
}

.footer-col:nth-child(1) {
  flex: 0 0 50%;
  max-width: 50%;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-size: 18px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.75);
}

.footer-col a {
  color: #c9a86f;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.footer-social a {
  color: #fff;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom p {
  color: #ffffff;
}
/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col,
  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }

  footer {
    padding: 40px 0 25px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}


/* =========================
   css-texte-image à droite
========================= */


.about-split{
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.about-text{
  flex:1;
  max-width:820px;
}

.about-image{
  width:320px;
  flex-shrink:0;
}

.about-image img{
  display:block;
  width:100%;
  height:auto;
  border-radius:6px;
}

/* responsive */
@media (max-width: 900px){
  .about-split{
    flex-direction:column;
    gap:24px;
  }

  .about-text{
    max-width:100%;
  }

  .about-image{
    width:100%;
    max-width:420px;
  }
}


/* =========================
   
========================= */