.reservation-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gj-light);
    color: var(--gj-secondary);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.reservation-main {
    flex: 1;
    width: min(100% - 48px, var(--gj-container));
    margin: 0 auto;
}

/* HERO */

.reservation-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-bottom: 80px;
    padding: 80px var(--gj-gutter);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.reservation-hero__background {
    position: absolute;
    inset: -24px;
    background:
        linear-gradient(50deg, color-mix(in srgb, var(--gj-secondary) 82%, transparent), color-mix(in srgb, var(--gj-primary) 18%, transparent)),
        url("/images/reservation/salle_de_jeux.jpg") center / cover;
    filter: blur(14px);
    transform: scale(1.04);
}

.reservation-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
    color: var(--gj-light);
}

.reservation-eyebrow {
    display: block;
    margin: 0 0 16px;
    color: var(--gj-light);
    font-family: var(--gj-font-ui);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reservation-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--gj-light);
    font-family: var(--gj-font-title);
    font-size: clamp(64px, 9vw, 112px);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.reservation-hero p {
    max-width: 620px;
    margin: 24px 0 40px;
    color: var(--gj-light);
    font-size: 18px;
    line-height: 1.6;
    opacity: 1;
}

.reservation-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.reservation-hero .reservation-button {
    min-height: 48px;
    padding: 12px 32px;
    border: 0;
    border-radius: 10px;
    color: var(--gj-light);
    font-weight: 800;
    transition: filter 120ms ease, transform 120ms ease;
}

.reservation-hero .reservation-button:hover {
    color: var(--gj-light);
    filter: brightness(1.08);
}


.reservation-hero .reservation-button--gold,
.reservation-hero .reservation-button--secondary {
    background: var(--gj-accent);
    color: var(--gj-light);
}

/* SECTIONS */

.reservation-experiences {
    margin-bottom: 80px;
}


.reservation-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.reservation-card {
    border-radius: 20px;
    overflow: hidden;
}

/* CARD ÉVÉNEMENTS */

.reservation-card--events {
    position: relative;
    grid-column: span 8;
    min-height: 400px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gj-light);
}

.reservation-card__background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: var(--gj-primary);
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.reservation-card--events:hover .reservation-card__background {
    transform: scale(1.05);
}

.reservation-card__content {
    position: relative;
    z-index: 1;
}

.reservation-badge {
    width: fit-content;
    margin-bottom: 24px;
    padding: 6px 24px;
    border-radius: 999px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.reservation-badge--gold {
    background: var(--gj-accent);
    color: var(--gj-light);
}

.reservation-badge--purple {
    background: var(--gj-accent);
    color: var(--gj-light);
}

.reservation-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    text-transform: uppercase;
}

.reservation-card--events h3 {
    width: fit-content;
    padding: 10px 24px 4px;
    border-radius: 12px;
    color: var(--gj-light);
    background: var(--gj-secondary);
    line-height: 0.95;
}

.reservation-card p {
    margin: 24px 0 0;
    color: var(--gj-secondary);
    line-height: 1.6;
}

.reservation-card--events p {
    max-width: 520px;
}

/* BOUTONS */

.reservation-button {
    border: 0;
    border-radius: 12px;
    gap: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, border-bottom-width 0.15s ease, background 0.2s ease;
}

.reservation-button:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

.reservation-button--orange {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-top: 80px;
    padding: 24px 80px;
    background: var(--gj-accent);
    color: var(--gj-light);
}

.reservation-button--primary {
    width: 100%;
    padding: 24px;
    background: var(--gj-primary);
    color: var(--gj-light);
}

.reservation-button--secondary {
    padding: 14px 24px;
    background: var(--gj-primary);
    color: var(--gj-light);
}

.reservation-button--gold {
    padding: 14px 24px;
    background: var(--gj-accent);
    color: var(--gj-secondary);
}

/* CARD JEU LIBRE */

.reservation-card--free-play {
    grid-column: span 4;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gj-primary);
}

.reservation-card--free-play h3 {
    color: var(--gj-secondary);
}

