/* ==========================================================
   RSVP CONNECTÉ — PRIORITAIRE
========================================================== */

.single-event-rsvp-actions {
    width: 100%;
    padding: 30px;

    background: #24150f;
    border-top: 2px solid #d87d21;
}

.single-event-rsvp-actions__label {
    margin: 0 0 20px;

    color: #d8c58b;

    font-size: 11px;
}

.single-event-rsvp-actions__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

button.rsvp-choice {
    all: unset;

    box-sizing: border-box;

    min-height: 95px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px;

    border: 1px solid rgba(216,125,33,.45);

    background: #1c120d;
    color: #fff;

    cursor: pointer;

    transition: .2s ease;
}

button.rsvp-choice:hover {
    border-color: #d87d21;

    background: #2b1911;
}

.rsvp-choice__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,125,33,.14);

    color: #d87d21;

    font-size: 18px;
}

.rsvp-choice > span:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;

    color: #c4b1a6;

    font-size: 10px;
    line-height: 1.4;

    text-transform: uppercase;
}

.rsvp-choice strong {
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-transform: none;
}

button.rsvp-choice--yes.is-selected {
    background: #d87d21;
    border-color: #d87d21;
}

button.rsvp-choice--yes.is-selected .rsvp-choice__icon {
    background: #fff;
    color: #d87d21;
}

button.rsvp-choice--no.is-selected {
    background: #3a2419;
    border-color: #93654d;
}

.single-event-rsvp-status {
    min-height: 18px;

    margin: 16px 0 0;

    color: #d8c58b;

    font-size: 11px;
}

@media (max-width: 650px) {

    .single-event-rsvp-actions__buttons {
        grid-template-columns: 1fr;
    }

}
.single-event-hero {
    min-height: 520px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            90deg,
            rgba(28,18,13,.96),
            rgba(28,18,13,.80)
        ),
        url(
            "https://honeydew-sheep-776998.hostingersite.com/wp-content/uploads/2026/04/Business-club-a-Bordeaux.jpg"
        )
        center / cover no-repeat;

    color: #fff;
}


.single-event-hero__inner {
    width: min(1180px, 100%);

    margin: 0 auto;

    padding: 85px 0 55px;
}


.single-event-hero__label {
    color: #f0cf92;
}


.single-event-hero h1 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(55px, 5.5vw, 88px);
    line-height: .98;

    font-weight: 300;

    letter-spacing: -4px;
}


.single-event-hero__meta {
    max-width: 850px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 42px;

    border-top: 1px solid var(--line);
}


.single-event-hero__meta > div {
    padding: 20px 25px 0;

    border-right: 1px solid var(--line);
}


.single-event-hero__meta > div:first-child {
    padding-left: 0;
}


.single-event-hero__meta > div:last-child {
    border-right: 0;
}


.single-event-hero__meta small {
    display: block;

    margin-bottom: 6px;

    color: #d7c392;

    font-size: 8px;

    text-transform: uppercase;
}


.single-event-hero__meta strong {
    font-size: 13px;

    font-weight: 500;
}


/* BANDEAU */

.single-event-band {
    background: var(--orange);

    color: #fff;
}


.single-event-band__inner {
    width: min(1180px, 100%);

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin: 0 auto;
}


.single-event-band p {
    max-width: 760px;

    margin: 0;

    font-size: 13px;
    line-height: 1.6;
}


.single-event-band span {
    padding: 10px 15px;

    border:
        1px solid
        rgba(255,255,255,.4);

    border-radius: 50px;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;
}


/* MAIN */

.single-event-main {
    padding: 95px 0;

    background: var(--cream);
}


.single-event-layout {
    width: min(1180px, 100%);

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 85px;

    margin: 0 auto;

    align-items: start;
}


.single-event-copy h2,
.single-event-rsvp h2,
.single-event-next h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.04;

    font-weight: 300;

    letter-spacing: -2.3px;
}


.single-event-copy h2 em,
.single-event-rsvp h2 em,
.single-event-next h2 em {
    color: var(--orange);

    font-weight: 300;
    font-style: italic;
}


.single-event-lead {
    margin-top: 30px;

    color: #5e5149;

    font-size: 13px;
    line-height: 1.8;
}


.single-event-info {
    margin-top: 40px;

    border-top: 1px solid var(--line);
}


.single-event-info > div {
    display: grid;

    grid-template-columns:
        140px
        1fr;

    gap: 25px;

    padding: 23px 0;

    border-bottom: 1px solid var(--line);
}


