/*
Theme Name: Innovation Interieur
Theme URI: https://www.innovation-interieur.com/
Author: Kwan
Author URI: https://www.kwan.fr/
Description: Th&egrave;me du site de Innovation Interieur
Version: 1.0
*/



@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px !important;
    }
}


.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
body {
    font-family: 'Montserrat', sans-serif !important;
}


/* Navbar Styling */
.navbar {
    background-color: white;
    padding: 1rem 2rem;
}
.navbar-brand img {
    height: 90px;
}
.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
}
.nav-link:hover {
    color: #e3262e !important;
}
.btn-contact {
    border: 1px solid #ddd !important;
    border-radius: 12px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
}
.btn-rdv {
    background-color: #e3262e !important;
    border: 1px solid #e3262e !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
}
.btn-contact:hover {
    border: 1px solid #e3262e !important;
    color: #e3262e !important;
    border-radius: 12px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
}
.btn-rdv:hover {
    background-color: #ffffff;
    border: 1px solid #e3262e;
    color: #e3262e !important;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 600;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Proche de la police originale */
    color: #444;
}


/* --- Section Héros (Bandeau principal) --- */

.single .hero-section, .page .hero-section {
    background-size: cover;
    background-position: center;
    height: 440px !important; /* Hauteur relative à la fenêtre */
    position: relative;
}
.home .hero-section {
    background-image: url('https://www.innovation-interieur.com/uploads/Produit-dans-une-chambre-I49k.jpg'); /* Remplacez par l'image réelle */
    background-size: cover;
    background-position: center;
    height: 70vh !important; /* Hauteur relative à la fenêtre */
    position: relative;
}

/* Conteneur pour les boutons sur l'image */


.hero-buttons-container {
    padding:90px 0 30px 0 !important;
}
.home .hero-buttons-container {
    position: absolute;
    bottom: 30%;
    left: 15%;
    z-index: 10;
}
.btn-red {
    background-color: #f43a23 !important;
    color: white !important;
    border: none !important;
    padding: 14px 40px 14px 32px !important;
    font-size: 16px !important;
    margin-bottom: 10px;
    display: flex !important;
    align-items: center;
    width: auto !important;
    max-width: 350px;
}
.btn-custom i {
    margin-right: 10px;
}


/* --- Bannières intermédiaires --- */

.mid-banner {
    background-color: #f8f9fa; /* Gris très clair */
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}
.mid-banner-dark {
    background-color: #000;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}
        
        
        
/* --- Section Produits --- */

.product-grid {
    position: relative;
    z-index: 5;
}
.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
}
.product-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}
.product-image-container:hover img {
    transform: scale(1.05);
}
.hover-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6); /* Dark tint */
color: white;
opacity: 0;
transition: opacity 0.3s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
}
.product-image-container:hover .hover-overlay {
opacity: 1;
}
.parallax {
  /* Set a specific height */
  min-height: 200px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay-gris {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark tint */
    color: white;
    opacity: 1;
  }
          
          


/******************* TEMOIGNAGES **********************/


.testimonials-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
    width: 100%;
    display: flex;
   /* Text remains perfectly sharp and opaque */
}
/* This is the background layer */
.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url('https://dev.ascier.fr/wp-content/uploads/2026/03/shutterstock-1041433996-a3MW.jpg');
    background-size: cover;
    background-position: center;
    /* Apply your grey filters here */
    filter: brightness(0.2) contrast(1); 
    z-index: -1; /* Sends the background behind the text */
}
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.0) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 0px !important;
    padding: 0px !important;
    height: 100%;
}
.card-body {
    padding: 0px !important;
}
.testimonial-content {
    background-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 0px !important;
    padding: 20px;
    height: 100%;
}
.testimonial-icon {
    color: #ff5722;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}



/******************* FORMULAIRE **********************/        
      
/* Personnalisation du formulaire */
.form-control-custom {
    background-color: #fff;
    border: 1px solid #444;
    color: #fff;
    border-radius: 2px;
    margin-bottom: 10px;
}
.form-control-custom::placeholder {
    color: #aaa;
}
.btn-form {
    background-color: #ff5722;
    color: white;
    border: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
        


/******************* GALLERIE **********************/        
        
/* Container: Sets the 4-column layout */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 equal columns */
    gap: 0px; /* Space between cards */
    padding: 20px 0 0 0;
}
/* Individual Card */
.gallery-card {
    position: relative;
    height: 333px;
    background-color: #1a1a1a; /* Dark base for the fade effect */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
}
/* Background Layer: The Grey Filter */
.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    /* Filtering Logic */
    /*filter: grayscale(100%) brightness(0.6) opacity(0.7);*/
    z-index: 1;
    transition: all 0.4s ease; /* Smooth transition */
}
/* Text Layer: Crisp and White */
.card-text {
    position: relative;
    z-index: 2; /* Sits on top of the filter */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none; /* Prevents text from blocking clicks */
}
/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 1024px) {
    .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid-4 { grid-template-columns: 1fr; }
}
.split-content-section-reverse .col-lg-6 {
    padding-left:0 !important;
    padding-right:0 !important;       
}
.visual-column-right img, .visual-column-right > iframe {
}


