
:root {
    --bg-footer: #1a1512;
    --bg-card: #1f1916;
    --bg-input: #15110f;
	
	--gold-main: #c9a24d;
	--gold-soft: #e6c77d;
	--gold-dark: #9f7c2f;
	
	--text-main: #f5f5f5;
    --text-soft: #bfbfbf;

    --border-gold-soft: rgba(201,162,77,0.35);
}
/* =========================================================
   RESET & BASE
========================================================= */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Marcellus', serif;
  color: #3f3622;
  background: #faf7f2;
}

h1,h2,h3 {
  font-family: 'Cinzel', serif;
  margin: 0 0 14px;
}

.hidden { display: none; }

.section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  margin:auto;
}

/* =========================================================
   WRAPPER CONTACT
========================================================= */
.tunnel-wrapper {
  max-width: 1100px;
  margin: 0 auto 90px;
  padding: 0 15px;
}

/* ---- En-têtes ---- */

.hero-anges {
    text-align: center;
    margin: 50px 0 35px;
}

.tunnel-title {
    font-size: 2.1em;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: var(--gold-dark);
	margin-top: 0.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.03em;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

	@media (max-width: 768px) {
		.hero-subtitle {
			font-size: 1.2rem;
			line-height: 1.4;
		}
	}

/* =========================================================
   HEADER SIMPLE (si présent)
========================================================= */
.modern-header {
  text-align:center;
  background:
    radial-gradient(circle at center,
      #fff8eb 0%,
      #f2e6cc 60%,
      #e6d5aa 100%);
  border-bottom: 1px solid rgba(191,161,74,0.45);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.6);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: 1.2rem 1rem 0.8rem;
  min-height: auto;
}

.header-title {
  font-family:"Cinzel", serif;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 0.08em;
  background:linear-gradient(90deg,#9c7533,#e5d1a3,#9c7533); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  display:block; 
}

.header-wing{display:block;margin:0 auto;}

.header-subtitle {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: #b89b3c; /* or foncé noble */
    text-shadow: 0 1px 3px rgba(0,0,0,0.45);
    letter-spacing: 0.03em;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .header-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
}


.modern-header .header-wing {
  width: 80px;
  margin-bottom: 0.3rem;
}

/* ===== Header avec anges ===== */

.header-angel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-angel {
  width: 160px;
  max-width: 35vw;
  height: auto;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 10px rgba(214,177,105,0.45))
    drop-shadow(0 0 26px rgba(214,177,105,0.25));
}

/* Ange de droite : miroir */
.header-angel.angel-right {
  transform: scaleX(-1);
}

/* Responsive tablette */
@media (max-width: 900px) {
  .header-angel {
    width: 70px;
  }
}

/* Mobile : on épure */
@media (max-width: 520px) {
  .header-angel {
    display: none;
  }
}

/* =========================================================
   BREADCRUMB
========================================================= */
.breadcrumb-modern {
    padding: 12px 20px;
    border-radius: 10px;
    margin: 30px auto 40px;
    font-family: "Marcellus", serif;
    font-size: 0.92em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-modern.gold {
    background: linear-gradient(
        180deg,
        #f0d9a6,
        #e6c77d
    );
    color: #5c3d00;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(201,162,77,0.35);
}

.breadcrumb-modern.gold a {
    color: #5c3d00;
}

.breadcrumb-modern.gold a:hover {
    color: #8a6a36;
}

.breadcrumb-modern.outline {
    background: transparent;
    border: 1px solid rgba(201,162,77,0.35);
    color: #8a6a36;
}

.breadcrumb-modern.outline a {
    color: #8a6a36;
}

.breadcrumb-modern.outline a:hover {
    color: #d6b169;
    text-shadow: 0 0 6px rgba(214,177,105,0.35);
}

.breadcrumb-modern a {
  color: #8a6a36;
  text-decoration: none;
  font-weight:600;
  transition:0.3s ease;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
  color:#d6b169;
  text-shadow:0 0 6px rgba(214,177,105,0.35);
}

.breadcrumb-modern .navigation-pipe {color:#c8a15c; font-weight:bold;}
.breadcrumb-modern .navigation-page {color:#8a6a36;}

    @media(max-width:768px){
      
      .header-title {font-size:1.9em;}
	  .modern-header {padding:5px 5px 10px;}
	  .breadcrumb-modern {
		  padding: 10px 20px;
		  font-size: 0.8em;
		  margin-top: 5px;
		}
    }
	
	@media (max-width: 600px) {
    .breadcrumb-modern.gold {
        background: transparent;
        border: 1px solid rgba(201,162,77,0.25);
        box-shadow: none;
    }
}

/* =========================================================
   CARD FORMULAIRE (OR SOMBRE / PREMIUM)
========================================================= */
.card {
  background: linear-gradient(180deg,#221b17,#1a1512);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 35px 40px 45px;
}

/* =========================================================
   MESSAGES
========================================================= */
.form-error {
  background: rgba(217,83,79,0.18);
  color: #f2b9b6;
  border-left: 4px solid #d9534f;
  padding: 14px 18px;
  margin-bottom: 30px;
}

.success-message {
  background: rgba(201,162,77,0.18);
  color: #f1e1b0;
  border-left: 4px solid #c9a24d;
  padding: 16px 20px;
  margin-bottom: 35px;
}

/* =========================================================
   FORMULAIRE
========================================================= */
.form-group {
  margin-bottom: 34px;
}

.form-group label {
  display: block;
  margin: 10px 0 6px;
  color: #d4c3aa;
  font-weight: 600;
}

/* Champs communs */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 520px;
  background: #15110f;
  color: #f2e6c9;
  border: 1px solid rgba(212,175,55,0.35);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .25s, box-shadow .25s;
}

.form-group textarea { min-height: 140px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(242,230,201,0.45);
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
  background: #1e1814;
}

/* Select & options sombres */
.form-group select option {
  background: #1a1512;
  color: #f2f2f2;
}

/* =========================================================
   BOUTONS
========================================================= */
.form-submit {
  text-align: center;
  margin-top: 45px;
}

.cta-primary {
  background: linear-gradient(180deg,#e6c77d,#9f7c2f);
  color: #1a1a1a;
  padding: 15px 34px;
  border-radius: 30px;
  border: none;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201,162,77,0.35);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
  .card { padding: 26px 22px 32px; }
  .header-title { font-size: 1.7em; }
}

/* ===============================
   SCROLL-UP BUTTON — STYLE DORÉ
================================*/
#scroll-up-btn {
  position: fixed;
  bottom: 60px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;

  /* Style doré identique au bouton menu */
  background: radial-gradient(circle at 30% 30%, #fff4d0 0%, #f0c974 45%, #d6a94f 85%);
  border: 2px solid rgba(255, 240, 190, 0.65);
  color: #5c3d00;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
      0 0 12px rgba(255, 220, 150, 0.7),
      0 0 22px rgba(255, 210, 120, 0.55),
      inset 0 0 10px rgba(255,255,255,0.35),
      inset 0 0 18px rgba(255,220,150,0.25);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease;
}

/* Icône flèche */
#scroll-up-btn::before {
  content: "▲";
  font-size: 24px;
  font-weight: bold;
  color: #5c3d00;
  margin-top: -3px;
}

/* Visible */
#scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover */
#scroll-up-btn:hover {
  transform: scale(1.08);
  box-shadow:
      0 0 16px rgba(214,177,105,0.8),
      inset 0 0 12px rgba(255,255,255,0.45);
}

/* ================================
   Responsive – Mobiles (max 600px)
   ================================ */
@media (max-width: 600px) {

    .site-header {
        padding: 20px 0;
    }

    .brand {
        font-size: 28px;  /* Titre bien lisible sans être trop large */
    }

    .tagline {
        font-size: 14px;  /* sous-titre adapté mobile */
        margin-top: 6px;
    }
	
	#left-side-menu {
        width: 200px;
    }
	
	#left-menu-toggle.open {
        left: 200px; /* au lieu de 260px – ne dépasse plus */
    }
	
	/* ----- Bouton MENU ----- */
    #left-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 22px !important;
        top: 12px !important;
        left: 10px !important;
        border-width: 1px !important;
    }

    #left-menu-toggle.open {
        left: 180px !important; /* réduit pour éviter débordement */
    }

    /* ----- Bouton SCROLL-UP ----- */
    #scroll-up-btn {
        width: 44px !important;
        height: 44px !important;
        bottom: 65px !important;
        right: 16px !important;
        border-width: 1px !important;
    }

    #scroll-up-btn::before {
        font-size: 30px !important;
    }

}