.single-event-info span {
    color: var(--orange);

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;
}


.single-event-info strong {
    font-size: 13px;
    line-height: 1.6;

    font-weight: 500;
}


/* CARD */

.single-event-card {
    position: sticky;

    top: 25px;

    padding: 30px;

    border-top: 3px solid var(--orange);

    border-radius: 10px;

    background: var(--brown);

    color: #fff;
}


.single-event-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}


.single-event-date {
    width: 65px;
    height: 65px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);
}


.single-event-date strong {
    font-size: 18px;
}


.single-event-date span {
    font-size: 8px;

    text-transform: uppercase;
}


.single-event-type {
    padding: 9px 13px;

    border:
        1px solid
        rgba(216,125,33,.45);

    border-radius: 50px;

    color: #efa04b;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;
}


.single-event-card h3 {
    margin: 0 0 10px;

    font-size: 24px;
}


.single-event-card__date {
    color: #c6b4a9;

    font-size: 11px;
}


.single-event-card__details {
    margin-top: 25px;

    padding: 12px 0;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    border-bottom:
        1px solid
        rgba(255,255,255,.1);
}


.single-event-card__details > div {
    display: flex;

    gap: 10px;

    padding: 8px 0;
}


.single-event-card__details > div > span {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(216,125,33,.12);

    color: var(--orange);

    font-size: 8px;
}


.single-event-card__details p {
    margin: 2px 0 0;

    color: #c6b4a9;

    font-size: 11px;
    line-height: 1.5;
}


.single-event-card__cta {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 23px;

    background: var(--orange);

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;
}


/* RSVP */

.single-event-rsvp {
    padding: 95px 0;

    background: var(--brown);

    color: #fff;
}


.single-event-rsvp__layout {
    width: min(1180px, 100%);

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    margin: 0 auto;
}


.single-event-rsvp p {
    max-width: 480px;

    margin-top: 25px;

    color: #d5c28e;

    font-size: 13px;
    line-height: 1.7;
}


.single-event-form {
    padding: 30px;

    border-top: 2px solid var(--orange);

    background: #24150f;
}


.single-event-presence {
    display: flex;

    gap: 12px;
}


.single-event-presence label {
    flex: 1;
}


.single-event-presence input {
    display: none;
}


.single-event-presence span {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border:
        1px solid
        rgba(216,125,33,.3);

    color: #d5c28e;

    font-size: 9px;

    font-weight: 600;

    text-align: center;

    text-transform: uppercase;

    cursor: pointer;
}


.single-event-presence input:checked + span {
    background: var(--orange);

    color: #fff;
}


.single-event-field {
    display: block;

    margin-top: 15px;
}


.single-event-field > span {
    display: block;

    margin-bottom: 7px;

    color: #d5c28e;

    font-size: 8px;

    font-weight: 600;

    text-transform: uppercase;
}


.single-event-field input {
    width: 100%;

    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background: var(--brown);

    color: #fff;
}


.single-event-form button {
    width: 100%;

    margin-top: 18px;

    padding: 15px;

    border: 0;

    background: var(--orange);

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;
}


/* NEXT */

.single-event-next {
    padding: 95px 0 110px;

    background: #fff;
}


.single-event-next > .container {
    width: min(1180px, calc(100% - 80px));
}


.single-event-next__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--line);
}


.single-event-next__head > a {
    color: var(--orange);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;
}


.single-event-next__grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-top: 28px;
}


.single-event-next-card {
    min-height: 180px;

    display: grid;

    grid-template-columns:
        70px
        1fr
        30px;

    gap: 20px;

    align-items: center;

    padding: 25px;

    border-top: 2px solid var(--orange);

    background: var(--cream);
}


.single-event-next-date strong {
    display: block;

    color: var(--orange);

    font-size: 34px;

    font-weight: 300;
}


.single-event-next-date span {
    font-size: 8px;

    text-transform: uppercase;
}


.single-event-next-card small {
    color: var(--orange);

    font-size: 8px;

    text-transform: uppercase;
}


.single-event-next-card h3 {
    margin: 8px 0 7px;

    font-size: 18px;

    font-weight: 500;
}


.single-event-next-card p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


