.section-main-2 .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.section-main-2 .slide .container {
    z-index: 2;
}

.section-main-2 .slide .display-2,
.section-main-2 .slide h4 {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background-color: #c7a770;
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
}

.floating-button:hover,
.floating-button:focus,
.floating-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background-color: #b69660;
    color: white !important;
    text-decoration: none !important;
}

.floating-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Logo styling */
.module-logo {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.module-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.module-logo img {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

/* Mobile logo */
#header-mobile .module-logo {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Panel mobile logo (menu déroulant) */
#panel-mobile .module-logo {
    padding: 15px;
    height: auto;
    min-height: 0;
}

@media (max-width: 768px) {
    .module-logo {
        padding: 10px 0;
    }
    
    .module-logo img {
        max-width: 130px;
    }
    
    #header-mobile .module-logo img {
        max-width: 100px;
        height: auto;
        width: auto;
    }

    #panel-mobile .module-logo {
        padding: 10px;
    }

    #panel-mobile .module-logo img {
        max-width: 80px;
        height: auto;
        width: auto;
    }

    #header-mobile {
        height: 100px;
        line-height: 100px;
    }
    #header-mobile .module-nav-toggle {
        height: 100px;
        line-height: 100px;
    }
} 