/* Reset de base */
body {
    margin: 0;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

/* Icon font */
@font-face {
    font-family: 'CalendarIcons';
    src: url('../fonts/calendar-fonts/fontello.woff2') format('woff2'),
         url('../fonts/calendar-fonts/fontello.woff') format('woff'),
         url('../fonts/calendar-fonts/fontello.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.icon {
    font-family: 'CalendarIcons';
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    line-height: 1;
}

.icon-chevron::before { content: "\e800"; }
.icon-facebook::before { content: "\e801"; }
.icon-instagram::before { content: "\e802"; }
.icon-linkedin::before { content: "\e803"; }
.icon-pinterest::before { content: "\e804"; }
.icon-search::before { content: "\e805"; }
.icon-tiktok::before { content: "\e806"; }
.icon-x::before { content: "\e807"; }
.icon-youtube::before { content: "\e808"; }

/* Header + hero fond */
.hero-bg {
    background: #F7F8F9 url('/assets/img/bg_hero.png') center/cover no-repeat;
    padding-top: 100px; /* espace sous le header fixe */
}

/* Variante fond blanc (pages internes) */
.hero-bg.hero-bg--white {
    background: #ffffff url('/assets/img/bg_hero.png') center/cover no-repeat;
}

/* Header global */
.header {
    background: transparent;
    padding: 16px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px 24px;
}

.header-top {
    background: #000;
    color: #fff;
    border-radius: 1rem;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.header-left .logo {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
}

.header-left .logo img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-nav .nav-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 999px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-month {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 0.3rem;
    background: #4C20FE;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: none;
}

.btn-secondary {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #ccc;
}

.nav-search-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
}

/* Dropdown desktop */
.nav-item {
    position: relative;
}

.nav-item.nav-has-sub:hover > a {
    background: #111;
}

.nav-arrow {
    margin-left: 4px;
    font-size: 10px;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    padding: 8px 0;
    min-width: 260px;
    display: none;
    z-index: 50;
}

.nav-item.nav-has-sub:hover .nav-submenu {
    display: block;
}

.nav-submenu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #111;
}

.nav-submenu a:hover {
    background: #f5f5f7;
}

.nav-sub-title {
    font-weight: 600;
    font-size: 14px;
}

.nav-sub-desc {
    font-size: 12px;
    color: #666;
}

/* Overlay recherche */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
}

.search-overlay-inner {
    background: #fff;
    max-width: 800px;
    margin: 80px auto 0;
    padding: 24px 16px 28px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.search-overlay input[type="search"] {
    width: 100%;
    padding: 0 12px;
    font-size: 16px;
    margin-bottom: 8px;
    box-sizing: border-box;
    height: 40px;
}

.search-overlay-form-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px;
}

.search-submit {
    padding: 0 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: 0.3rem;
    border: none;
    background: #4C20FE;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.search-overlay-close {
    background: transparent;
    border: none;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

.search-overlay-hint {
    font-size: 12px;
    color: #777;
    margin: 0 0 8px;
}

.search-overlay-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-overlay-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-overlay-results li {
    padding: 6px 2px;
    font-size: 14px;
}

.search-result-item {
}

.search-result-main {
    flex: 1;
}

.search-result-main strong {
    display: block;
}

.search-result-meta {
    font-size: 12px;
    color: #666;
}

.search-result-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-overlay-results a {
    text-decoration: none;
    color: #111;
}

.search-overlay-results a:hover {
    text-decoration: underline;
}

/* Cookie banner RGPD */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(5, 12, 38, 0.96);
    color: #fff;
    padding: 12px 16px;
}

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-inner p {
    margin: 0;
    font-size: 13px;
    flex: 1;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.cookie-btn-accept {
    background: #4C20FE;
    color: #fff;
}

.cookie-btn-decline {
    background: #fff;
    color: #050C26;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Overlay menu mobile */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 998;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.nav-open .mobile-nav-overlay {
    display: block;
}

.mobile-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    float: right;
}

.mobile-nav-menu {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-menu > a {
    font-size: 18px;
    text-decoration: none;
    color: #111;
}

.mobile-nav-group p {
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-nav-group ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 8px 0;
}

.mobile-nav-group li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.mobile-nav-menu > a.btn-month {
    background: #4C20FE;
    color: #fff;
    border-radius: 0.3rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding-top: 48px;
}

.site-footer .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-top {
    padding-bottom: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 40px;
}

.footer-newsletter h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-newsletter-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-newsletter-row {
    display: flex;
    gap: 8px;
}

.footer-newsletter-row input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 0.3rem;
    border: none;
    font-size: 15px;
}

