/* ===== VARIABLES ===== */
:root {
    --black: #000000;
    --red: #ff0000;
    --white: #ffffff;
    --blue-light: #87CEEB; /* Bleu ciel */
    --pink-light: #FFB6C1; /* Rose clair */
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
    color: var(--white);
    line-height: 1.6;
}

/* ===== HEADER & BANDEAU ===== */
.header-top {
    background-color: var(--black);
    padding: 20px 0;
    border-bottom: 2px solid var(--red);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo {
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}

.instagram-link {
    transition: transform 0.3s;
}

.instagram-link:hover {
    transform: scale(1.1);
}

.instagram-icon {
    height: 30px;
    width: 30px;
}

/* ===== BANDEAU À DEUX COULEURS ===== */
.banner-horizontal {
    display: flex;
    height: 20px;
}

.banner-blue {
    flex: 1;
    background-color: var(--blue-light);
}

.banner-pink {
    flex: 1;
    background-color: var(--pink-light);
}

/* ===== MENU DÉROULANT ===== */
.main-menu {
    background-color: var(--black);
    padding: 15px 0;
    position: relative;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    background-color: var(--red);
    text-align: center;
}

.menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.menu li a:hover {
    color: var(--red);
}

/* ===== HERO & CAROUSEL ===== */
.hero {
    padding: 50px 0;
    background-color: #111;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
}

.carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.carousel-content {
    padding: 20px;
}

.carousel-content h2 {
    color: var(--red);
    margin-bottom: 10px;
}

.carousel-content p {
    color: var(--white);
}

/* ===== TROIS BLOCS HORIZONTAUX ===== */
.features {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 15px;
}

.feature h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.feature p {
    color: #ccc;
}

/* ===== GALERIE DE MÉDIAS ===== */
.media-gallery {
    text-align: center;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #111;
}

.media-gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    
}
.media-gallery > div {
    margin: 0 auto;
}
.monsterGallery-grid {
    justify-content: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--black);
    padding: 50px 0 20px;
    border-top: 2px solid var(--red);
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--red);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--red);
}

.footer-column i {
    margin-right: 10px;
    color: var(--red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu.active {
        display: flex;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* Page statique */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--white);
    background-color: var(--black);
}

.static-page {
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
.static-page-content h1 {
    margin-bottom: 20px;
    color: #333;
}

.page-body {
    line-height: 1.8;
    color: #555;
}
.page-title {
    color: var(--red);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
}

.page-date {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.page-date i {
    margin-right: 0.5rem;
}

.page-content {
    line-height: 1.6;
    color: var(--white);
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-container {
        padding: 1rem;
    }
}

/* POST */
.post-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-main {
    flex: 1;
}

.post-main h1 {
    margin-bottom: 10px;
    color: #333;
}

.post-date {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.post-content {
    line-height: 1.8;
    color: #555;
}

.post-sidebar {
    width: 100px;
    flex-shrink: 0;
}

.post-sidebar h3 {
    font-size: 0.95em;
    margin-bottom: 10px;
    color: #333;
}

.post-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-sidebar ul li {
    margin-bottom: 8px;
    font-size: 0.85em;
}

.post-sidebar ul li a {
    color: #555;
    text-decoration: none;
}

.post-sidebar ul li a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .post-wrapper {
        flex-direction: column-reverse;
    }

    .post-sidebar {
        width: 100%;
    }
}
