/* RESET & BASE */
body {
    background-color: #FF8800;
    background: url(bg_3.png);
    /*background-size: cover;*/
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

html, body, #global {
    margin: 0 auto;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* INPUTS & BUTTONS */
input, button, [type="submit"] {
    cursor: pointer;
    border: none;
}

/* LOGO */
.mLogo {
    width: 100%;
    text-align: center; /* Remplace <center> */
}

.mLogo img {
    width: 90%;
    max-width: 600px;
    padding: 0 0 20px;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.25)); /* Standardisé */
}

.extraPadding {
    padding: 80px 0 20px;
}

/* MENU FIXE */
#Menu, #leftMenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-sizing: border-box;
    padding: 5px 0;
    font-size: 16px;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.25);
}

#Menu {
    background: linear-gradient(to bottom, #428ab0, #1f4b61);
    color: white;
}

#leftMenu {
    background: linear-gradient(to bottom, #043348, #428ab0);
    overflow: hidden;
}

#leftMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#leftMenu li {
    display: inline-block;
    transition: all 1s ease;
}

.leftMenu button {
    color: white;
    background: transparent;
    width: 130px;
    padding: 8px 20px 10px;
    font-family: Georgia, serif;
    font-size: 1.05em;
    text-align: left;
    margin: 0 0 10px;
}

#leftMenu button:hover {
    background: #EC7505;
    color: white;
}

/* LAYOUT RESPONSIVE */
._LMwide {
    height: 100%;
    width: 130px;
}

._LMnarrow {
    height: auto;
    width: 100%;
    display: none;
}

#pageRight {
    min-width: 400px;
    max-width: 1400px;
    margin: auto;
    transition: all 0.3s ease;
}

._PRnarrow {
    padding: 30px 5px 20px;
}

._PRwide {
    padding: 20px 30px 20px 150px;
}

/* FOOTER & SHADOWS */
.mFooter {
    background: #fff;
    height: 20px;
    margin: 0 auto;
    display: none;
}

.mShadow {
    box-shadow: 8px 15px 10px rgba(0, 0, 0, 0.25);
}

/* SCROLLBAR CUSTOM */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border-radius: 50px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

::-webkit-scrollbar-thumb:active {
    background: #000;
}

::-webkit-scrollbar-track {
    background: #666;
    border-radius: 50px;
}

::-webkit-scrollbar-track:active {
    background: #333;
}

/* SLIDESHOW */
.slideshow-container {
    max-width: 768px;
    margin: auto;
    position: relative;
}

.btnprev, .btnnext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 16px;
    color: rgba(128, 128, 128, 0.8);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    font-size: 18px;
    transition: 0.6s;
}

.btnprev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.btnnext {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.btnprev:hover, .btnnext:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.slideShowStyle {
    display: none;
}

.active-slide {
    display: block;
}

.dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 2px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.6s;
}

.dot:hover, .active {
    background: #717171;
}

/* ANIMATIONS */
.ssfade {
    animation: fade 1s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* W3.CSS COMPAT */
.w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.w3-black, .w3-hover-black:hover {
    color: #fff !important;
    background-color: #000 !important;
}

.w3-display-left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.w3-display-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.w3-content {
    max-width: 768px;
    margin: auto;
}

.w3-rest {
    overflow: hidden;
}

.w3-display-container {
    position: relative;
}
