@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* -------------------- Primary set-up --------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: "Poppins", sans-serif;
    color: var(--white);
}


/* -------------------- Colors --------------------*/
 
:root {
    /*Primary color*/
    --white: #FFFFFF;
    --black: #2b2b2b;
   
    /*Secondary color*/
    --orange: #fdb94c;
    --lightgrey: #cfc8c86c;
    --transparent: rgba(255,255,255,0.3);
}

.orange {
    color: var(--orange);
}


/* -------------------- Body & Main --------------------*/

body {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--black);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}


/* -------------------- Typography --------------------*/

h1 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;  
}

.sub-title {
    font-size: 2.5rem;
    color: var(--orange);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.punchline {
    color: var(--black);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
} 

h2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--orange);
    padding-top: 4rem;
    padding-bottom: 3rem;
    text-align: center;
}

p {
    font-size: 0.8rem;
    line-height: 130%;
    color: var(--grey500);
}


/* -------------------- Link & Button --------------------*/

/*Book Us Btn*/
.hero a {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
}

.hero a:focus {
    outline: none;
}

.hero a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

.book-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.book-link i {
    color: var(--black);
    font-size: 1.5rem;
}

.book-link span {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 300;
}

/*Download Playlist Btn*/
.music .col2 a {
    text-decoration: none;
    cursor: pointer;
    background-color: var(--orange);
    color: var(--black);
    font-size: 1.2rem;
    letter-spacing: 3px;;
    padding: 1rem 2rem;
    margin: 3rem 0;
    border-radius: 3rem;
}

.music .col2 a:focus {
    outline: none;
}

.music .col2 a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}


/* -------------------- Hero Section --------------------*/

.hero {
    width: 100vw;
    aspect-ratio: 1089 / 388;
    background-size :  100% auto;
    background-image: url("../images/hero.png");
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-block {
    width: 50%;
    padding-top: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* -------------------- Nav Section --------------------*/

/* Desktop menu */
nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 5rem;
    background-color: var(--black);
}

nav img {
    height: 2.5rem;  
}

#desktop-menu {
    display: initial;
}

#desktop-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#desktop-menu li {
    display: inline-block;
    margin-left: 2.5rem;
}

#desktop-menu li a {
    text-decoration: none;
}

#desktop-menu li a:focus {
    outline: none;
}

#desktop-menu li a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
    border-radius: 0.2rem;
}


/* Mobile menu closed */
#mobile-menu-closed {
    display: none;
}

#mobile-menu-closed button {
    border: none;
    background-color: var(--black);
    cursor: pointer;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#mobile-menu-closed button img {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.burger-menu:focus-visible {
    border: none;
    outline: 3px solid var(--orange500);
    outline-offset: 0.2rem;
    border-radius: 0.2rem;
}

/* Mobile menu open */
#mobile-menu-open {
    background-color: var(--white);
    width: 8rem;
    padding: 1rem;
    position: absolute;
    z-index: 10;
    display: none;
}

#mobile-menu-open button {
    border: none; 
    background-color: transparent;
    width: 1.3rem;
    height: 1.3rem;
}

#mobile-menu-open button img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    filter: brightness(0) saturate(100%) invert(77%) sepia(56%) saturate(864%) hue-rotate(341deg) brightness(101%) contrast(98%);
}

#mobile-menu-open button {
    cursor: pointer;
}

#mobile-menu-open button:focus-visible {
    outline: 3px solid var(--orange500);
    outline-offset: 0.2rem;
    border-radius: 0.2rem;
}

#mobile-menu-open  ul {
    margin-top: 1rem;
}

#mobile-menu-open  li {
    list-style: none;
    padding-bottom: 1rem;
}

#desktop-menu li a,
#mobile-menu-open li a {
    text-decoration: none;
}

#mobile-menu-open li a:hover {
    box-shadow: inset 0 -3px 0 0 var(--orange);
    cursor: pointer;
    outline: none;
}

#mobile-menu-open li a:focus-visible {
    outline: 3px solid var(--orange500);
    outline-offset: 0.2rem;
    border-radius: 0.2rem;
}

#mobile-menu-open li a,
#mobile-menu-open button,
#mobile-menu-open button i {
    color: var(--black);
}


/* -------------------- Newsltter Section --------------------*/

.newsletter {
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 2rem;
}

.bloc1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.bloc1 img {
    margin-top: 1rem;;
    width: 15rem;
}

.bloc2 {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bloc2 input {
    background-color: var(--lightgrey);
    color: var(--black);
    border: none;
    height: 4rem;
    width: 20rem;
    padding: 0 1rem 0 1rem;
    margin-left: 0.5rem;
    font-size: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.bloc2 input:focus {
    outline: none;
}

.bloc2 input:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
} 

.bloc2 button {
    background-color: var(--orange);
    border: none;
    height: 4rem;
    padding: 0 2rem;
    margin-left: 0.5rem;
    font-size: 1.3rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    cursor: pointer;
}

.bloc2 button:focus {
    outline: none;
}

.bloc2 button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

.bloc2 button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.newsletter-status {
    width: 100%;
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--black);
}