.single-event-next-arrow {
    color: var(--orange);

    font-size: 20px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .single-event-layout,
    .single-event-rsvp__layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .single-event-card {
        position: relative;

        top: auto;
    }


    .single-event-next__grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .single-event-hero {
        min-height: 480px;
    }


    .single-event-hero__inner,
    .single-event-band__inner,
    .single-event-layout,
    .single-event-rsvp__layout {
        width: 100%;
    }


    .single-event-hero h1 {
        font-size: 50px;

        letter-spacing: -2px;
    }


    .single-event-hero__meta {
        grid-template-columns: 1fr;
    }


    .single-event-hero__meta > div {
        padding: 14px 0;

        border-right: 0;

        border-bottom: 1px solid var(--line);
    }


    .single-event-band__inner {
        align-items: flex-start;
        flex-direction: column;

        padding: 25px 0;
    }


    .single-event-main,
    .single-event-rsvp,
    .single-event-next {
        padding: 70px 0;
    }


    .single-event-info > div {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .single-event-presence {
        flex-direction: column;
    }


    .single-event-next__head {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* ==========================================================
   RSVP MEMBRE CONNECTÉ
========================================================== */

.single-event-rsvp .single-event-rsvp-actions {
    width: 100%;
    padding: 34px 30px;

    border-top: 2px solid #d97a2b;

    background: #24150f;
}


.single-event-rsvp .single-event-rsvp-actions__label {
    margin: 0 0 22px;

    color: #d7c484;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
}


/* BOUTONS */

.single-event-rsvp .single-event-rsvp-actions__buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    width: 100%;
}


.single-event-rsvp button.rsvp-choice {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 16px;

    margin: 0;
    padding: 16px 20px;

    border: 1px solid rgba(217, 122, 43, .45);
    border-radius: 0;

    background: transparent;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    text-align: left;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.single-event-rsvp button.rsvp-choice:hover {
    border-color: #d97a2b;

    background: rgba(217, 122, 43, .08);

    transform: translateY(-2px);
}


/* ICÔNE */

.single-event-rsvp .rsvp-choice__icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(217, 122, 43, .12);

    color: #d97a2b;

    font-size: 17px;
    font-weight: 500;
}


/* TEXTE */

.single-event-rsvp .rsvp-choice > span:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;

    color: #bca99d;

    font-size: 10px;
    font-weight: 400;

    line-height: 1.4;

    text-transform: uppercase;
}


.single-event-rsvp .rsvp-choice strong {
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-transform: none;
}


/* OUI SÉLECTIONNÉ */

.single-event-rsvp button.rsvp-choice--yes.is-selected {
    border-color: #d97a2b;

    background: #d97a2b;
}


.single-event-rsvp
button.rsvp-choice--yes.is-selected
.rsvp-choice__icon {
    background: #fff;

    color: #d97a2b;
}


/* NON SÉLECTIONNÉ */

.single-event-rsvp button.rsvp-choice--no.is-selected {
    border-color: #8b5e48;

    background: #382219;
}


/* MESSAGE */

.single-event-rsvp .single-event-rsvp-status {
    min-height: 18px;

    margin: 16px 0 0;

    color: #d7c484;

    font-size: 11px;
}


/* MOBILE */

@media (max-width: 650px) {

    .single-event-rsvp .single-event-rsvp-actions {
        padding: 25px 20px;
    }

    .single-event-rsvp .single-event-rsvp-actions__buttons {
        grid-template-columns: 1fr;
    }

}

/* TEST RSVP CONNECTÉ */

.single-event-rsvp-actions {
    width: 100%;
    padding: 30px;
    background: #24150f;
    border-top: 2px solid #d87d21;
}

.single-event-rsvp-actions__label {
    margin: 0 0 20px;
    color: #d8c58b;
    font-size: 11px;
}

.single-event-rsvp-actions__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.rsvp-choice {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    min-height: 90px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px;

    border: 1px solid rgba(216,125,33,.45);

    background: #1c120d;
    color: #fff;

    cursor: pointer;
}

.rsvp-choice__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,125,33,.14);
    color: #d87d21;

    font-size: 18px;
}

.rsvp-choice > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: #c4b1a6;

    font-size: 10px;
    text-transform: uppercase;
}

.rsvp-choice strong {
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-transform: none;
}

.rsvp-choice--yes.is-selected {
    background: #d87d21;
    border-color: #d87d21;
}

.rsvp-choice--no.is-selected {
    background: #3a2419;
    border-color: #93654d;
}

.single-event-rsvp-status {
    min-height: 18px;
    margin: 16px 0 0;

    color: #d8c58b;
    font-size: 11px;
}

@media (max-width: 650px) {
    .single-event-rsvp-actions__buttons {
        grid-template-columns: 1fr;
    }
}