@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Bebas+Neue&family=Agbalumo&family=Emblema+One&family=Ewert&family=Fascinate&family=Orbitron:wght@400..900&family=Young+Serif&family=Satisfy&family=DynaPuff:wght@400..700&family=New+Rocker&family=Monoton&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

main {
    /* background-color: #1c1c23;*/
    max-width: 1500px;
    margin: auto;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Bebas Neue", sans-serif;
    margin: 0 0 16px 0;
}

h4 {
    margin: 0 0 14px 0;
}

h5 {
    margin: 0 0 10px 0;
}

h6 {
    margin: 0 0 6px 0;
}

h4,
h5,
h6,
p,
a {
    font-family: "DM Sans", sans-serif;
}

h1 {
    font-weight: 400;
    font-size: 64px;
    line-height: 76px;
}

@media screen and (max-width:600px) {
    h1 {
        font-size: 48px;
        line-height: 62px;
    }
}

h2 {
    font-weight: 500;
    font-size: 48px;
}

h3 {
    font-weight: 600;
    font-size: 36px;
}

h4 {
    font-weight: 300;
    font-size: 28px;
}

h5 {
    font-weight: 500;
    font-size: 20px;
}

h6 {
    font-weight: 400;
    font-size: 16px;
}

p {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 20px;
}

.text-justified {
    text-align: justify;
}