/* ================================
   Responsive – Très petits écrans (max 420px)
   ================================ */
@media (max-width: 420px) {

    .brand {
        font-size: 24px; /* titre compact mais agréable */
    }

    .tagline {
        font-size: 13px;
    }
	
	#left-side-menu {
        width: 170px;
    }
	
	#left-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 22px !important;
        top: 12px !important;
        left: 10px !important;
    }

    #left-menu-toggle.open {
        left: 160px !important;
    }

    #scroll-up-btn {
        width: 40px !important;
        height: 40px !important;
        right: 20px !important;
        bottom: 65px !important;
    }

    #scroll-up-btn::before {
        font-size: 16px !important;
    }
}

/* ==============================
   BOUTON ANGE – ACTION RAPIDE
   ============================== */

.angel-action-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1200;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;

    background: linear-gradient(135deg, #d6b15e, #b08a2e);
    color: #2a1a00;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.angel-action-btn img {
	width: 35px;
    height: 35px;
    filter: brightness(1.7) contrast(1.5) drop-shadow(0 0 3px rgba(0,0,0,0.35));
}

.angel-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #e2c77a, #c89c3a);
}

    /* ========== Responsive ========== */
    @media (max-width: 768px) {
       .angel-action-btn {
		width: 48px;
		height: 48px;
		top: 10px;
		right: 10px;

		padding: 0;
		gap: 0;

		justify-content: center;
		align-items: center;
	  }

	  .angel-action-btn img {
		width: 32px;
		height: 32px;
		display: block;
	  }
    }
