:root {
    --background-color: #FFFCFA;
    --primary-color: #3DCC3D; 
    --text-color: #373435; 
    --header-bg: #f8f8f8;
    --header-border: #ddd;
    --secondary-bg: #e9ecef;
    --font-main: 'Space Grotesk', sans-serif;
    --font-heading: 'Concert One', sans-serif;
}

body.dark-mode {
    --background-color: #111827;
    --primary-color: #3DCC3D; 
    --text-color: #FFFCFA; 
    --header-bg: #1f2937;
    --header-border: #4b5563;
    --secondary-bg: #1f2937;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    font-family: var(--font-main);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-family: var(--font-main) ;
    font-size: 2.5rem ; 
    text-align: center ;
    margin-bottom: 40px ;
    color: var(--text-color) ;
    width: 100% t;
    display: block !;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem ;
        margin-bottom: 30px ;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    width: 90%;
    margin: 10px auto 0; 
    border-bottom: none; 
    padding: 8px 25px; 
    border-radius: 50px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; 
    background-color: var(--header-bg);
    border: 1px solid var(--header-border);
    transition: background-color 0.3s, border-color 0.3s;
    height: 35px;
}

.header-content {
    display: flex;
    justify-content: center; 
    align-items: center;
    min-height: 35px; 
}

.logo {
    position: absolute;
    left: 40px; 
    top: 55%;
    transform: translateY(-50%); 
    z-index: 10;
}

.png-logo {
    height: 30px; 
    width: auto;
}

nav.main-nav {
    flex-grow: 1; 
    text-align: center; 
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: center; 
    align-items: center;
}

nav a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; 
}

.icon-color {
    font-size: 1.4em; 
    color: var(--primary-color); 
    transition: color 0.3s;
}

.icon-color:hover {
    color: var(--text-color);
}

.hero-content-section {
    margin-top: 15px;
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 30px;
    align-items: center;
    min-height: 350px; 
    
    background-color: transparent;
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: none;
}

.hero-text-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-color); 
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.contact-btn:hover {
    background-color: #2aad36; 
}

.hero-images-placeholder {
    display: grid;
    grid-template-rows: 1fr; 
    gap: 15px; 
    height: 100%;
}

.image-placeholder {
    background-color: transparent; 
    border: none; 
    border-radius: 8px;
    min-height: 150px;
    opacity: 1; 
}



.voir-plus {
    background-color: var(--primary-color); 
    color: var(--text-color); 
    font-weight: bold;
    cursor: pointer;
}

