/*VARIABLES*/
:root {
    --font-primary-color: #f5f5f5;
    --font-secondary-color: #000;
    --bg-primary-color: #211E1C;
    --bg-secondary-color: #141311;
    --bg-tertiary-color: #EF7F11;
    --corps-width: 1280px;
    --font-title: "Inknut Antiqua";
    --font-text: "Source Serif 4";
    --font-another: "Inter";
}

/*GENERAL*/
body {
    font-family: var(--font-text), serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #909090;
}

h1, h2, h3 {
    font-family: var(--font-title), serif;
}

button {
    border: none;
    outline: none;
    background: var(--bg-tertiary-color);
    border-radius: 8px;
    font-family: var(--font-another), sans-serif;
    font-weight: 600;
    cursor: pointer;
}

/*HEADER*/
header {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--corps-width);
    height: 80px;
    padding: 0 16px;
    background-color: var(--bg-secondary-color);
}

header img {
    width: 36px;
    cursor: pointer;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--font-primary-color);
}

header button {
    padding: 9px 15px;
}

/*HERO-SECTION*/
.hero-section {
    position: relative;
    height: 488px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, .25);
}

.hero-section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-title), serif;
    font-weight: 500;
}

.hero-section-text h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3rem;
    line-height: 3rem;
}

.hero-section-text p:first-of-type {
    font-size: 2rem;
    margin-bottom: 24px;
}

.hero-section-text p:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    line-height: 2rem;
}

/*MAIN*/
main {
    width: var(--corps-width);
    background-color: var(--bg-primary-color);
    padding-top: 40px;
    color: #fff;
}

main h2:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    line-height: 4rem;
    margin-bottom: 72px;
}

.section-article {
    display: flex;
    justify-content: center;
    padding: 0 76px;
    gap: 24px;
}

.section-article:nth-child(-n + 3) {
    margin-bottom: 72px;
}

.section-article:nth-child(odd) {
    flex-direction: row-reverse;
}

.section-article:nth-child(4){
    margin-bottom: 80px;
}

.section-article img {
    border: 2px solid var(--bg-tertiary-color);
}

.section-article h3 {
    font-size: 2rem;
    font-weight: 600;
}

.section-article p {
    font-size: 1.5rem;
    font-weight: 400;
}

.section-article p:first-of-type {
    margin-bottom: 16px;
}

.section-billetterie {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 117px;
}

.section-billetterie img {
    filter: brightness(50%);
    border: 1px solid #fff;
    cursor: pointer;
}

.section-billetterie div {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-billetterie div h2 {
    margin-bottom: 50px;
}
.section-billetterie div span {
    margin-bottom: 48px;
}

.section-billetterie div h2,
.section-billetterie div span {
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
}

.section-billetterie div button {
    padding: 9px 47px;
}

/*FOOTER*/
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--corps-width);
    height: 88px;
    background-color: var(--bg-tertiary-color);
    padding: 0 73px;
}

footer p {
    font-family: var(--font-another), sans-serif;
}

footer p:last-of-type,
footer p:first-of-type {
    font-weight: 500;
}

footer p:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p:nth-of-type(2) {
    font-weight: 600;
    cursor: pointer;
}

footer p:nth-of-type(2):hover {
    text-decoration: underline;
}