/* ================================================== */
/* ==================== GLOBAL ====================== */
/* ================================================== */

body {
    margin: 0;
    font-family: Arial;
    color: white;
    background: url("background.png") center / cover no-repeat fixed;
}

/* ================================================== */
/* ===================== MENU ======================= */
/* ================================================== */

.menu-btn {

    position: fixed;

    top: 20px;

    left: 20px;

    cursor: pointer;

    z-index: 1000;

    color: white;

    font-size: 26px;

    font-weight: bold;

    padding: 12px 20px;

    border-radius: 12px;

    background: rgba(0,0,0,0.55);

    backdrop-filter: blur(6px);

    box-shadow:
        0 0 15px rgba(0,0,0,0.8);

    transition: 0.3s;
}

.menu-btn:hover {

    transform: scale(1.05);

    box-shadow:
        0 0 15px rgba(0,85,255,0.5),
        0 0 15px rgba(255,0,0,0.4),
        0 0 15px rgba(0,204,68,0.4);
}

.menu-text {
    margin-left: 5px;
}

.sidebar {
    position: fixed;
    left: -260px;
    top: 0;

    width: 260px;
    height: 100%;

    background: rgba(0,0,0,0.95);

    transition: 0.3s;

    z-index: 999;

    padding-top: 90px;
}

.sidebar a {
    display: block;

    padding: 15px 25px;

    color: white;
    text-decoration: none;

    transition: 0.3s;
}

.sidebar a:hover {

    background: linear-gradient(
        90deg,
        #0055ff,
        #ff0000,
        #00cc44
    );

    padding-left: 35px;
}

/* ================================================== */
/* =================== BANNIERE ===================== */
/* ================================================== */

.banner {
    text-align: center;
    margin-top: 60px;
}

.banner-img {

    width: 90%;

    max-width: 850px;

    height: auto;

    border-radius: 10px;

    display: block;

    margin: auto;
}

/* ================================================== */
/* ==================== TITRE ======================= */
/* ================================================== */

.news-content {

    text-align: center;

    margin: 60px auto;

    padding: 50px;

    max-width: 900px;

    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(6px);

    border-radius: 15px;

    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.title-gradient {

    font-size: 38px;

    background: linear-gradient(
        to right,
        #0055ff,
        white,
        #ff0000,
        #00cc44
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-text {

    color: #ddd;

    font-size: 18px;

    margin-top: 20px;

    text-align: center;
}

/* ================================================== */
/* ==================== BLOCS NEWS ================== */
/* ================================================== */

.news-post {

    text-align: center;

    margin: 60px auto;

    padding: 50px;

    max-width: 900px;

    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(6px);

    border-radius: 15px;

    box-shadow: 0 0 40px rgba(0,0,0,0.8);

    transition: 0.3s;
}

.news-post:hover {

    transform: scale(1.01);

    box-shadow:
        0 0 35px rgba(255,255,255,0.15);
}

/* ================================================== */
/* ==================== TITRE NEWS ================== */
/* ================================================== */

.news-title {

    font-size: 28px;

    margin-bottom: 15px;

    text-align: center;

    background: linear-gradient(
        to right,
        #0055ff,
        white,
        #ff0000,
        #00cc44
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================================== */
/* ===================== DATE ======================= */
/* ================================================== */

.news-date {

    color: #aaa;

    margin-bottom: 20px;

    font-size: 14px;

    text-align: center;
}

/* ================================================== */
/* ==================== MESSAGE ===================== */
/* ================================================== */

.news-message {

    color: #ddd;

    line-height: 1.7;

    font-size: 17px;

    text-align: center;
}

/* ================================================== */
/* ====================== LOGO ====================== */
/* ================================================== */

.big-logo {
    text-align: center;
    margin: 80px 0;
}

.big-logo img {
    width: 220px;
    opacity: 0.9;
    transition: 0.3s;
}

.big-logo img:hover {
    transform: scale(1.05);
}

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

@media(max-width:768px){

    .news-content,
    .news-post {

        width: 90%;

        padding: 25px;

        box-sizing: border-box;
    }

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

    .news-title {
        font-size: 22px;
    }

    .news-message {
        font-size: 15px;
    }

}