.hover-effect:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.ombre-effect {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.social-icons-top a {
    color: var(--primary-color);
    margin: 0 10px;
}

.contact-form {
    margin-top: 20px;
}

.phone-number {
    font-weight: bold;
    color: var(--primary-color); 
    margin-left: 20px;
}

footer {
    background-color: #111827; 
    color: var(--background-color); 
    padding: 60px 0 20px; 
    font-family: var(--font-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr; 
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
}

.footer-info {
    padding-right: 20px; 
}

.footer-logo-link {
    display: block;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 40px; 
    width: auto; 
}

.company-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-info h4 {
    color: white; 
    font-size: 1em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.footer-info p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


.footer-links h4 {
    color: var(--primary-color); 
    margin-bottom: 20px;
    font-family: var(--font-main);
    font-size: 1.3em;
    text-transform: uppercase;
}

.footer-links a {
    display: block; 
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 12px; 
    transition: color 0.3s, transform 0.3s;
    font-size: 1em;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    color: white;
    width: 20px; 
    text-align: center;
}

.footer-links a:hover i {
    color: var(--primary-color);
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
}

.mylink {
    text-decoration: underline;
}

.social-icons-bottom, 
.social-icons-bottom a {
    display: none;
}

.social-icons-bottom a {
    color: white;
    margin-right: 10px;
    font-size: 1.5em;
}

.cta {
  position: relative;
  margin: auto;
  padding: 11.5px 18px;
  transition: all 0.2s ease;
  border: 3px solid #2aad36;
  border-radius: 50px;
  background: var(--primary-color);
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 50px;
  background: white;
  width: 44px;
  height: 44px;
  transition: all 0.8s ease;
}

.cta span {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17.5px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: white;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.5s ease; 
}

.cta:hover:before {
  width: 100%;
  background: #111827;
}

.cta:hover svg {
  transform: translateX(0);
  transition: all 0.5s ease; 
}

.cta:active {
  transform: scale(0.95);
  transition: all 0.2s ease; 
}

.product-carousel {
    overflow: hidden;
    white-space: nowrap;
    width: 100%; 
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.product-carousel img {
    width: 220px;
    height: auto;
    margin: 0 10px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.services-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--background-color); 
    width: 100%;
    overflow: hidden; 
    display: flex;
    justify-content: center;
}

.services-section h2 {
    margin-bottom: 40px;
    font-size: 5em;
    color: var(--text-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 10px;               
    max-width: 1200px;
    padding: 0 ;   
    margin: 0 auto ;
}

.service-card {
    display: flex;          
    flex-direction: column;
    align-items: center;     
    color: var(--text-color);
    position: relative; 
    width: 250px;            
    margin: 0 ;    
    padding-bottom: 20px;    
}

.service1-icon-img {
    max-width: 50%; 
    max-height: 50%; 
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    
}

.service2-icon-img {
    max-width: 100%; 
    max-height: 100%; 
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease; 
}

.service3-icon-img {
    max-width: 60%; 
    max-height: 60%; 
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease; 
}

.service-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    background-color: var(--primary-color); 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-circle {
    transform: scale(1.1); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #38c838; 
}

.service-description {
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    position: relative;      
    width: 100%; 
    margin-top: 15px;
    opacity: 0;              
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.service-card:hover .service-description {
    opacity: 1;
    transform: translateY(0);
    color: var(--text-color);
}


.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px;
}

.cards .card img {
    max-width: 100%; 
    max-height: 100%; 
    width: auto; 
    height: auto;
    object-fit: contain; 
    transition: transform 0.4s ease-in-out; 
}

.cards .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 200px; 
    width: 150px; 
    border-radius: 10px;
    color: var(--header-border);
    cursor: pointer;
    transition: 400ms;
    
}

.cards .card p.tip {
  font-size: 1em;
  font-weight: 700;
}

.cards .card p.second-text {
  font-size: .7em;
}

.cards .card:hover {
  transform: scale(1.2, 1.2);
}

.Btn {
    position: relative;
    margin: auto;
    padding: 11.5px 18px;
    transition: all 0.2s ease;
    border: 3px solid #2aad36;
    border-radius: 50px; 
    background: var(--primary-color);
    cursor: pointer;
    height: 200px;
    width: 80px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.Btn:before {
    content: "";
    position: absolute;
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    display: block;
    border-radius: 50px; 
    background: white; 
    width: 72px; 
    height: 72px; 
    transition: all 0.8s ease;
    
}

.Btn span {
    position: relative;
    font-family: var(--font-main);
    font-size: 18px;
    color: white; 
    font-weight: 400;
    letter-spacing: 0.05em;
    z-index: 10;
    margin-top: 50px;
}

.Btn svg {
    position: relative;
    top: 0;
    margin-top: 5px; 
    margin-left: 0; 
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: white; 
    stroke-width: 2;
    transform: translateX(0); 
    transition: all 0.5s ease;
    z-index: 10; 
}

.Btn:hover:before {
  width: 100%; 
  height: 100%; 
  left: 0; 
  top: 0; 
  transform: none;
  background: #111827;
}

.Btn:hover svg {
  transform: translateY(5px);
  transition: all 0.5s ease;
}

.Btn:active {
  transform: scale(0.95);
  transition: all 0.2s ease;
}

.gallery {
    padding: 60px 0; 
    text-align: center;
    width: 100%;
}

.gallery h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--text-color);
}

.contact-section-placeholder {
    padding: 60px 0; 
    background-color: var(--secondary-bg);
    text-align: center;
}

.contact-section-placeholder h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--text-color);
}

.parent {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 10px;
    max-width: 1200px; 
    height: 800px; 
    margin: 40px auto 0; 
}

.parent > div {
    background-color: var(--header-border); 
    border-radius: 5px;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.parent > div img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
}

.div2 {
    grid-row: span 4 / span 4;
    grid-column-start: 3;
}

.div3 {
    grid-row: span 2 / span 2;
    grid-column-start: 4;
}

.div4 {
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 3;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 4;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 5;
}

.div7 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 6;
}

.div8 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 7;
}

.div9 {
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 7;
}

.div10 {
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 1;
}

.div11 {
    grid-row: span 3 / span 3;
    grid-column-start: 6;
    grid-row-start: 1;
}

.div12 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 5;
    grid-row-start: 4;
}

.div13 {
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 8;
}

