/*GENERAL*/
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

body{
    font-family: oswald;
    font-size: 1.4rem;
}
/*FIN GENERAL*/

/*GOOGLE FONTS*/
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*FIN GOOGLE FONTS*/

/*HEADER*/
header{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
header h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
.header-releases{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-releases h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
.header-ourteam{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-ourteam h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
.header-contact{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-contact h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
.header-artists{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-artists h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
.header-events{
    display: flex;
    height: 100vh;
    background-color: black;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-events h1{
    font-size: 8rem;
    background: linear-gradient(90deg, #FC5130, #000, #30bced);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite alternate
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
/*FIN HEADER*/

/*GRADIENTS*/
.gradient-black-orange {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #000 0%, #fc5230 100%);
}
.gradient-orange-grey {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #fc5230 0%, #303036 100%);
}
.gradient-grey-orange {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #303036 0%, #fc5230 100%);
}
.gradient-black-grey {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #000 0%, #303036 100%);
}
.gradient-black-blue {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #000 0%, #30bced 100%);
}
.gradient-blue-orange {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 50vh;
    background-image: linear-gradient(180deg, #30bcde 0%, #fc5230 100%);
}
/*FIN GRADIENTS*/

/*NAVBAR*/
.navbar{
    position: absolute;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.navbar a {
    color: white;
}

.navbar .nav-links {
    font-size: 2rem;
}

.navbar .logo {
    font-size: 2.5rem;
    font-weight: bold;
}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li:hover {
    transform: scale(1.2);
    transition: 0.2s;
}

.navbar .nav-links ul li a:hover {
    color: #30bced;
}

.navbar .nav-links ul li {
    margin: 0 25px;
}

.navbar .nav-links ul li.active a {
    color: #fc5230;
    font-weight: 600;
}

.navbar .menu-hamburger {
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    width: 35px;
}
/*FIN NAVBAR*/

/*COOKIES*/
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #303036;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    opacity: 1;
    color: white;
    transition: 0.5s;
}

.cookies-btn {
    display: flex;
    margin-right: 4rem;
}

.btn {
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 10px;
}

.btn.btn-success {
    background-color:#fc5230 ;
}
/*FIN COOKIES*/

/*FOOTER*/
footer {
    height: 20vh;
    background-color: #FC5130;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    color: black;
}

footer div {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    color: white;
    transition: 0.3s;
}
/*FIN FOOTER*/


/*PAGE ACCUEIL*/
/*LAST RELEASES*/
.last-releases {
    background-color: #fc5230;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.last-releases h1 {
    text-align: center;
    font-size: 7rem;
    color: black;
}

.last-releases p {
    text-decoration: none;
    color:black;
    text-align: right;
    font-size: 2rem;
    padding-right: 3rem;
}

.last-releases p:hover {
    color: #fffaff;
    transition: 0.3s;
}

.last-releases-img {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.last-releases-img a {
    align-items: center;
    flex: 1 1 25%;
    display: block;
    padding: 15px;
}

.last-releases-img img {
    width: 100%;
    height: auto;
    border-radius: 2.5%;
    transition: transform 0.3s ease;
}

.last-releases-img img:hover {
    transform: scale(1.025);
}
/*FIN LAST RELEASES*/

/*ARTISTS*/
.artists-section {
    background-color: #303036; 
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.artists-section h1 {
    text-align: center;
    font-size: 7rem;
    color: white;
}

.artists-section p {
    text-decoration: none;
    color:white;
    text-align: right;
    font-size: 2rem;
    padding-right: 3rem;
}

.artists-section p:hover {
    color: #FC5130;
    transition: 0.3s;
}

.artists-selection-img {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.artists-selection-img a {
    align-items: center;
    flex: 1 1 25%;
    display: block;
    padding: 15px;
}

.artists-selection-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.artists-selection-img img:hover {
    transform: scale(1.05);
}
/*FIN ARTISTS*/
/*FIN ACCUEIL*/

/*OUR TEAM*/
/*PRESENTATION*/
.presentation-img {
    flex: 1;
    padding: 2rem;
}
.presentation-img img {
    border-radius: 2.5%;
    flex: 1;
    max-width: 100%;
}
.presentation {
    background-color: #FC5130;
    display: flex;
    align-items: center;
    padding: 2rem;
}
.presentation-txt {
    flex: 1;
    padding: 2rem;
    text-align: left;
}
.presentation-txt h1 {
    font-size: 6rem;
    text-align: center;
    padding: 2rem;
}
/*FIN PRESENTATION*/

/*HISTORY*/
.history-img {
    flex: 1;
    padding: 2rem;
}
.history-img img {
    border-radius: 2.5%;
    flex: 1;
    max-width: 100%;
}
.history {
    background-color: #303036;
    display: flex;
    align-items: center;
    padding: 2rem;
}
.history-txt {
    flex: 1;
    padding: 2rem;
    text-align: left;
    color: white;
}
.history-txt h1 {
    font-size: 6rem;
    text-align: center;
    padding: 2rem;
}
/*FIN HISTORY*/
/*FIN OUR TEAM*/

/*RELEASES & ARTISTS*/
/*RELEASES*/
.item {
    background-color: #303036;
    padding: 0.6rem;
    border-radius: 2.5%;
    aspect-ratio: 1 / 1;
    padding: 2rem;
}
.item a{
    display: block;
    text-decoration: none;
    color: inherit;
}
.item:hover{
    transform: scale(1.025);
    transition: transform 0.4s ease;
}
.container {
    background-color: #303036;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(5, minmax(20rem, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: row;
    grid-auto-rows: minmax(5rem, auto);
    height: auto;
    padding: 3rem;
}
.item:nth-child(1){
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    background-image: url(IMAGES/covers/GOAL\ PLA5MA\ Edit\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(2){
    background-image: url(IMAGES/covers/transition\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(3){
    background-image: url(IMAGES/covers/Avalanche\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(4){
    background-image: url(IMAGES/covers/GOAL\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(5){
    background-image: url(IMAGES/covers/SOUND\ THE\ ALARMS\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(6){
    background-image: url(IMAGES/covers/The\ Techno\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(7){
    background-image: url(IMAGES/covers/Bike\ racing\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(8){
    background-image: url(IMAGES/covers/The\ Drop\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item:nth-child(9){
    background-image: url(IMAGES/covers/it’s\ your\ choice\ cover\ 700.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/*FIN RELEASES*/
/*ARTISTS*/
.item-artist {
    background-color: #303036;
    padding: 0.6rem;
    border-radius: 2.5%;
    aspect-ratio: 1 / 1;
    padding: 2rem;
}
.item-artist a{
    display: block;
    text-decoration: none;
    color: inherit;
}
.item-artist:hover{
    transform: scale(1.025);
    transition: transform 0.4s ease;
}
.item-artist:nth-child(1){
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    background-image: url(IMAGES/artists\ images/pla5ma.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(2){
    background-image: url(IMAGES/artists\ images/naovel.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(3){
    background-image: url(IMAGES/logo\ blanc\ transparent.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(4){
    background-image: url(IMAGES/logo\ blanc\ transparent.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(5){
    background-image: url(IMAGES/logo\ blanc\ transparent.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(6){
    background-image: url(IMAGES/logo\ blanc\ transparent.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.item-artist:nth-child(7){
    background-image: url(IMAGES/logo\ blanc\ transparent.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/*FIN ARTISTS*/
/*FIN RELEASES & ARTISTS*/

/*CONTACT*/
.form-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #FC5130;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-family: "Oswald";
}
.form-container h1 {
    font-size: 6rem;
    padding: 3.5rem;
    text-align: center;
}
.form-container a {
    text-decoration: none;
    color: #000;
}
.form-container p {
    padding: 1rem;
    text-align: center;
}
.button-demo {
    border-radius: 15px;
    padding: 2rem;
    background-color: #30bcde;
    border-style: none;
    font-family: "Oswald";
    font-size: 1.5rem;
    transition: 0.3s;
}
.button-demo:hover {
    background-color: white;
}
.button-contact {
    border-radius: 15px;
    padding: 2rem;
    background-color: black;
    border-style: none;
    font-family: "Oswald";
    font-size: 1.5rem;
    transition: 0.3s;
    color: white;
}
.button-contact:hover {
    background-color: #30bcde;
    color: black;
}
/*FIN CONTACT*/

/*EVENTS*/
.calendar-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #303036;
}
.calendar-container iframe {
    border-radius: 2.5%;
}
/*FIN EVENTS*/

/*MEDIA QUERIES*/

@media screen and (max-width: 1000px) {
    /*NAVBAR*/
    .navbar {
        padding: 0;
    }

    .navbar .logo {
        position: absolute;
        top: 50px;
        left: 50px;
    }

    .navbar .menu-hamburger {
        display: block;
    }

    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background-color: #FC5130;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
    }

    .mobile-menu {
    margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li {
    margin: 25px 0;
    font-size: 1.2em;
}
    /*FIN NAVBAR*/

    /*COOKIES*/
    .cookies {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cookies-texte p {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
        box-sizing: border-box;
        word-wrap: break-word;
        max-width: 100%;
    }

    .cookies-btn {
        flex-direction: column;
        justify-content: center;
    }
    /*FIN COOKIES*/

    /*HEADER*/
    .header-index img {
        width: 70%;
    }
    .header-index h1{
        font-size: 5rem;
    }
    /*FIN HEADER*/

    /*LAST RELEASES*/
    .last-releases {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .last-releases-img {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .last-releases p {
        text-align: center;
    }
    .last-releases h1 {
        font-size: 4.5rem;
    }
    /*FIN LAST RELEASES*/

    /*ARTISTS*/
    .artists-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .artists-selection-img {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .artists-section p {
        text-align: center;
    }
    .artists-section h1 {
        font-size: 4.5rem;
    }
    /*FIN ARTISTS*/

    /*OUR TEAM*/
    .presentation {
        flex-direction: column;
    }
    .presentation-txt {
        text-align: center;
    }
    /*FIN OUR TEAM*/

    /*RELEASES*/
    .container{
    grid-template-columns: repeat(2, minmax(15rem, 1fr));
    grid-template-rows: repeat(2, auto);
    }
    /*FIN RELEASES*/
}