/******************* PAGE **********************/



.page .hero-section {
    background-position: center center;
    background-size: cover !important;
    margin-bottom:30px;
}
.home .hero-section {
    background-position: center center;
    background-size: cover !important;
    margin-bottom:0px;
}
.page .hero-section p {
    color:white;
}
.page h1 {
    font-family: 'Montserrat', sans-serif;
    font-size:48px;
    font-weight:700;
    color:white;
}
.home h1 {
    font-family: 'Montserrat', sans-serif;
    font-size:34px;
    font-weight:400;
    color:rgb(66, 66, 66);
    margin-bottom: 1em;
}
.page h2 {
    font-family: 'Montserrat', sans-serif;
    font-size:25px;
    font-weight:700;
    color:#000000;
}


/******************* PRODUITS **********************/



.single-produits .hero-section, .page .hero-section, :not.home .hero-section {
    background-position: center center;
    background-size: cover !important;
    margin-bottom:30px;
}
.single-produits .hero-section p, .page .hero-section p {
    color:white;
}
.single-produits h1 {
    font-family: 'Montserrat', sans-serif;
    font-size:48px;
    font-weight:700;
    color:white;
}
.single-produits h2 {
    font-family: 'Montserrat', sans-serif;
    font-size:25px;
    font-weight:700;
    color:#000000;
}

.text-column-left {
    padding:30px 30px 30px 0;
    text-align: justify;
}
.text-column-right {
    padding:30px 0 30px 30px;
    text-align: justify;
}
.split-content-section .col-lg-6 {
    padding:0 !important;
}

hr {
    width:80px;
    height:2px;
    background-color: #f43a23;
    border:none !important;
    opacity: 100% !important;
}






.temoignages-produits {
    background-position: center center;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-image: url(img/5f2ecc35-4720-4269-ae8e-b3b5cc0f5ca8.png);
    background-color: #212121;
    padding: 30px 0 !important;
    margin: 0 !important;
}
.temoignages-produits h2 {
    color: #ffffff;
}
.testi {
    padding:60px 0;
}
.testi-texte {
    text-align: center;
    color: #ff5722;
    font-size: 48px;
    font-family: Montserrat;
    font-weight: bold;
}
.testi-auteur {
    text-align: center;
    color: #ff5722;
    font-size: 36px;
    font-family: Montserrat;
    font-weight: 200;
}


/******************* FOOTER **********************/

footer {
    background-color: #212121;
    color: #b6b6b6;
    font-size:13px;
    padding: 60px 0 30px !important;
}
footer p {
    color: #b6b6b6;
    font-size:13px;
}
footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-size:14px;
    font-weight:700;
    line-height:20px;
    color:white;
    position: relative;
    text-transform:uppercase;
    display: inline-block; /* Keeps the line as wide as the text */
    padding-bottom: 15px;  /* Space between text and the line */
    margin-bottom: 15px;
}
footer h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;          /* Adjust this to change the line length */
  height: 1px;          /* Thickness of the line */
  background-color: white;
}
#footer-col-1 hr {
    background-color: #b6b6b6 !important;
    width:100%;
    height:1px !important;
}
#footer-col-1 a {
    color:#f43a23;
}
#footer-col-2 a {
    color:#b6b6b6;
    text-decoration: none;
}
#footer-col-2 a:hover {
    color:#f43a23;
    text-decoration: none;
}
#footer-col-3 a svg {
    font-size: 7em !important;
    width:45%;
    padding:15px;
    text-align: center;
    color: #b6b6b6;
}
#footer-col-3 a:hover svg {
    color: #f43a23;
}

footer ul {
  list-style-type: none;
  padding-left: 15px; /* Adjust based on icon size */
}

footer li {
  position: relative;
  margin-bottom: 10px;
}

footer li::before {
  /* Font Awesome 5 Core Logic */
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; /* Use 900 for Solid (fas), 400 for Regular (far) */
  content: "\f0da"; /* The caret-right unicode */
  
  /* Positioning */
  position: absolute;
  left: -10px;
  color: #b6b6b6; /* Your choice of color */
}


/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}