.div14 {
    grid-row: span 2 / span 2;
    grid-column-start: 6;
    grid-row-start: 8;
}

.div15 {
    grid-row: span 3 / span 3;
    grid-column-start: 7;
    grid-row-start: 1;
}

.div16 {
    grid-row: span 3 / span 3;
    grid-column-start: 7;
    grid-row-start: 4;
}

.div17 {
    grid-row: span 3 / span 3;
    grid-column-start: 7;
    grid-row-start: 7;
}

.contact-section-placeholder {
    padding: 60px 0; 
    background-color: var(--background-color);
    text-align: center;
}

.contact-section-placeholder h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--text-color);
}

.contact-icons {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 40px;
}

.snm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--primary-color); 
}

.sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  display: none; 
}

.contact-icons .snm .sign i {
    font-size: 1.3em;
    color: white;
}


.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}
.snm:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: .3s;
}

.snm:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 10px;
}
.snm:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
.snm:active {
  transform: translate(2px ,2px);
}

@media (max-width: 768px) {
    
    .container {
        padding: 0 15px;
    }
    
    
    header {
    width: 85%;
    margin: 10px auto 0; 
    border-bottom: none; 
    padding: 8px 25px; 
    border-radius: 50px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; 
    background-color: var(--header-bg);
    border: 1px solid var(--header-border);
    transition: background-color 0.3s, border-color 0.3s;
    height: 35px;
}

    .header-content {
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
        left: auto;
        top: auto;
    }

    .png-logo {
        height: 25px; 
    }
    
    nav.main-nav {
        display: none; 
    }

    .header-icons {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        gap: 10px;
    }
    
    .icon-color {
        font-size: 1.2em;
    }
    
    
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        min-height: 250px;
        text-align: center;
    }

    .hero-text-content h1 {
        font-size: 2em; 
        margin-bottom: 15px;
    }

    .hero-text-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .hero-images-placeholder {
        display: none; 
    }
    
    .cta {
        margin: 0 auto; 
    }
    
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-section h2, .gallery h2, .contact-section-placeholder h2 {
        font-size: 2em;
    }

    .services-grid {
        flex-direction: column; 
        gap: 50px; 
        align-items: center;
    }
    
    .service-circle {
        width: 120px;
        height: 120px;
    }

    .service-card {
        padding-bottom: 80px; 
    }
    
    .service-card:hover .service-description {
        height: 60px; 
        padding-top: 10px; 
    }
    
    .product-carousel img {
        width: 180px;
    }
    
    .gallery {
        padding: 40px 0;
    }

    .cards {
        gap: 10px;
    }
    
    .cards .card {
        height: 180px; 
        width: 120px; 
    }

    .Btn {
        height: 180px; 
        width: 60px; 
    }

    .Btn span {
        font-size: 16px;
    }

    .Btn::before {
        width: 55px; 
        height: 55px;
    }
    
    .parent {
        display: none; 
    }
    
    .contact-icons {
        gap: 15px; 
        margin-top: 30px;
    }
    
    .snm {
        width: 40px;
        height: 40px;
    }

    .snm:hover {
        width: 130px; 
    }

    .contact-icons .snm .sign i {
        font-size: 1.1em;
    }
    
    .text {
        font-size: 1em;
    }
    
    
    footer {
        padding: 40px 0 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 20px;
        gap: 20px;
    }
    
    .footer-links h4 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .footer-info p, .footer-links a {
        font-size: 0.9em;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8em;
    }
}


@media (max-width: 480px) {
    
    header {
    width: 80%;
    margin: 10px auto 0; 
    border-bottom: none; 
    padding: 8px 25px; 
    border-radius: 50px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; 
    background-color: var(--header-bg);
    border: 1px solid var(--header-border);
    transition: background-color 0.3s, border-color 0.3s;
    height: 35px;
}

    .hero-text-content h1 {
        font-size: 1.6em;
    }
    
     .services-section h2, .gallery h2, .contact-section-placeholder h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .service-card {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .footer-info {
        padding-right: 0;
    }
    
    .footer-links a {
        text-align: center;
        margin-bottom: 8px;
    }
    
    .footer-links h4 {
        margin-top: 25px;
    }
    
    .footer-links a i {
        display: none; 
    }
}

@keyframes simple-loader-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 252, 250, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; 
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#loader-svg-container {
    width: 280px; 
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loaderBounce 2s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(61, 204, 61, 0.15));
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(-75deg, rgba(0,0,0,0.6) 30%, #000 50%, rgba(0,0,0,0.6) 70%);
    mask-size: 200%;
    animation: loaderBounce 2s infinite ease-in-out, shimmer 2s infinite linear;
}
@keyframes shimmer {
    from {
        mask-position: 150%;
    }
    to {
        mask-position: -50%;
    }
}