.reservation-card--free-play p {
    color: var(--gj-secondary);
}

.reservation-card__details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-card__details > div:not(.reservation-card__message) {
    padding: 12px 0;
    border-bottom: 1px solid var(--gj-secondary);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--gj-secondary);
}

.reservation-card__details span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.reservation-card__details strong {
    font-weight: 400;
}

.reservation-card__message {
    margin-top: 12px;
}

.reservation-card__message label {
    display: block;
    margin-bottom: 4px;
    color: var(--gj-secondary);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.reservation-card__message textarea {
    width: 100%;
    min-height: 96px;
    padding: 24px;
    border: 1px solid var(--gj-secondary);
    border-radius: 12px;
    background: var(--gj-light);
    color: var(--gj-secondary);
    font: inherit;
    resize: vertical;
}

.reservation-card__message textarea:focus {
    outline: none;
    border-color: var(--gj-primary);
}

/* PETITES CARDS TCG / PRIVATIF */

.reservation-card--tcg,
.reservation-card--private {
    grid-column: span 6;
    min-height: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.reservation-card--tcg {
    border: 1px solid var(--gj-primary);
    background: var(--gj-light);
}

.reservation-card--private {
    background: var(--gj-accent);
    color: var(--gj-light);
}

.reservation-card__icon {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gj-light);
    color: var(--gj-primary);
    box-shadow: none;
}

.reservation-card__icon span {
    font-size: 3rem;
}

.reservation-card__icon--gold {
    background: var(--gj-accent);
    color: var(--gj-accent);
}

.reservation-card__text {
    width: 100%;
}

.reservation-card__text h3 {
    margin: 0;
    color: var(--gj-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.reservation-card__text p {
    max-width: 460px;
    margin: 12px 0 0;
    color: var(--gj-secondary);
    line-height: 1.6;
}

.reservation-card--private .reservation-card__text h3,
.reservation-card--private .reservation-card__text p {
    color: var(--gj-light);
}

.reservation-card--tcg .reservation-button,
.reservation-card--private .reservation-button {
    margin-top: auto;
}

/* FAQ */

.reservation-faq {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}


.reservation-faq__list {
    display: grid;
    width: 100%;
    gap: 12px;
}

.reservation-faq__item {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--gj-primary);
    border-radius: 20px;
    background: var(--gj-light);
}

.reservation-faq__item summary {
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    list-style: none;
}

.reservation-faq__item summary::-webkit-details-marker {
    display: none;
}

.reservation-faq__item summary span:first-child {
    color: var(--gj-secondary);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.reservation-faq__item summary .material-symbols-outlined {
    transition: transform 0.2s ease;
}

.reservation-faq__item[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.reservation-faq__item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--gj-secondary);
    line-height: 1.6;
}

/* TABLETTE */

@media (max-width: 1024px) {
    .reservation-main {
        width: min(100% - 40px, var(--gj-container));
    }

    .reservation-hero {
        padding: 48px;
        flex-direction: column;
    }

    .reservation-hero__content {
        max-width: 100%;
    }

    .reservation-hero__visual {
        width: 100%;
        height: 360px;
        overflow: hidden;
        border-radius: 0 0 18px 18px;
    }

    .reservation-hero__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 55%;
        transform: none;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .reservation-card--events,
    .reservation-card--free-play,
    .reservation-card--tcg,
    .reservation-card--private {
        grid-column: auto;
    }

    .reservation-card--tcg,
    .reservation-card--private {
        min-height: auto;
    }

    .reservation-button--orange,
    .reservation-button--primary {
        font-size: 1.8rem;
        font-weight: 800;
        min-height: 58px;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .reservation-main {
        width: min(100% - 32px, var(--gj-container));
    }

    .reservation-hero {
        margin-bottom: 48px;
        padding: 32px;
        gap: 32px;
    }

    .reservation-hero h1 {
        font-size: clamp(3.25rem, 16vw, 5rem);
        line-height: 0.95;
    }

    .reservation-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .reservation-hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .reservation-hero__visual {
        height: 280px;
    }

    .reservation-experiences {
        margin-bottom: 48px;
    }

    .reservation-experiences h2,
    .reservation-faq h2 {
        font-size: clamp(2.75rem, 12vw, 4rem);
        line-height: 0.95;
    }

    .reservation-card--events,
    .reservation-card--free-play,
    .reservation-card--tcg,
    .reservation-card--private {
        padding: 32px;
    }

    .reservation-card--events {
        min-height: 420px;
    }

    .reservation-button--orange {
        width: 100%;
        margin-top: 48px;
        padding: 20px 24px;
    }

    .reservation-card__details > div:not(.reservation-card__message) {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .reservation-card__actions,
    .reservation-card__details {
        width: 100%;
    }

    .reservation-button,
    .reservation-card__link {
        width: 100%;
        justify-content: center;
    }

    .reservation-button--primary {
        font-size: 1.05rem;
        font-weight: 800;
    }

    .reservation-faq {
        padding: 48px 0;
    }

    .reservation-faq__item summary {
        gap: 16px;
        align-items: flex-start;
    }
}

/* PETIT MOBILE */

@media (max-width: 480px) {
    .reservation-main {
        width: min(100% - 24px, var(--gj-container));
    }

    .reservation-hero {
        padding: 24px;
    }

    .reservation-hero__visual {
        height: 220px;
    }

    .reservation-hero__image {
        transform: none;
        object-position: center;
    }

    .reservation-card--events,
    .reservation-card--free-play,
    .reservation-card--tcg,
    .reservation-card--private {
        padding: 24px;
        border-radius: 18px;
    }

    .reservation-card--events {
        min-height: 380px;
    }

    .reservation-button {
        font-size: 1.05rem;
        min-height: 52px;
    }

    .reservation-button--primary {
        font-size: 1.15rem;
        min-height: 56px;
    }

    .reservation-card__icon {
        width: 72px;
        height: 72px;
    }

    .reservation-card__icon span {
        font-size: 2.5rem;
    }

    .reservation-faq__item summary {
        padding: 20px;
    }

    .reservation-faq__item p {
        padding: 0 20px 20px;
    }
}


/* REDESIGN PAGE RÉSERVATION */

.reservation-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 32px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gj-accent);
    color: var(--gj-secondary);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.reservation-hero--redesign {
    align-items: stretch;
    padding: 56px;
    gap: 48px;
    background: var(--gj-primary);
}

.reservation-hero--redesign .reservation-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-hero__actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.reservation-hero--redesign .reservation-button {
    width: auto;
}

.reservation-hero--redesign .reservation-hero__visual {
    min-height: 420px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
}

.reservation-hero--redesign .reservation-hero__image {
    transform: none;
    border: 0;
    border-radius: 24px;
}

.reservation-hero--redesign .reservation-hero__stats {
    margin-top: 32px;
    gap: 12px;
}

.reservation-hero--redesign .reservation-hero__stat {
    padding: 12px 16px;
}

.reservation-section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.reservation-section-heading h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reservation-section-heading p {
    margin: 16px 0 0;
    color: var(--gj-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}


.reservation-process {
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.reservation-process__step {
    padding: 28px;
    border: 1px solid var(--gj-primary);
    border-radius: 24px;
    background: var(--gj-light);
}

.reservation-process__step span {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gj-secondary);
    color: var(--gj-light);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.reservation-process__step strong {
    display: block;
    color: var(--gj-secondary);
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.reservation-process__step p {
    margin: 10px 0 0;
    color: var(--gj-secondary);
    line-height: 1.6;
}

.reservation-options-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.reservation-option {
    grid-column: span 4;
    min-height: 360px;
    padding: 32px;
    border: 0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--gj-light);
    color: var(--gj-secondary);
    box-shadow: none;
    transition: transform 180ms ease;
}

.reservation-option:hover {
    transform: translateY(-4px);
}

.reservation-option--main,
.reservation-option--private {
    background: var(--gj-light);
    color: var(--gj-secondary);
}

.reservation-option__icon,
.reservation-option__icon--gold {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gj-accent);
    color: var(--gj-light);
    box-shadow: none;
}

.reservation-option__icon span {
    font-size: 2.5rem;
}

.reservation-option h3 {
    margin: 0;
    color: var(--gj-secondary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.7rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reservation-option p {
    margin: 18px 0 0;
    color: var(--gj-secondary);
    line-height: 1.65;
}

.reservation-option__content {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.reservation-option__list {
    width: 100%;
    margin: 18px 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.reservation-option__list li,
.reservation-option__list--light li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gj-secondary);
    font-weight: 700;
}

.reservation-option__list .material-symbols-outlined,
.reservation-option__list--light .material-symbols-outlined {
    color: var(--gj-accent);
}

.reservation-options-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-options-grid--two .reservation-option,
.reservation-options-grid--two .reservation-option--main,
.reservation-options-grid--two .reservation-option--private {
    grid-column: auto;
    min-height: 520px;
}


.reservation-faq--redesign .reservation-section-heading {
    margin: 0 0 32px;
    text-align: left;
}


.reservation-options-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-options-grid--two .reservation-option,
.reservation-options-grid--two .reservation-option--main,
.reservation-options-grid--two .reservation-option--private {
    grid-column: auto;
}

.reservation-options-grid--two .reservation-option {
    min-height: 520px;
}


.reservation-option .reservation-button--option {
    width: 100%;
    min-height: 72px;
    margin-top: 0;
    padding: 22px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.reservation-button--option-free-play,
.reservation-button--option-events,
.reservation-button--option-private {
    background: var(--gj-accent );
    color: var(--gj-light);
}

@media (max-width: 1024px) {
    .reservation-hero--redesign {
        padding: 40px;
    }

    .reservation-process {
        grid-template-columns: 1fr;
    }

    .reservation-options-grid {
        grid-template-columns: 1fr;
    }

    .reservation-option,
    .reservation-option--main,
    .reservation-option--private {
        grid-column: auto;
    }

    .reservation-options-grid--two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reservation-hero--redesign {
        padding: 28px;
    }

    .reservation-hero__actions {
        flex-direction: column;
    }

    .reservation-hero--redesign .reservation-button {
        width: 100%;
    }

    .reservation-hero--redesign .reservation-hero__visual {
        min-height: 260px;
    }

    .reservation-section-heading h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .reservation-option {
        min-height: auto;
        padding: 28px;
    }

    .reservation-option h3 {
        font-size: 2.35rem;
    }
}

/* Alignement de la section Comment réserver */

.reservation-experiences > .reservation-section-heading:first-child {
    max-width: 760px;
    margin: 0 0 48px;
    text-align: left;
}

.reservation-experiences > .reservation-section-heading:first-child .reservation-eyebrow,
.reservation-experiences > .reservation-section-heading:first-child h2,
.reservation-experiences > .reservation-section-heading:first-child p {
    color: var(--gj-secondary);
}

.reservation-faq {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-bottom: 80px;

}

.reservation-faq__list {
    text-align: left;
}

/* Uniformisation des petits titres - page Réservation */

.reservation-page p.gj-section-kicker,
.reservation-page span.gj-section-kicker,
.reservation-page .reservation-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gj-light);
    font-family: var(--gj-font-ui);
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: none;
}

/* Section Vos options */

.reservation-options-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 80px var(--gj-gutter);
    background: var(--gj-secondary);
}

.reservation-options-section__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.reservation-options-heading {
    max-width: 760px;
    margin: 0 0 48px;
    text-align: left;
}

/* Titres - section Vos options */

.reservation-options-subtitle {
    display: block;
    width: fit-content;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gj-light);
    font-family: var(--gj-font-ui);
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reservation-options-title {
    margin: 0;
    color: var(--gj-light);
    font-family: var(--gj-font-title);
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Titres - section FAQ */

.reservation-faq-subtitle {
    display: block;
    width: fit-content;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gj-secondary);
    font-family: var(--gj-font-ui);
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reservation-faq-title {
    margin: 0;
    color: var(--gj-secondary);
    font-family: var(--gj-font-title);
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
