@import url(variables.css);
@import url(reset.css);
@import url(header.css?v=20260727c);
@import url(animations.css);
@import url(footer.css?v=20260731a);

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--lcap-jaune) var(--lcap-bleu);
}

body {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--lcap-bleu);
    color: var(--lcap-blanc);
    overflow-x: hidden;
    width: 100vw;
    height: auto;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 55% at 50% -18%, rgba(255, 255, 255, 0.07) 0%, transparent 58%),
        radial-gradient(ellipse 45% 30% at 100% 0%, var(--home-accent-glow) 0%, transparent 55%),
        linear-gradient(180deg, var(--home-bg-top) 0%, var(--lcap-bleu) 42%, var(--home-bg-bottom) 100%);
}

main {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: space-around;
    justify-content: space-around;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 80vw;
    height: auto;
    z-index: 1;
}


iframe[src="../header.html"],
iframe[src="header.html"] {
    scrollbar-width: none;
    width: 100vw;
    min-height: 4.25rem;
    height: 4.25rem;
    border: 0;
    display: block;
}

header {
    scrollbar-width: 0;
    width: 100vw;
    min-height: 3.5rem;
    height: auto;
}

iframe[src="../footer.html"],
iframe[src="footer.html"],
footer {
    scrollbar-width: 0;
    width: 100vw;
    min-height: 0;
    height: auto;
    border: 0;
    display: block;
}

button {
    height: 2.8em;
    min-width: 12em;
    background: var(--lcap-jaune);
    font-size: 1.2em;
    line-height: .1em;
    color: var(--lcap-noir);
    padding: 0 2% 0 2%;
    outline: none;
    border: 1px solid var(--lcap-jaune);
    border-radius: 8px;
    transition: var(--ease);
}

button:hover {
    transform: scale(1.02);
    background: var(--lcap-jaune);
    color: var(--lcap-noir);
}

.ancre {
    height: 2em;
    opacity: 0;
}

.ancre:first-child {
    height: 0;
}

icone>img:hover,
header>i>a:hover,
#header>menu>a:hover {
    transform: scale(1.2);
    transition: var(--ease);
}

section {
    display: flex;
    flex-flow: row wrap;
    align-items: space-around;
    justify-content: space-around;
    width: 100%;
    margin-top: 1.5rem;
    height: auto;
}

#photos {
    width: 90%;
    margin-top: 3em;
    object-fit: cover;
}

#photos>img {
    border-radius: 20px;
    filter: saturate(1.2) contrast(1.2) brightness(1.2);
    box-shadow: var(--shadow-card);
}

figure {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 40%;
}

figure>figcaption {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

figure>img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

a {
    color: var(--lcap-jaune);
}

a:hover {
    color: var(--lcap-blanc);
}

@media screen and (max-width: 950px) {
    figure {
        width: 80%;
    }

    figure>img {
        width: 100%;
        height: auto;
    }

    main {
        width: 85vw;
        margin-top: 2vh;
    }

    article {
        margin-bottom: 2vh;
    }
}

@media screen and (max-height: 780px) {
    figure {
        width: 80%;
    }
}