@keyframes loaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loader-progress {
    width: 150px;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color); 
    animation: progressRun 1.5s infinite linear;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes progressRun {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loader-hidden {
    opacity: 0 ;
    pointer-events: none;
}

.menu-checkbox {
    -webkit-appearance: none;
    appearance: none;
    display: none;
    visibility: hidden;
}

.mobile-menu-toggle {
    display: none;
}

.bar {
    display: block;
    position: relative; 
    cursor: pointer;
    width: 35px;
    height: 20px;
}

.bar .bar-line {
    position: absolute;
    width: 70%; 
    height: 3px; 
    background: var(--primary-color); 
    border-radius: 100px;
    display: inline-block;
    transition: all 0.3s ease-in-out; 
    left: 0;
}

.bar .bar-line.top {
    top: 0;
}

.bar .bar-line.middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar .bar-line.bottom {
    bottom: 0;
}

.mobile-menu-toggle input:checked + .bar .bar-line.top {
    transform: translateY(8.5px) rotate(45deg); 
}

.mobile-menu-toggle input:checked + .bar .bar-line.bottom {
    transform: translateY(-8.5px) rotate(-45deg); 
}

.mobile-menu-toggle input:checked + .bar .bar-line.middle {
    opacity: 0; 
}

@media (max-width: 768px) {

    .logo {
        position: absolute; 
        top: 57%;
        transform: translateY(-50%);
        margin: 0; 
        padding: 0;
    }
    
    .logo img {
        height: 30px; 
    }

    header {
        height: auto; 
    }
    
    .mobile-menu-toggle {
        display: block; 
        position: absolute;
        right: 25px; 
        top: 50%;
        transform: translateY(-50%);
    }

    .header-content {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-content.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .header-content.active .logo {
        position: static;
        transform: none;
        margin-bottom: 20px;
        animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    nav.main-nav,
    .header-icons {
        display: none; 
        position: initial; 
        transform: none;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-content.active nav.main-nav {
        display: flex; 
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        opacity: 1;
        animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    }

    .header-content.active .header-icons {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
        padding: 15px 0 5px 0;
        width: 100%;
        opacity: 1;
        animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    }
    
    .header-content.active nav.main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--header-border);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }    
}


#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050; 
    pointer-events: none;
}

.toast-message {
    background-color: var(--text-color); 
    color: var(--background-color); 
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    text-align: center;
    min-width: 200px;
}

.toast-message.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0; 
}

.product-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    overflow: hidden; 
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 250px;              
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--secondary-bg);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05); 
    border: 1px solid var(--header-border);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.landscape-section {
    position: relative;
    width: 100%;
    height: 60%;               
    overflow: hidden;
}

.product-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;         
}

.filter {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.content-section {
    width: 100%;
    height: 40%;               
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;       
    text-align: center;
    background-color: var(--secondary-bg);
    box-sizing: border-box;
}

.product-name {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.product-info {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-category {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 600px) {
    .product-card {
        width: 100%;
        max-width: 250px;
    }
}


.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    max-width: 1000px; 
    gap: 40px; 
    width: 100%;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gallery-card-square {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--secondary-bg);
    border: 1px solid var(--header-border);
    border-radius: 20px;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05); 
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.gallery-card-square:hover {
    transform: translateY(-10px);
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card-square:hover .gallery-img {
    transform: scale(1.15); 
}

.gallery-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--background-color);
    border: 1px solid var(--header-border);
    padding: 6px 6px 6px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.btn-text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
}

.btn-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.gallery-card-square:hover .btn-circle {
    transform: translateX(5px);
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}


.service-card {
    cursor: pointer;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    opacity: 0; 
    transition: opacity 0.4s ease;
    text-align: center;
    z-index: 1;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-overlay p {
    color: white;
    font-size: 1rem;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; 
}

.service-card:hover .service-overlay h3,
.service-card:hover .service-overlay p {
    transform: translateY(0);
}

.service-card .gallery-btn {
    pointer-events: none; 
    transition: opacity 0.3s ease;
}

.service-card:hover .gallery-btn {
    opacity: 0;
}


.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; 
    justify-content: center;
    padding: 20px 0;
}

.service-fixed-size {
    width: 250px ;
    height: 200px ;
    flex-shrink: 0;
}

.service-fixed-size .landscape-section {
    height: 60%; 
    width: 100%;
}

.service-fixed-size .content-section {
    height: 40%; 
    padding: 15px;
}

.service-fixed-size h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.service-fixed-size p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.3;
}

