/* HEADER GLOBAL */
.header {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 3px solid #ff006e;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.logo-title {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo {
    color: #ff006e;
}

/* SWITCH THEME */
.theme-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff006e;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

html {
    scroll-behavior: smooth;
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    padding: 20px;
    border-top: 3px solid #ff006e;
    margin-top: 80px;
    position: relative;
}

/* Mode clair */

body.light-mode header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 3px solid #ff006e;
}

body.light-mode .footer {
    background: rgba(255, 255, 255, 0.85);
    border-top: 3px solid #ff006e;
}


