footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--background-default-color);
    color: var(--text-base-color);
    font-size: 0.95rem;
}

.footer-logo{
    height:100%;
    display:flex;
}

.footer-logo img {
    display: block;
    margin: auto;
    max-width: 150px;
}

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a,
.footer-col ul li span {
    color: var(--text-base-color);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--rouge_clair);
}

.footer-reseaux {
    display: block;
    gap: 0.8rem;
    margin-top: 1.2rem;
    font-size: 1rem;
    width:100%;
}

.footer-reseaux a{
    display: inline;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-newsletter input[type="email"] {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-base-color);
    font-size: 0.95rem;
}

.footer-newsletter label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 768px) {
    footer {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
        text-align: center;
    }

    footer li, .footer-reseaux{
        text-align: left;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        grid-template-columns: 1fr;
    }
    footer li, .footer-col a{
        margin: auto;
    }
    .footer-reseaux{
        text-align: center;
    }
}

.section-immersif {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: linear-gradient(to right, #1a0a0a, #2a0d0d);
}

.section-immersif-texte {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-numero {
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-family: var(--font-serif);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    user-select: none;
}

.section-immersif-texte h2 {
    font-family: var(--font-cursive);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.section-immersif-texte p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.section-immersif-image {
    overflow: hidden;
}

.section-immersif-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

    .section-immersif-image {
        height: 50vw;
    }

    .section-immersif-texte {
        padding: 3rem 2rem;
    }
}

.section-histoire {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: linear-gradient(to left, #1a0a0a, #2a0d0d);
}

.section-histoire-image {
    overflow: hidden;
}

.section-histoire-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-histoire-texte {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-histoire-texte .section-numero {
    left: auto;
    right: 3rem;
}

.section-histoire-texte h2 {
    font-family: var(--font-cursive);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.section-histoire-texte p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.lien-en-savoir-plus {
    margin-top: 1rem;
    color: var(--rouge_clair);
    font-family: var(--font-serif);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
    height: auto;
}

.lien-en-savoir-plus:hover {
    gap: 1rem;
}

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

    .section-histoire-image {
        height: 50vw;
        order: -1;
    }

    .section-histoire-texte {
        padding: 3rem 2rem;
    }
}

.section-taverne {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: linear-gradient(to right, #1a0a0a, #2a0d0d);
}

.section-taverne-texte {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-taverne-texte h2 {
    font-family: var(--font-cursive);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.section-taverne-texte p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.section-taverne-image {
    overflow: hidden;
}

.section-taverne-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

    .section-taverne-image {
        height: 50vw;
    }

    .section-taverne-texte {
        padding: 3rem 2rem;
    }
}

.section-avis {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--background-default-color);
}

.avis-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.avis-google {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avis-google-titre {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    line-height: 1;
}

.avis-etoiles {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.2em;
}

.avis-escapegame {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.avis-pourcentage {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.avis-pourcentage span {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    border: 2px solid var(--text-base-color);
    border-radius: 50px;
    padding: 0.1em 0.4em;
    margin-right: 0.3em;
}

.avis-source {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: bold;
}

.avis-bottom {
    display: grid;
    grid-template-columns: 250px 1fr;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.avis-resume {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.avis-resume strong {
    font-size: 1.3rem;
}

.avis-resume p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.4;
}

.avis-resume img {
    width: 100px;
    margin-top: auto;
    opacity: 0.8;
}

.avis-liste {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding: 2rem;
    gap: 2rem;
}

.avis-carte {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.avis-carte p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    opacity: 0.9;
}

.avis-auteur {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: auto;
}

.avis-suivant {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text-base-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.avis-suivant:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .section-avis {
        padding: 0.5rem;
    }

    .avis-top {
        flex-direction: column;
        text-align: center;
    }

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

    .avis-liste {
        grid-template-columns: 1fr;
    }
}