.newsletter-status.error {
    color: #a30000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* -------------------- Music Section --------------------*/

.music {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 6rem;
}

.music-col {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: 0 auto;
    max-width: 1080px;
}

.col1, .col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.col1 {
    margin-top: 10rem;
}

.col1 img:first-of-type,
.col1 img:nth-of-type(2),
.col2 img:first-of-type,
.col2 img:nth-of-type(2) {
    width: 90%;
    border: 5px solid var(--transparent);
    margin: 1rem;
    transition: transform 0.6s ease;
}

.col1 img:first-of-type:hover,
.col1 img:nth-of-type(2):hover,
.col2 img:first-of-type:hover,
.col2 img:nth-of-type(2):hover {
    transform: scale(1.05);
}


/* -------------------- Tour Section --------------------*/

.tour {
    background-color: var(--black);
    padding: 0 5rem 6rem 5rem;
}

.tour p {
    border-top: 0.5px solid var(--white);
    border-bottom: 0.5px solid var(--white);
    padding: 2rem 0;
    font-size: 1.2rem;
}

.tour p a {
    color: var(--orange);
    text-decoration: none;
}

.tour p a:focus {
    outline: none;
}

.tour p a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

.tour p:hover {
    background-color: var(--transparent);
}


/* -------------------- Videos Section --------------------*/

.videos {
    text-align: center;
    padding-bottom: 6rem;
    background-image: url("../images/marbre_fonce.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.videos video {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    height: auto;
}

.video-shell {
    position: relative;
    width: min(90%, 960px);
    margin: 0 auto;
}

.video-shell video {
    width: 100%;
    max-width: none;
}

.video-toggle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 999px;
    background-color: rgba(253, 185, 76, 0.95);
    color: var(--black);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
}

.video-shell.is-playing .video-toggle {
    opacity: 0;
    pointer-events: none;
}

.video-shell:hover .video-toggle,
.video-shell:focus-within .video-toggle,
.video-shell.is-paused .video-toggle {
    opacity: 1;
    pointer-events: auto;
}

.video-toggle:focus {
    outline: none;
}

.video-toggle:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

@media (max-width: 768px) {
    .videos {
        background-attachment: scroll;
    }
}

.videos video:focus {
    outline: none;
}

.videos video:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}


/* -------------------- Contact Section --------------------*/

.contact {
    padding: 0 2rem 4rem;
    background-color: var(--white);
}

.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-wrapper img {
    width: 10rem;
    max-width: 20%;
}

.contact-form {
    width: min(100%, 34rem);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-label {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-label sup {
    color: var(--orange);
    font-size: 0.75em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: var(--lightgrey);
    color: var(--black);
    border: none;
    border-radius: 0.6rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-form button {
    margin-top: 0.6rem;
    border: none;
    border-radius: 999px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.contact-status {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    color: var(--black);
    text-align: center;
}

.contact-status.error {
    color: #a30000;
}

.contact-form button:focus {
    outline: none;
}

.contact-form button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 0.2rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-wrapper img {
        max-width: 8rem;
        width: 30%;
    }

    .bloc2 {
        width: 80%;
    }
}

.contact-wrapper img {
    background-color: var(--lightgrey);
}

.contact-wrapper img:hover {
    background-color: var(--orange);
}

/* -------------------- Footer --------------------*/

footer {
    background-color: var(--orange);
    height: 10rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--black);
}

/* -------------------- Responsivness --------------------*/

/* Desktop */
@media screen and (max-width: 1350px) {
    .hero-block {
        padding-top: 8rem;
    }
}

@media screen and (max-width: 1150px) {
    .music-col {
        width: 80%;
    }
}

/* Tablet */
@media screen and (max-width: 950px) {
    .hero-block {
        margin: 0 auto;
    }

    nav {
        position: relative;
    }

    #desktop-menu {
        display: none;
    }

    #mobile-menu-closed {
        display: block;
    }

    #mobile-menu-open {
        right: 1rem;
        top: calc(100% - 0.3rem);
        width: 11rem;
        border-radius: 0.8rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    #mobile-menu-open li {
        padding-bottom: 0.8rem;
    }

    #mobile-menu-open li:last-child {
        padding-bottom: 0;
    }

    #mobile-menu-open li a {
        color: var(--black);
        display: inline-block;
        font-weight: 500;
    }

    #desktop-menu {
        display: initial;
    }

    #mobile-menu-closed,
    #mobile-menu-open {
        display: none;
    }
    .music-col {
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    .hero-block {
        padding-top: 5rem;
    }

    .newsletter {
        flex-direction: column;
    }

    .bloc1 {
        width: 60%;
        margin-bottom: 2rem;
    }

    .music-col {
        flex-direction: column;
    }

    .col1, .col2 {
        width: 90%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 840px) {
    .hero-block {
        width: 80%;
        padding-top: 3rem;
    }
}

@media screen and (max-width: 700px) {
    .hero-block {
        padding-top: 1rem;
    }

    .bloc2 {
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .hero {
         background-image: url("../images/hero-mobile.png");
         padding-bottom: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 2rem;;
    }

    .bloc1 {
        width: 100%;
    }

    .bloc2 input {
        width: 12rem;
    }

    .bloc2 button {
        padding: 0 0.5rem;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        margin-bottom: 1rem;
    }

    .tour {
        padding: 0 3rem 6rem 3rem;
    }
}
