@import '_reset.css?v=1.0.5';
@import '_typography.css?v=1.0.5';
@import '_layout.css?v=1.0.5';
@import '_menu.css?v=1.0.6';
@import '_form.css?v=1.0.5';
@import '_event.css?v=1.0.5';
@import '_infos.css?v=1.0.5';
@import '_donate.css?v=1.0.5';

:root {
    --primary-color: #FF0C00;
    --text-color: white;
    --bg-color: black;
    --menu-color: #FF99F2;
}

html, body {
    font-family: "Heading Now";
    line-height: 1.3;
    font-size: 18px;
    /* color in pink while the image load */
    background-color: var(--menu-color);
}
@media (max-width: 1500px) {
    html, body {
        font-size: 16px;
    }
}
@media (max-height: 850px) {
    html, body {
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    html, body {
        font-size: 15px;
    }
}

* {
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
main.content a {
    color: var(--primary-color);
    text-decoration: underline;
}
main.content footer a:hover {
    text-decoration: underline;
}

main.page-home > h1 {
    display: none;
}
main.page-home {
    padding: 0;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    font-family: "Heading Now Title";
    font-weight: normal;
    width: 100%;
}
h2 {
    font-size: 1.3rem;
}
h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}


h2+p {
    margin-top: -.7rem;
}

form, p {
    margin-bottom: 1rem;
}

figure {
    margin: 1rem 0;
}

iframe {
    width: 100%;
    margin-bottom: 1rem;
}

img {
    width: 100%;
    max-width: 100%;
}

figcaption {
    font-size: .7rem;
    font-weight: 300;
}

button {
    color: var(--primary-color);
    font: inherit;
    box-shadow: none;
    border: none;
    text-transform: uppercase;
    background-size: cover !important;
    padding: 9px 10px 3px 10px;
    cursor: pointer;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert+.alert {
    margin-top: -2rem;
}

.alert.error {
    background-color: var(--primary-color);
}

.alert.success {
    background-color: var(--menu-color);
}

main:not(.page-home):not(.page-contact) footer {
    visibility: hidden;
    margin-top: 0;
}
footer {
    font-size: .7rem;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 4rem;
    margin-bottom: 1rem;
    min-height: 6rem;
    display: flex;
    align-items: flex-end;
}

ul, ol {
    margin: -.5rem 0 1rem 1rem;
}
ol {
    margin-left: 1.5rem;
}
strong {
    color: var(--primary-color);
}
em {
    text-decoration: underline;
}