.service-fixed-size:hover .product-bg-img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

@media (max-width: 1100px) {
    .services-grid {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-fixed-size {
        width: 100% ; 
        max-width: 300px;
        height: 350px ;
    }
}

.product-carousel-service {
    overflow: hidden;
    white-space: nowrap;
    width: 100%; 
    padding: 20px 0;
}

.carousel-track-service {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.product-carousel-service img {
    width: 350px;
    height: auto;
    margin: 0 10px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .product-carousel-service img {
        width: 200px;
    }
}

#Services-det {
    padding-bottom: 100px; 
}

.service-det-grid {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 40px;             
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: row;    
    width: 90% ;  
    min-height: 250px;      
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--secondary-bg) ; 
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--header-border);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.landscape-service-section {
    flex: 0 0 250px;        
    height: 250px;          
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-service-section {
    width: 100%;
    height: 40%;               
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    background-color: var(--secondary-bg);
    box-sizing: border-box;
}

.content-service-section h3{
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.content-service-section p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

@media (max-width: 800px) {
    .service-card {
        flex-direction: column; 
        height: auto;
        width: 80% ; 
    }

    .landscape-service-section {
        width: 100%;        
        flex: 0 0 250px;    
    }
    
    .content-service-section {
        text-align: center;
    }
}

#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

#account-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    padding: 30px;
    width: 320px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
}

#modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#account-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

#close-modal {
    margin-top: 20px;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.form_container{
   width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 50px 40px 20px 40px;
  background-color: var(--background-color);
   box-shadow: 0px 106px 42px rgba(0, 0, 0, 0.01),
    0px 59px 36px rgba(0, 0, 0, 0.05), 0px 26px 26px rgba(0, 0, 0, 0.09),
    0px 7px 15px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  font-family: var(--font-main);
}

.title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.input_container {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.icon {
  width: 20px;
  position: absolute;
  z-index: 99;
  left: 12px;
  bottom: 9px;
}

.input_label {
  font-size: 0.75rem;
  color: #8B8E98;
  font-weight: 600;
}

.input_field {
  width: auto;
  height: 40px;
  padding: 0 0 0 40px;
  border-radius: 50px;
  outline: none;
  border: 1px solid #e5e5e5;
  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_field:focus {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #242424;
  background-color: transparent;
}

.sign-in_btn {
    width: 100%;
  height: 40px;
  border: 0;
  background: var(--primary-color);
   border-radius: 50px;
  outline: none;
  color: var(--text-color);
  cursor: pointer;
}

.forget_btn {
    width: 100%;
  height: 40px;
  border: 0;
  background: var(--secondary-bg);
   border-radius: 50px;
  outline: none;
  color: var(--text-color);
  cursor: pointer;
}

.contact-contact-section{
    min-height: 80vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 80px;
}
.text-center{
    text-align: center;
}
.text-center h2{
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0px;
}
.text-center p{
    margin-top: 0;
}

.contact_form {
    width: 100%;
    max-width: 900px;
    min-height: 60vh;

    display: flex;
    flex-direction: column;
    gap: 25px;

    padding: 60px 40px 20px;
    background-color: var(--background-color);
    border: 1.5px solid var(--secondary-bg);
    border-radius: 50px;
}

.input_contact_container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.input_contact_label{
    font-size: 0.9rem;
    font-weight: 600;
}

.row-2{
    display: flex;
    gap: 20px;
    width: 100%;
}

.input_contact_field{
    width: 100%;
}

@media (min-width: 768px){
    .row-2{
        flex-direction: row;
    }

    .row-2 > .input_contact_container{
        flex: 1;
    }
}

@media (max-width: 767px){
    .row-2{
        flex-direction: column;
    }
}

.sending-message{
    width: 200px;
  height: 40px;
  border: 0;
  background: var(--secondary-bg);
   border-radius: 50px;
  outline: none;
  color: var(--text-color);
  cursor: pointer;
}

.input_contact_label {
    font-size: 0.75rem;
  color: #8B8E98;
  font-weight: 600;
}

.input_contact_field {
  width: auto;
  height: 40px;
  padding: 0 0 0 40px;
  border-radius: 50px;
  outline: none;
  border: 1px solid #e5e5e5;
  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_contact_field:focus {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #242424;
  background-color: transparent;
}

.input_contact_field_message{
    width: auto;
  height: 200px;
  padding-top: 12px;
  padding-left: 40px;
  padding-right: 20px;
  padding-bottom: 12px;
  border-radius: 25px;
  outline: none;
  border: 1px solid #e5e5e5;
  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_contact_field_message:focus {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #242424;
  background-color: transparent;
}

.map-container {
    height: 400px;
    width: 80vw;
    aspect-ratio: 1 / 1; 
    margin: 2rem auto; 
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    filter: drop-shadow(0px 1px 0px #efefef);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

body.dark-mode .map-container {
    border-color: var(--header-border);
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
}

.filter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px auto;
    padding: 15px 35px;
    background-color: var(--header-bg);
    border-radius: 50px;
    border: 1px solid var(--header-border);
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.products-grid-product {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    justify-items: center;
    gap: 30px;
    padding: 40px 20px 100px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        border-radius: 20px;
        width: 80%;
        padding: 25px;
        gap: 10px;
    }
    .filter-group {
        width: 90%;
        justify-content: space-between;
    }
    .filter-section {
        flex-direction: column;
        border-radius: 50px;
        width: 79%;
        padding: 25px;
        gap: 10px;
    } 

}

@media (max-width: 480px) {
    .filter-section {
        flex-direction: column;
        border-radius: 50px;
        width: 79%;
        padding: 25px;
        gap: 10px;
    }    
}

#filter-material, 
.price-input {
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--header-border);
    background: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    outline: none;
    height: 40px; 
    box-sizing: border-box;
}

#filter-material:focus,
.price-input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
}

.filter-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: bold;
    color: var(--text-color);
}

.filter-label {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.history-clean-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: hidden; 
}

.clean-timeline {
    position: relative;
    padding: 40px 0;
}

.central-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--header-border);
    transform: translateX(-50%);
}

.timeline-box {
    position: relative;
    width: 50%;
    margin-bottom: 30px;
    opacity: 0; 
    box-sizing: border-box;
}

.timeline-box.left {
    left: 0;
    padding-right: 40px;
}

.timeline-box.right {
    left: 50%;
    padding-left: 40px;
}

.box-content {
    background: var(--header-bg);
    padding: 20px;
    border: 1px solid var(--header-border);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease;
}

.timeline-box.left .box-content {
    text-align: right;
}

.timeline-box::after {
    content: '';
    position: absolute;
    top: 30px; 
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border: 3px solid var(--background-color);
    border-radius: 50%;
    z-index: 5;
}

.timeline-box.left::after {
    right: -10px; 
}

.timeline-box.right::after {
    left: -10px;
}

.year {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
}

.box-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-family: var(--font-main);
}