.footer-newsletter-row button {
    padding: 10px 16px;
    border-radius: 0.3rem;
    border: none;
    background: #4C20FE;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.footer-newsletter-note {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin: 2px 0;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-col p {
    font-size: 16px;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 24px 0 32px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-label-francesaas img {
    height: 36px;
    width: auto;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom-links {
    font-size: 13px;
    color: #aaa;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

.footer-bottom-right {
    text-align: right;
    font-size: 12px;
}

.footer-social-label {
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #444;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-right {
        text-align: left;
    }
}

/* Hero */
.hero {
    padding: 48px 0;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #4C20FE;
}

.hero-text p {
    margin: 6px 0;
    color: #333;
}

.hero-lead {
    font-size: 18px;
}

.hero-cta {
    margin-top: 18px;
}

.hero-visual {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Hero spécifique pages mois / types */
.hero.hero-months .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    justify-items: center;
}

.hero.hero-months .hero-text {
    max-width: 760px;
    margin: 0 auto;
}

.hero.hero-months h1 {
    color: #111;
}

.month-hero-visual {
    margin-top: 24px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.month-hero-visual-inner {
    border-radius: 24px;
    overflow: hidden;
}

.month-hero-visual img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .month-hero-visual img {
        height: 240px;
    }
}

/* Home sections (base) */
.section-today,
.section-month,
.section-search,
.section-links {
    padding: 24px 0;
}

.section-today .container,
.section-month .container,
.section-search .container,
.section-links .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.home-links {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.home-links li a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #111;
}

.home-links small {
    display: block;
    color: #666;
    margin-top: 4px;
}

/* Aujourd'hui / demain */
.section-today {
    background: #F7F8F9;
}

.today-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.calendar-icon {
    width: 52px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    background: #fff;
    text-align: center;
}

.cal-month {
    background: #ff6a3d;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 0;
    text-transform: uppercase;
}

.cal-day {
    padding: 6px 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.event-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.event-link {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    flex: 1;
    line-height: 1.3;
}

.event-link strong {
    font-weight: 600;
}

.event-tag {
    font-size: 11px;
    color: #4C20FE;
    background: rgba(76,32,254,0.06);
    border-radius: 999px;
    padding: 2px 8px;
    white-space: nowrap;
}

.event-date {
    font-size: 12px;
    color: #666;
    margin-right: 6px;
    white-space: nowrap;
}

/* Liste de journées dans une page mois (détail) */
.event-list-month-detail .event-item-month-detail {
    align-items: flex-start;
}

.event-date-icon {
    margin-right: 10px;
}

.event-main {
    flex: 1;
}

.event-meta-line {
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.event-country {
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef0ff;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 8px;
}

.event-copy-title,
.event-copy-hashtag {
    border: none;
    background: #F3F5F7;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    cursor: pointer;
    color: #333;
}

.event-copy-title:hover,
.event-copy-hashtag:hover {
    background: #e1e5ec;
}

/* Toast copie */
.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2000;
}

.copy-toast.is-visible {
    opacity: 1;
}

/* Mois en cours */
.section-month {
    background: linear-gradient(#F7F8F9 0, #ffffff 40px, #ffffff 100%);
}

.month-grid {
    margin-top: 12px;
}

.month-text p {
    margin: 8px 0;
    color: #333;
}

.month-list {
    align-self: center;
}

.month-image {
    margin: 24px 0;
    text-align: center;
}

.month-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.month-image-trigger {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}

.month-image-trigger img {
    display: block;
    transition: transform 0.35s ease;
}

.month-image-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    border-radius: inherit;
}

.month-image-trigger .month-image-loupe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.month-image-trigger .month-image-loupe svg {
    width: 30px;
    height: 30px;
    stroke: #111;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.month-image-trigger:hover::after,
.month-image-trigger:focus-visible::after {
    opacity: 1;
}

.month-image-trigger:hover .month-image-loupe,
.month-image-trigger:focus-visible .month-image-loupe {
    opacity: 1;
    transform: scale(1);
}

.month-image-trigger:hover img,
.month-image-trigger:focus-visible img {
    transform: scale(1.03);
}

.month-image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.month-image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.month-image-modal img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.month-image-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.month-image-modal-close:hover {
    background: #fff;
}

body.month-image-modal-open {
    overflow: hidden;
}

/* Bloc texte après le 1er H2 (pages mois détail) */
.month-first-block {
    position: relative;
    max-height: 3.2em; /* ~2 lignes avec line-height 1.6 */
    overflow: hidden;
}

.month-first-block::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.6em;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}

.month-first-block.is-expanded {
    max-height: none;
}

.month-first-block.is-expanded::after {
    display: none;
}

.month-first-block-toggle {
    display: inline-block;
    margin: 8px auto 16px;
}

.month-event-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.month-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.month-card-title {
    flex: 1;
}

.month-card-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #666;
}

.event-type-label {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef0ff;
    color: #4C20FE;
    margin-bottom: 2px;
}

.month-event {
    flex-direction: column;
    align-items: stretch;
    background: #F3F5F7;
}

/* Blog listing */
.blog-grid-section {
    padding: 40px 0 60px;
}

.blog-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-image-wrap {
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-category {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: #c4ff4f;
    color: #111;
}

.blog-card-body {
    padding: 14px 16px 18px;
}

.blog-card-title {
    font-size: 18px;
    margin: 0 0 8px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Article blog */
.article-hero-meta {
    font-size: 14px;
    color: #555;
    margin: 8px 0 0;
}

.article-toc {
    margin: 24px 0 32px;
    padding: 16px 16px 12px;
    border-radius: 16px;
    background: #F3F5F7;
}

.article-toc-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
    margin: 0 0 8px;
}

.article-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-toc li {
    margin: 4px 0;
    font-size: 14px;
}

.article-toc a {
    color: #4C20FE;
    text-decoration: none;
}

.article-toc a:hover {
    text-decoration: underline;
}

.author-hero-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.author-hero-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-hero-bio {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

/* Page journée */
.event-detail-header {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 16px;
}

.event-detail-header .event-date-icon {
    margin-right: 4px;
}

.event-detail-header .calendar-icon {
    width: 120px;
    height: 120px;
}

.event-detail-header .cal-month {
    font-size: 20px;
    padding: 6px 0;
}

.event-detail-header .cal-day {
    font-size: 40px;
    padding: 10px 0 12px;
}

.event-meta {
    font-size: 14px;
    color: #555;
}

.event-meta p {
    margin: 4px 0;
}

.next-events {
    margin-top: 32px;
}

.next-events h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.related-events-list {
    margin-top: 8px;
}

/* Page contact */
.contact-hero-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: #4C20FE;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.contact-hero-highlight {
    color: #4C20FE;
}

.contact-info-row {
    margin-top: 12px;
    font-size: 14px;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.contact-info-row a {
    color: #4C20FE;
    text-decoration: none;
}

.contact-info-row a:hover {
    text-decoration: underline;
}

.contact-info-sep {
    color: #aaa;
}

.contact-socials {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.contact-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #111;
    text-decoration: none;
    background: #fff;
}

.contact-map {
    margin-top: 32px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Notices newsletter */
.section-notice {
    padding: 8px 0 0;
}

.notice-success,
.notice-error {
    font-size: 13px;
    margin: 0 16px 8px;
}

.notice-success {
    color: #1a7f37;
}

.notice-error {
    color: #c62828;
}

.page-month-content {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 0 24px;
}

.back-row {
    margin-top: 24px;
}

.btn-back-month {
    display: inline-block;
    font-size: 14px;
    border-radius: 999px;
    padding: 8px 16px;
}

.back-row-hero {
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
}

.back-row-hero .btn-back-month {
    font-size: 13px;
}

/* Bloc prochains mois (détail) */
.next-months {
    margin-top: 40px;
}

.next-months h2 {
    font-size: 22px;
    margin: 0 0 20px;
}

.next-months-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 0 0;
}

.next-months-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.next-months .next-month-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.next-months .next-month-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.next-months .next-month-card h3 {
    margin: 12px 4px 4px;
    font-size: 18px;
    font-weight: 600;
}

.next-months .next-month-card p {
    margin: 0 4px 0;
    font-size: 14px;
    color: #555;
}

/* Pages liste de mois / types */
.months-grid {
    padding: 40px 0 80px;
    background: #fff;
}

.months-grid .next-months-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.next-month-card a {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    background: #000;
}

.next-month-card img {
    width: 100%;
    height: auto;
    display: block;
}

.next-month-card h3 {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    background: #ffffff;
    border-radius: 0.3rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.next-month-card p {
    display: none;
}

/* Fil d'ariane */
.breadcrumb {
    margin: 16px auto 32px;
    max-width: 1120px;
    padding: 0 16px;
    font-size: 13px;
    color: #717B9D;
}

.breadcrumb a {
    color: #4C20FE;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 4px;
}

.breadcrumb-current {
    color: #111;
}

/* Présentation */
.section-presentation {
    padding: 48px 0 56px;
    background: #fff;
}

.section-presentation .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0.3rem;
    background: #F3F5F7;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
    margin: 0 auto 8px;
}

.section-presentation h2 {
    font-size: 26px;
    margin-bottom: 24px;
}

.presentation-card {
    background: #F7F8F9;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.presentation-card img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.presentation-card-dark {
    background: #050C26;
    color: #fff;
}

.presentation-card-dark .presentation-text p {
    color: #dde1ff;
}

.presentation-text h3 {
    margin: 4px 0;
    font-size: 16px;
}

.presentation-text p {
    margin: 2px 0;
    font-size: 14px;
    color: #555;
}

.presentation-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "big accessible"
        "big filter";
    gap: 16px;
    margin-bottom: 16px;
}

.presentation-card-large {
    grid-area: big;
}

.presentation-card-accessible {
    grid-area: accessible;
}

.presentation-card-filter {
    grid-area: filter;
}

.presentation-row-bottom {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* Layout spécifique pour les cartes accessibles / filtre */
.presentation-card-accessible,
.presentation-card-filter {
    flex-direction: row;
    align-items: center;
}

.presentation-card-accessible img,
.presentation-card-filter img {
    max-width: 45%;
}

.presentation-card-accessible .presentation-text,
.presentation-card-filter .presentation-text {
    flex: 1;
}

/* Download */
.section-download {
    padding: 56px 0 64px;
    background: #fff;
}

.section-download .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.download-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.download-visual img {
    max-width: 100%;
    height: auto;
}

.download-text h2 {
    font-size: 26px;
    margin: 8px 0 16px;
}

.download-text p {
    margin: 4px 0;
    color: #333;
}

.download-cta {
    margin-top: 16px !important;
}

/* CTA outil réseaux sociaux */
.section-cta {
    background: linear-gradient(to bottom, #ffffff 0, #ffffff 50%, #f3f5f7 50%, #f3f5f7 100%);
    padding: 24px 0 56px;
}

.cta-inner {
    background: #050C26;
    border-radius: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.cta-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.cta-text {
    padding-left: 32px;
}

.cta-text h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.cta-text p {
    color: #dde1ff;
    margin: 4px 0;
}

.cta-actions {
    margin-top: 24px !important;
}

.cta-btn {
    background: #fff;
    color: #050C26;
    border-radius: 0.3rem;
}

.cta-visual img {
    max-width: 100%;
    height: auto;
    transform: translateY(-80px);
}

/* FAQ */
.section-faq {
    padding: 56px 0 64px;
    background: #F3F5F7;
}


.section-faq h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 24px;
}

.faq-list {
    margin: 16px auto 0;
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid #e4e7ee;
    padding: 10px 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.3px;
    padding: 20px 20px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 18px;
    color: #666;
    margin-left: 8px;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item[open] summary {
    color: #4E27FF;
}

.faq-item p {
    margin: 0;
    font-size: 16px;
    color: #717B9D;
    padding: 0 30px 15px 23px;
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .event-meta-line {
        flex-wrap: nowrap;
    }

    .event-copy-hashtag {
        white-space: nowrap;
    }

    .header-actions .btn-month {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .header-top {
        align-items: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-visual {
        order: -1;
    }

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

    .months-grid .next-months-grid {
        grid-template-columns: 1fr;
    }

    .next-months-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .presentation-row-top {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "big"
            "accessible"
            "filter";
    }

    .presentation-row-bottom {
        grid-template-columns: 1fr;
    }

    .presentation-card-accessible,
    .presentation-card-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .presentation-card-accessible img,
    .presentation-card-filter img {
        max-width: 100%;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-text {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-visual img {
        transform: none;
    }
}
