/*
Theme Name: LCH
Theme URI: https://lc-harmonisees.com
Author: François BRETIN
Author URI: https://frbe.net
Description: Thème Les constructions harmonisées
Requires at least: WordPress 6.0
Version: 1.0
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #f5f5f5;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: rgba(101, 67, 54, 0.95);*/
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: 
        linear-gradient(#67352cE6, #67352cE6), /* 80 = 50% opacity */
        url(img/fond_site.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-blend-mode: multiply; /* or overlay, screen, darken, etc. */
}

.logo img {
    /* color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    display: block;
    */
    width:250px;
    height: auto;
}

.logo span {
    display: block;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger-menu span {
    height: 5px !important;
}

.hamburger-menu span {
    display: block;
    width: 35px;
    height: 4px;
    background: white;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(101, 67, 54, 0.98);*/
    background-image: 
        linear-gradient(#67352cE6, #67352cE6), /* 80 = 50% opacity */
        url(img/fond_site.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background-blend-mode: multiply; /* or overlay, screen, darken, etc. */
}

.menu-overlay.active {
    display: flex;
}

.menu-overlay .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-items, 
ul.menu {
    list-style: none;
    padding: 0;
    text-align: left;
}

.menu-items li, 
ul#menu-menu-haut li {
    margin: 20px 0;
}

.menu-items li a, 
ul.menu li a {
    color: white;
    font-size: 32px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    display: inline-block;
    position: relative;
}

.menu-items li:first-child a::after, 
ul#menu-menu-haut li:first-child a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d32f2f;
}

.menu-items li a:hover, 
ul#menu-menu-haut li:hover {
    transform: translateX(10px);
}

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

.footer {
   /*background: rgba(101, 67, 54, 0.95);*/
    color: white;
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
    background-image: 
        linear-gradient(#67352cE6, #67352cE6), /* 80 = 50% opacity */
        url(img/fond_site.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-blend-mode: multiply; /* or overlay, screen, darken, etc. */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width:960px;
    margin:auto;
}

.footer-content .logo img {
    width:100%;
    max-width:420px;
    height: auto;
    vertical-align: bottom !important;
}
.footer-left {
    text-align: left;
}

.footer-left .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-left .social-icons a {
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-left .social-icons a:hover {
    background: white;
    color: #67352c;
}

.footer-left .address {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.footer-center {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.footer-right,
.footer-right ul.menu li {
    text-align: right;
}

.footer-right a,
.footer-right ul.menu li a {
    color: white;
    text-decoration: none;
    display: block;
    margin-top: 0px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-right a:hover,
.footer-right ul.menu li a:hover {
    text-decoration: underline;
}

/* ========================================
   HOME PAGE - VIDEO SECTION
   ======================================== */

.video-section {
    position: relative;
    /*height: 100vh;*/
    height: calc(100vh - 110px);
    width: 100%;
    overflow: hidden;
    /*margin-top: 110px;*/
    margin-top: 30px;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Video Progress Bar */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    cursor: pointer;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: #d32f2f;
    transition: width 0.1s linear;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.video-control-btn {
    background: rgba(101, 67, 54, 0.9);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.video-control-btn:hover {
    background: rgba(211, 47, 47, 0.9);
    transform: scale(1.1);
}

.video-control-btn i {
    pointer-events: none;
}

/* ========================================
   HOME PAGE - SERVICES SECTION
   ======================================== */

.services-section {
    background: #f5f5f5;
    padding: 80px 0 60px 0;
}

.services-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width:768px;
}

.services-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: #67352c;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/*.services-keywords {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
*/
.services-keywords img{
    height: auto;
    width:260px;
    height: 130px;
}
/*
.keyword-item {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #67352c;
    position: relative;
    padding-bottom: 10px;
}

.keyword-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d32f2f;
}
*/
.services-description {
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.services-divider {
    height: 36px;
    background: #67352c;
    margin: 0px 0;
}

.services-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 60px;
}

.container-divider {
    background-size: cover;
    max-width:100%;
    width:100%;
    min-height:500px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    
    /* Replace margin-bottom with this: */
    max-width: 960px;
    margin: 80px auto 90px auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 100px;
    font-weight: 700;
    color: #b39894;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #67352c;
    font-weight: 400;
}

.projects-footer {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.projects-footer h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #67352c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.projects-footer p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

.projects-section {
    margin-top: 100px;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.projects-header {
    text-align: left;
    margin-bottom: 50px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.projects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #67352c;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-align: right;
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d32f2f;
}

.filter-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #67352c;
    cursor: pointer;
    padding: 5px 0;
    padding-bottom:0;
    position: relative;
    transition: 0.3s;
    text-align: left;
}

.filter-btn:hover {
    color: #d32f2f;
}

.filter-btn.active {
    color: #d32f2f;
    font-weight: 600;
}

/*.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d32f2f;
}*/

/* Gallery Grid */
.gallery-container {
    position: relative;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translate(0, 0);
}

.project-item.visible {
    opacity: 1;
}

/* Slide in animations from corners */
.project-item.slide-tl {
    animation: slideFromTopLeft 0.8s ease forwards;
}

.project-item.slide-tr {
    animation: slideFromTopRight 0.8s ease forwards;
}

.project-item.slide-bl {
    animation: slideFromBottomLeft 0.8s ease forwards;
}

.project-item.slide-br {
    animation: slideFromBottomRight 0.8s ease forwards;
}

@keyframes slideFromTopLeft {
    from {
        opacity: 0;
        transform: translate(-100px, -100px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideFromTopRight {
    from {
        opacity: 0;
        transform: translate(100px, -100px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideFromBottomLeft {
    from {
        opacity: 0;
        transform: translate(-100px, 100px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideFromBottomRight {
    from {
        opacity: 0;
        transform: translate(100px, 100px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Grid positioning - creating overlapping effect with repeating pattern */
/* Pattern repeats every 6 items */

/* Items 1, 7, 13, 19... */
.project-item:nth-child(6n+1) {
    grid-column: 1 / span 5;
    grid-row: auto / span 3;
    z-index: 3;
}

/* Items 2, 8, 14, 20... */
.project-item:nth-child(6n+2) {
    grid-column: 5 / span 5;
    grid-row: auto / span 3;
    z-index: 4;
    margin-top: -120px; /* Overlap with previous item */
}

/* Items 3, 9, 15, 21... */
.project-item:nth-child(6n+3) {
    grid-column: 2 / span 5;
    grid-row: auto / span 3;
    z-index: 2;
}

/* Items 4, 10, 16, 22... */
.project-item:nth-child(6n+4) {
    grid-column: 6 / span 6;
    grid-row: auto / span 4;
    z-index: 5;
    margin-top: -120px; /* Overlap with previous item */
}

/* Items 5, 11, 17, 23... */
.project-item:nth-child(6n+5) {
    grid-column: 1 / span 6;
    grid-row: auto / span 3;
    z-index: 3;
}

/* Items 6, 12, 18, 24... */
.project-item:nth-child(6n) {
    grid-column: 6 / span 5;
    grid-row: auto / span 3;
    z-index: 4;
    margin-top: -120px; /* Overlap with previous item */
}



.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: scale(1.02);
    z-index: 100;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: white;
}

.project-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.project-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

/* Hidden items */
.project-item.hidden {
    display: none;
}

/* ========================================
   PROJECT DETAIL PAGE
   ======================================== */

.project-detail-section {
    margin-top: 100px;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.project-info-container {
    padding-right: 40px;
}

.project-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #67352c;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: right;
}

.project-location {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #67352c;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: right;
}

.project-divider {
    width: 100%;
    height: 3px;
    background: #d32f2f;
    margin-bottom: 30px;
}

.project-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.back-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #67352c;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
}

.back-link:hover {
    color: #d32f2f;
}

/* Gallery Grid */
.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-legend {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}

/* Lightbox Gallery */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #d32f2f;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(101, 67, 54, 0.9);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
    z-index: 3001;
}

.lightbox-nav:hover {
    background: rgba(211, 47, 47, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    z-index: 3001;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    z-index: 3001;
}

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

.header-hero {
    position: relative;
    height: 400px;
    margin-top: 70px;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.header-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #67352c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.3;
}

.header-hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: #d32f2f;
    margin: 15px auto 0;
}

/* ========================================
   FAQ PAGE
   ======================================== */


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
    max-width: 800px;
    margin-left:auto;
    margin-right:auto;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #67352c;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d32f2f;
}

/* Custom Accordion Styles */
.accordion {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left:auto;
    margin-right:auto;
}

.accordion-item {
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

.accordion-header {
    border-bottom: solid 4px #fff;
}

.accordion-button {
    /*background: linear-gradient(rgba(101, 67, 54, 0.9), rgba(101, 67, 54, 0.9)), 
                url('https://images.unsplash.com/photo-1533073526757-2c8ca1df9f1c?w=800&h=200&fit=crop') center/cover;*/
    color: white;
    background-image: 
        linear-gradient(#67352cE6, #67352cE6), /* 80 = 50% opacity */
        url(img/fond_site.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 25px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-blend-mode: multiply; /* or overlay, screen, darken, etc. */
}

.accordion-button:not(.collapsed) {
    /*background: linear-gradient(rgba(101, 67, 54, 0.95), rgba(101, 67, 54, 0.95)), 
                url('https://images.unsplash.com/photo-1533073526757-2c8ca1df9f1c?w=800&h=200&fit=crop') center/cover;*/
    color: white;
    background-image: 
        linear-gradient(#67352cE6, #67352cE6), /* 80 = 50% opacity */
        url(img/fond_site.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    box-shadow: none;
    background-blend-mode: multiply; /* or overlay, screen, darken, etc. */
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    display: none;
}

.accordion-button .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 25px;
}

.accordion-button:not(.collapsed) .icon.chevron {
    display: none;
}

.accordion-button.collapsed .icon.close {
    display: none;
}

.accordion-body {
    background: #b39894;
    padding: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
     /*margin-top: 30px;*/
    margin-top: 110px;
    padding: 0;
    padding-bottom: 60px;
    background: white;
    min-height: calc(100vh - 200px);
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #67352c;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
    padding-top:36px;
    position: relative;
}

.contact-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: #d32f2f;
    margin: 15px 0 0 0;
    position: absolute;
    right: 0;
}

.contact-address {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #67352c;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 600;
}

/* Map Container */
#map {
    width: 100%;
    height: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: none;
    border-bottom: 2px solid #999;
    border-radius: 0;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: transparent;
    transition: 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-bottom-color: #67352c;
    background: transparent;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #67352c;
    color: white;
    border: none;
    padding: 12px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

/* Custom Marker Popup */
.leaflet-popup-content-wrapper {
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
}

.leaflet-popup-content {
    font-size: 14px;
    line-height: 1.6;
    color: #67352c;
    font-weight: 600;
}
.wpcf7-form {
    padding:30px;
}
.wpcf7-form .btn-primary {
    background: #67352c;
    color: white;
    border: none;
    padding: 12px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
    display: block;
    margin: 30px auto 0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .projects-header {
        position: relative;
        top: 0;
    }

    .col-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-10 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .logo {
        /*font-size: 18px;*/
    }
    .logo img {
        width:200px;
        height: auto;
    }

    .menu-items li a {
        font-size: 24px;
    }

  
    /* Home Page Video */  
    .video-section {
        height: calc(100vh - 90px);
        margin-top: 90px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    .footer-content .logo img {
        width:280px;
        height: auto;
    }

    .footer-left .social-icons {
        justify-content: center;
    }

    /* Home Page */
    .services-header h2 {
        font-size: 24px;
    }

    .keyword-item {
        font-size: 18px;
    }

    .stat-number {
        font-size: 80px;
    }

    .services-keywords img{
        max-width:200px;
        height: auto;
    }

    .services-image {
        height: 300px;
    }


    .projects-footer h3 {
        font-size: 28px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .projects-footer p {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Projects Page */
    .projects-header {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .filter-menu {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }

    .filter-btn {
        width: auto;
    }

    .col-2, .col-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .project-item:nth-child(6n+1),
    .project-item:nth-child(6n+2),
    .project-item:nth-child(6n+3),
    .project-item:nth-child(6n+4),
    .project-item:nth-child(6n+5),
    .project-item:nth-child(6n) {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    .projects-title {
        font-size: 28px;
    }

    /* Project Detail Page */
    .project-info-container {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .project-title {
        font-size: 28px;
    }

    .gallery-item img {
        height: 250px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    /* FAQ Page */
    .faq-hero {
        height: 300px;
    }

    .faq-hero-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px 20px;
    }

    /* Contact Page */
    .contact-title {
        font-size: 28px;
    }

    #map {
        height: 350px;
    }
}


@media (max-width: 576px) {
    .services-description {
        margin-top:40px;
    }
}

/* ========================================
   RENOVATION / NEUF / EXTENSION PAGE STYLES
   ======================================== */

/* Main Content Section */
.presentation-content {
    padding: 40px 0 30px 0;
    background: white;
}

.presentation-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #67352c;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: left;
}

.presentation-main-image {
    float: left;
    width: 560px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.presentation-main-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.presentation-text-content {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.presentation-section {
    margin-bottom: 20px;
}

.presentation-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #67352c;
    margin-bottom: 10px;
    margin-top: 15px;
}

.presentation-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.presentation-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.presentation-section ul li {
    font-size: 15px;
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
    margin-bottom: 5px;
}

.presentation-section ul li::before {
    content: '•';
    color: #d32f2f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Three Images Gallery Row */
.presentation-gallery-row {
    display: flex;
    gap: 15px;
    margin: 30px 0 20px 0;
    flex-wrap: wrap;
}

.presentation-gallery-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.presentation-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.presentation-gallery-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #67352c;
    margin-top: 8px;
    text-align: center;
}

/* CTA Button */
.btn-cta {
    text-align: center;
    margin: 30px 0 20px 0;
}

.presentation-contact-btn {
    display: inline-block;
    background: white;
    color: #67352c;
    border: 2px solid #67352c;
    padding: 10px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.presentation-contact-btn:hover {
    background: #67352c;
    color: white;
    transform: scale(1.05);
}

/* Services Icons Section */
.presentation-services-icons {
    padding: 40px 0;
    background: #eaeaea;
}

.presentation-icon-item {
    padding: 15px;
}
/*
.presentation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #67352c;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.presentation-icon i {
    font-size: 28px;
    color: #67352c;
    transition: all 0.3s ease;
}

.presentation-icon-item:hover .renovation-icon {
    background: #67352c;
    transform: scale(1.1);
}

.presentation-icon-item:hover .renovation-icon i {
    color: white;
}

.presentation-icon-label {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #67352c;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}
*/
.presentation-icon img {
    width:276px;
    height: auto;
}
.page-template-presentation footer {
    margin-top:0px
}
/* ========================================
   RENOVATION / NEUF / EXTENSION PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .presentation-main-image {
        width: 280px;
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .presentation-hero {
        height: auto;
        padding: 30px 20px;
    }

    .presentation-hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .presentation-hero-image img {
        width: 130px;
    }

    .presentation-hero-title {
        font-size: 22px;
        text-align: center;
    }

    .presentation-hero-title::after {
        margin: 12px auto 0;
    }

    .presentation-page-title {
        font-size: 20px;
        text-align: center;
    }

    .presentation-main-image {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .presentation-gallery-row {
        flex-direction: column;
    }

    .presentation-gallery-item {
        width: 100%;
    }

    .presentation-icon {
        width: 60px;
        height: 60px;
    }

    .presentation-icon i {
        font-size: 24px;
    }

    .presentation-icon-label {
        font-size: 16px;
    }
}


/* ========================================
   COMPLIANZ
   ======================================== */

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
    background-color: #67352c !important;

}
.cmplz-cookiebanner .cmplz-links .cmplz-link {
    color: #67352c !important;

}

/* ========================================
   CAROUSEL
   ======================================== */

.renovation-gallery-carousel-container {
    position: relative;
    margin: 40px 0;
}

.renovation-gallery-wrapper {
    overflow: hidden;
    padding: 0 50px;
}

.renovation-gallery-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
}

.renovation-gallery-carousel .renovation-gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.renovation-gallery-item {
    text-align: center;
}

.renovation-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.renovation-gallery-item a {
    text-decoration: none;
    color: inherit;
}

.renovation-gallery-item:hover img {
    transform: scale(1.05);
}

.renovation-gallery-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #67352c;
    margin-top: 15px;
    text-transform: uppercase;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(101, 67, 54, 0.9);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(211, 47, 47, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: rgba(101, 67, 54, 0.9);
    transform: translateY(-50%) scale(1);
}

@media (max-width: 992px) {
    .renovation-gallery-carousel .renovation-gallery-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .renovation-gallery-wrapper {
        padding: 0 40px;
    }

    .renovation-gallery-carousel .renovation-gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .renovation-gallery-item img {
        height: 250px;
    }
}