.box-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.box-content:hover {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .central-line {
        left: 20px;
    }
    .timeline-box {
        width: 100%;
        left: 0 !important;
        padding-left: 45px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .timeline-box.left .box-content {
        text-align: left;
    }
    .timeline-box::after {
        left: 11px !important;
    }
}

.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: left;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(61, 204, 61, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

:root {
    --sidebar-width: 260px;
}

.admin-body {
    display: flex;
    min-height: 100vh;
    background-color: var(--background-color);
    margin: 0;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--header-bg);
    border-right: 1px solid var(--header-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
}

/* Style du Logo */
.sidebar-logo {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sidebar-logo img {
    width: 220px; /* Ajustez la taille de votre logo ici */
    height: auto;
}

/* Menu */
.sidebar-menu {
    flex-grow: 1; /* Pousse le contenu vers le haut */
    padding: 10px 0;
}

.menu-item {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-main);
    transition: 0.3s;
}

.menu-item i {
    width: 30px;
    color: var(--primary-color);
}

.menu-item:hover, .menu-item.active {
    background: var(--primary-color);
    color: white !important;
}

.menu-item:hover i, .menu-item.active i {
    color: white;
}

.menu-separator {
    height: 1px;
    background: var(--header-border);
    margin: 15px 25px;
}

/* Déconnexion en bas */
.logout-section {
    padding: 20px;
    margin-top: auto; /* Force le bouton à rester en bas */
    border-top: 1px solid var(--header-border);
}

.logout-btn {
    width: 100%;
    padding: 12px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.logout-btn:hover {
    background: #d32f2f;
}

.main-content {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
}