a.link-none {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

a.link-muted {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

a.link-muted:hover {
    text-decoration: underline;
    cursor: pointer;
}

a.header-link {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    margin: 0 4px;
    font-weight: 300;
    font-size: 16px;
}

a.header-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

li {
    font-family: 'DM Sans', sans-serif;
}

header {
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header>.header-content {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-content>.logo {
    height: 48px;
}

button,
.button {
    border: none;
    color: inherit;
    line-height: 46px;
    font-size: 22px;
    padding: 0 22px;
    font-family: "Bebas Neue", sans-serif;
    transition: 0.3s;
    font-weight: 400;
    cursor: pointer;
    flex-shrink: 0;
    background-color: #00F0D4;
    color: black;
    text-decoration: none;
    display: inline-block;
}

button.button-lg,
.button.button-lg {
    line-height: 62px;
    font-size: 26px;
    padding: 0 28px;
}

button.btn-outline,
.button.button-outline {
    border: 1px solid rgb(255, 255, 255);
    color: white;
    background-color: transparent;
    font-weight: 500;
}

button.btn-outline:hover {
    background-color: rgba(128, 128, 128, 0.4);
}

button:hover:not(button:disabled),
.button:hover:not(.button:disabled) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

button:active:not(.btn-filled:disabled) {
    transform: scale(0.95);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

button:disabled {
    background-color: rgba(128, 128, 128, 0.2);
    color: grey;
    cursor: wait;
}

section {}

section>.section-content {
    max-width: 1300px;
    margin: auto;
    padding: 100px 20px;
    box-sizing: border-box;
}

section.hero-section {
    min-height: 900px;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
}



.collapsible {}

.collapsible.collapsible--revealed>.collapsible-content {
    display: block;
}

.collapsible-head {
    border: 1px solid black;
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.collapsible-content {
    border: 1px solid black;
    padding: 20px 20px;
    border-top: none;
    display: none;
}


input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea,
select {
    background-color: transparent;
    min-height: 52px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgb(16, 16, 16);
    border-radius: 0px;
    line-height: 32px;
    font-size: 16px;
    padding: 0 10px;
    margin: 5px 0 6px 0;
    color: black;
    font-weight: 300;
    font-family: "DM Sans", sans-serif;
}

option {
    color: black;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border: 1px solid rgb(16, 16, 16);
    outline: 1px solid rgb(16, 16, 16);
    margin-bottom: 6px;
}

.input-container.field-invalid>input,
input.field-invalid,
.input-container.field-invalid>textarea,
textarea.field-invalid {
    border-color: rgb(255, 167, 167);
    outline-color: rgb(255, 167, 167);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffa7a7'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.input-container.field-invalid>p.field-invalid-text {
    display: block;
}

.input-container>p.field-invalid-text {
    display: none;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 6px 4px;
}

.input-container {
    padding: 7px 0;
}

.input-container>p {
    margin: 0;
}

p.field-invalid-text {
    color: rgb(255, 167, 167);
    font-size: 12px;
    line-height: 12px;
    margin: 2px 0px 6px 0px;
}

.collapsible {
    margin: 16px auto;
    max-width: 800px;
}

.collapsible>.collapsible-head {
    border: 1px solid black;
    display: flex;
    align-items: center;
    padding: 0 20px;
    min-height: 72px;
    user-select: none;
}

.collapsible>.collapsible-content {
    width: 100%;
    border: 1px solid black;
    padding: 20px;
    box-sizing: border-box;
    border-top: none;
    display: none;
}

.collapsible.collapsible--open>.collapsible-content {
    display: block;
}

.collapsible.collapsible--open>.collapsible-head>svg {
    transform: rotate(180deg);
}

.card {
    border-radius: 5px;
    background-color: white;
    height: 100%;
    color: black;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    transition: 0.3s;
    user-select: none;
    text-decoration: none !important;
}

.card:hover {
    transform: scale(1.03);
}

.card:active {
    transform: scale(0.98);
}

@media screen and (max-width:600px) {
    .hide-mobile {
        display: none;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.463);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.modal.open {
    display: flex;
}

.modal-content {
    animation-name: modal;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background-color: #00394A;
    color: white;
    box-sizing: border-box;
    border-radius: 20px;
}

.modal-content>button {
    float: right;
}

.modal-content>h2 {
    margin: 0 0 20px 0;
}

@keyframes modal {
    0% {
        opacity: 0.0;
        transform: scale(0.0) translateY(1000px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
}


.service-card {
    display: flex;
    align-items: center;
    background-color: #1c1c23;
    box-shadow: 0 0 60px 15px rgb(0, 240, 212, 0.1);
}

.service-card>.service-card-image {
    height: 100%;
    width: 32%;
    min-height: 180px;
    aspect-ratio: 1/1;
    background-image: url(/img/hero-image.jpg);
    background-position: center;
    background-size: cover;
}

.service-card>.service-card-content {
    width: 68%;
    padding: 20px 30px;
    box-sizing: border-box;
}

.service-card-content>h5 {
    font-weight: 300;
    color: rgb(232, 232, 232);
}

.service-card-content>h4 {
    font-weight: 400;
}

@media screen and (max-width: 500px) {
    .service-card {
        display: block;
    }

    .service-card>.service-card-image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .service-card>.service-card-content {
        width: 100%;
    }
}

.programmation-styles-image {
    background-color: #00F0D4;
    width: 100%;
    height: 160px;
    background-position: center;
    background-size: cover;
}

.align-items-end {
    align-items: end;
}

@keyframes caroussel-scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}

.music-style-banner {
    display: inline-block;
    white-space: nowrap;
    overflow-x: hidden;
    width: 100%;
    height: 70px;
    background-color: #00F0D4;
    transform: rotate(-3deg);
    color: black;
}

.music-style-banner>.music-style-banner-content {
    display: inline-block;
    white-space: nowrap;
    animation: caroussel-scroll 16s infinite linear;
    user-select: none;
}

.music-style-banner>.music-style-banner-content>* {
    display: inline-block;
    margin: 0 20px;
    line-height: 62px;
    font-size: 30px;
}

.music-style-banner>h4 {
    flex-shrink: 0;
    margin: 0;
}

.shadow-group{
    flex-grow: 1;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #1c1c23;
    z-index: -1;
}
.shadow-spot{
    background-color: #00F0D4;
    border-radius: 100%;
    filter: blur(100px);
    height: 0;
    opacity: .12;
    position: absolute;
}

.equipment-image{
    background-position: center;
    background-size: cover;
    width: 100%; 
    height: 260px; 
    position: relative;
}

.equipment-image:hover > .equipment-caption{
    opacity: 1;
}

.equipment-caption{
    transition: 0.3s;
    opacity: 0;
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: #000000b7; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    user-select: none;
}

.gallery{
    display: flex; 
    align-items: center; 
    gap: 20px; 
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.gallery-image{
    aspect-ratio: 16/10; height: calc(280px + 5vw); background-color: #00F0D4;
    background-position: center;
    background-size: cover;
}

.past-events-photo {
    width: 130px;
    height: 130px;
    background-color: #00F0D4;
    color: black;
    text-align: center;
    padding: 24px 0;
    box-sizing: border-box;
}

.past-events {
    position: relative;
}

.past-events-text {
    transform: rotate(-90deg);
    text-align: right;
    position: absolute;
    top: 320px;
    left: 00px;
    transform-origin: top left;
}

.past-events-text-1 {
    margin: 0;
    font-size: 76px;
    line-height: 76px;
}

.past-events-text-2 {
    margin: 0;
    font-size: 56px;
    line-height: 56px;
}

@media screen and (max-width: 700px) {
    .past-events {
        margin-top: -100px;
    }

    .past-events-text-1 {
        font-size: 62px;
        line-height: 62px;
    }

    .past-events-text-2 {
        font-size: 48px;
        line-height: 48px;
    }

    .past-events-text {
        transform: none;
        text-align: right;
        position: relative;
        top: 0px;
        left: 0px;
        transform-origin: center center;
    }

    .past-events-photo {
        width: 100px;
        height: 100px;
        padding: 12px 0;
    }

    .past-events-photo > svg{
        width: 60px;
    }
}