:root{
  --cuivre:#b46d3c;
  --prune:#53416a;
  --gris:#f3f3f3;
  --txt:#333;
}

/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;   /* empêche le scroll horizontal */
}

/* ===================
   GLOBAL
=================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}


/* ===================
  GLOBAL
=================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}
/* ===================
  TRANSPARENT HEADER
=================== */
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: transparent;
  border: none;
  color: #fff;
  z-index: 10;
}
.transparent-header .logo img {
  height: 55px;
}
.transparent-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.transparent-header nav a {
  text-decoration: none;
  color: #fff; /* ✅ texte blanc */
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
  padding: 2px 4px;
}
.transparent-header nav a:hover {
  color: #b46d3c; /* cuivre au survol */
}
/* ===== ICONES CONTACT (seuls gardés) ===== */
.transparent-header .header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.transparent-header .header-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease, opacity 0.2s;
  filter: brightness(0) invert(1);
}
.transparent-header .header-icons img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
/* ===================
  HERO SECTION
=================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 340px;
}
.btn {
  display: block;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}
.btn-primary {
  background-color: rgba(255,255,255,0.95);
  color: #000;
}
.btn-primary:hover {
  background-color: #fff;
  color: #b46d3c;
}
.btn-secondary {
  background: linear-gradient(135deg, #b46d3c, #53416a);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #c17e48, #6c5581);
}
/* ===== TEXTE FINAL ===== */
.hero-scroll-down {
  margin-top: 40px;
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 0.5px;
  color: #fff;
}
/* FOOTER (repris du site principal) */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #333;
}

.footer-logo {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img { width: 80px; margin-bottom: 10px; }

.footer-logo p {
  font-size: 14px;
  padding-right: 10px;
  align-items: center;
  text-align: center;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #b46d3c;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  margin: 5px 0;
}

.footer-col a:hover { color: #b46d3c; }

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #e2e2e2;
  font-size: 13px;
  color: #777;
  margin-top: 30px;
}
/* ===== RESPONSIVE ===== */
/* Responsive header */

@media (max-width: 1024px) {
.transparent-header {
  padding: 16px 5%;
}
.transparent-header nav {
  gap: 24px;
}
}
@media (max-width: 768px) {
  .transparent-header {
    flex-direction: column;
    align-items: center;
    padding: 16px 5%;
    gap: 12px;
  }
  .transparent-header nav {
    flex-direction: column;
    gap: 8px;
  }
  .transparent-header nav a {
    font-size: 14px;
  }
  .transparent-header .header-icons img {
    width: 38px;
    height: 38px;
  }
}
/* Footer mobile */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 6%;
    gap: 8px;
  }
  .footer-logo { margin-bottom: 0; padding-bottom: 0; }
  .footer-logo p { margin: 4px 0 0; }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
  }
  .footer-col { align-items: center; }
}