/* --------------------------------------------------
   IMPORT FONTS
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: white;
    min-height: 100vh;
    background: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/fond.jpg.jfif") center/cover no-repeat;
    z-index: -1;
}

/* TITRES */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
}

/* Gradient métallique */
.titre-metal {
    background: linear-gradient(
        90deg,
        #A6784F 0%,
        #C89E63 18%,
        #E8D28A 38%,
        #F2DFA8 50%,
        #E8D28A 62%,
        #D8B88C 82%,
        #A6784F 100%
    );
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
    height: 60px;
    padding: 0 2%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(212,175,55,0.25);
    z-index: 99999;
}

.nav-logo img {
    height: 45px;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.35));
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 1;
}

.nav-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    background: #d4a44a;
    color: #000 !important;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Bouton mobile */
.nav-toggle {
    display: none;
    font-size: 2rem;
    position: absolute;
    right: 25px;
    top: 18px;
    color: #d4af37;
    cursor: pointer;
	z-index: 9999;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
    min-height: 100vh;
    padding-top: 0px; /* espace pour la navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	position: relative;
	z-index: 1;
}

.logo-hero {
    height: 320px;
    margin-bottom: 20px;
	margin-top: -15px;
}

.hero h1 {
    font-size: 2rem;
    margin: 5px 0 10px 0;
}

.hero-subtitle {
    color: #bfa06b;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    background: linear-gradient(90deg, #c9a86a, #e2c89c);
    color: #000;
    padding: 15px 40px;
    border-radius: 6px;
	font-weight: 700; 
	font-size: 1rem; 
	border: 1px solid rgba(201, 168, 106, 0.45); 
	box-shadow: 0 0 10px rgba(201, 168, 106, 0.25); 
	transition: box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
	margin-top: 25px;
	margin-bottom: 10px;
}

.btn:hover {
	background: linear-gradient(90deg, #e2c89c, #f0ddbb); 
	box-shadow: 0 0 18px rgba(201, 168, 106, 0.55); 
	transform: translateY(-2px); 
}

/* --------------------------------------------------
   A PROPOS
-------------------------------------------------- */
.apropos {
    padding: 80px 10%;
}

.apropos-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.apropos-image img {
    width: 450px;
    border-radius: 10px;
}

/* --------------------------------------------------
   SERVICES
-------------------------------------------------- */
.services {
    padding: 80px 10%;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-block {
    background: rgba(0, 0, 0, 0.40);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
	text-align: center;
}

.service-icon {
    width: 55px;
	height: 55px;
	object-fit: contain;
    margin-bottom: 15px;
}

.services h3 {
    color: #d4af37 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-block h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}


.service-block ul {
	list-style: none;
    padding: 0;
	margin: 0 auto;
	display: inline-block;
	text-align: left;
}

.service-block li {
	margin: 8px 0; 
    color: rgba(255, 255, 255, 0.85); 
	position: relative;
	padding-left: 22px
}

/* Le ✓ doré */
.service-block li::before {
    content: "✓";
	position: absolute;
	left: 0;
	top: 0;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}


/* --------------------------------------------------
   POURQUOI CHOISIR
-------------------------------------------------- */
.choisir {
	display: flex;
	align-items: center;
	gap: 40px;
    padding: 80px 10%;
    background: rgba(0,0,0,0.40);
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.choisir-image img {
    width: 380px;
	height: auto;
    border-radius: 6px;
	object-fit: cover;
}

.choisir-texte {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* --------------------------------------------------
   ZONE D’INTERVENTION
-------------------------------------------------- */
/* Conteneur principal de la zone d’intervention */
.zone {
    text-align: center;
    margin: 80px auto;
    padding: 0;
	width: 100%;
	max-width: 900px;
}

.zone.section {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centre tout le contenu */
    text-align: center;
}

.zones-container {
    display: flex;
	justify-content: center;
	align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
	text-align: center;
}

.zone-card {
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 40px 25px;
    width: 300px;
    text-align: center;
    transition: 0.3s;
}

.zone-card .subtitle {
    color: rgba(212, 175, 55, 0.75); /* gris doré élégant */
    font-weight: 600;
    letter-spacing: 0.5px;
}


.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
}

.icon-wrapper img { 
	width: 55px; 
	height: 55px; 
	object-fit: contain; 
	display: block; 
}
	
	#zone {
    display: flex;
    flex-direction: column;
    align-items: center; /* centre tout le contenu */
    text-align: center;
}


/* --------------------------------------------------
   CONTACT
-------------------------------------------------- */
.contact-card {
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 40px 20px;
    max-width: 500px;
    margin: 60px auto;
    text-align: center;
}

.contact-card p:last-child {
    color: rgba(212,175,55,0.75);
    font-style: italic;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-phone {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-phone:hover {
    color: #d4af37; /* doré élégant au survol */
}

.contact-mail {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-mail:hover {
    color: #d4af37; /* doré élégant au survol */
}

.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.8; /* léger, élégant */
}


/* --------------------------------------------------
   DEVIS
-------------------------------------------------- */
.devis-section {
    background: rgba(0,0,0,0.40);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 20px;
	text-align: center;
}

.form-devis {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Champs du formulaire premium */
.form-devis input,
.form-devis textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;

    /* Fond noir transparent élégant */
    background: rgba(0, 0, 0, 0.35);

    /* Contour doré fin */
    border: 1px solid rgba(212, 175, 55, 0.35);

    /* Texte */
    color: white;
    font-size: 1rem;

    /* Hauteur harmonieuse */
    height: 48px;
    box-sizing: border-box;

    /* Effet luxe au focus */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Zone de texte : hauteur adaptée */
.form-devis textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

/* Placeholder gris doré élégant */
.form-devis input::placeholder,
.form-devis textarea::placeholder {
    color: rgba(212, 175, 55, 0.55);
}

/* Focus premium */
.form-devis input:focus,
.form-devis textarea:focus {
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
    outline: none;
}
/* Bouton Envoyer premium */
.form-devis button.btn {
    background: linear-gradient(90deg, #d4a44a, #e6c16a);
    color: #000;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.45);

    /* Effet luxe */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    transition: 
        box-shadow 0.3s ease,
        transform 0.25s ease,
        background 0.3s ease;
}
.rgpd-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
}

.rgpd-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #d4af37;
  cursor: pointer;
}

.rgpd-check a {
  color: #c59d2f;
  text-decoration: underline;
}

/* Hover premium */
.form-devis button.btn:hover {
    background: linear-gradient(90deg, #e6c16a, #f2dfa8);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
    transform: translateY(-2px);
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    text-align: center;
    padding: 5px 10px;
    margin-top: 20px;
    background: rgba(0,0,0,0.20);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-logo {
    height: 100px;
    margin-bottom: 2px;
}

.footer p{
	margin: 0;
	font-size: 0.8rem;
}

/* --------------------------------------------------
   NAVBAR MOBILE
-------------------------------------------------- */
@media (max-width: 900px) {

	 .nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
		font-size: 2rem; 
		color: #d4af37; 
		cursor: pointer; 
		z-index: 100001;
    }
	
    .nav-links {
		display: none !important;
		flex-direction: column; 
		gap: 30px; 
		position: fixed; 
		top: 60px; 
		right: 0;
		margin-top: 60px;
		height: auto;
		padding: 10px 8%;
		width: 70%; 
		background: rgba(0,0,0,0.90); 
		backdrop-filter: blur(8px); 
		justify-content: center; 
		border-left: 1px solid rgba(212,175,55,0.25); 
		z-index: 99999;
    }

   .nav-links.active { 
		display: flex !important; 		
	}
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .choisir {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .choisir-image img {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .choisir-texte {
        align-items: center;
    }

    .choisir-texte ul {
        padding-left: 0;
        list-style-position: inside;
    }
}

@media (max-width: 768px) { 
    .apropos-container { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 5%; 
        
    } 
    
    .apropos-image img { 
        width: 100%; 
        max-width: 350px; 
        margin-top: 20px; 
        
    } 
}


/* Correction couleur titres zone d’intervention */
.zone-card h3 {
    color: #d4af37 !important;
}

@media (max-width: 768px) {
    .zones-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .zone-card {
        max-width: 400px;
    }
}
    
/* Correction mobile pour le fond */
@media (max-width: 768px) {
    body::before {
        background-image: url("images/fond_mobile.png");
        background-attachment: scroll !important;
        background-size: cover!important;
        background-position: center !important;
        background-repeat: no-repeat;
    }
}    
