/* --------------------------------

Fonts
Open Sans, Droid Serif in normal (400) and bold (700) weight
https://www.google.com/fonts

-------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700|Droid+Serif);
@import url(https://fonts.googleapis.com/css2?family=Radio+Canada&display=swap);
/* @font-face {
    font-family: 'Radio Canada';
    src: url('/lib/Radio_Canada.ttf');
} */

/* -------------------------------- 

Primary style

-------------------------------- */
html,
body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    /* font-family: "Droid Serif", serif; */
    font-family: "Open Sans", sans-serif;
    font-family: 'Radio Canada', sans-serif;
    color: #ffffff;
    /* Purple Stuff */
    background-color: #350565
}

a {
    color: #222F39;
    /*text-decoration: none;*/
    /* font-family: 'Radio Canada', sans-serif; */
    /* font-family: "Open Sans", sans-serif; */
    outline: none;
}

p>a {
    color: #354857;
    text-decoration: underline;
}

p>a:hover {
    color: rgb(199, 61, 199);
}

img {
    max-width: 100%;
}

h2 {
    /* font-family: 'Radio Canada', sans-serif; */
    /* font-family: "Open Sans", sans-serif; */
    font-weight: bold;
}

/* NAVBAR */
.menu-wrap {
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 9999;
}

.hamburger {
    width: 34px;
    height: 26px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    margin-bottom: 7px;
    background: white;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.menu {
    display: none;
    margin-top: 18px;
    text-align: right;
}

.menu-wrap {
    position: fixed;
    top: 55px;
    right: 60px;
    z-index: 9999;
}

.menu a {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
    font-family: 'Radio Canada', sans-serif;
    font-size: 18px;
}

.menu a:hover {
    text-decoration: underline;
}

.menu.open {
    display: block;
}


/* -------------------------------- 

Header Stuff

-------------------------------- */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}


* {
    box-sizing: border-box;
}

header {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
    /* background-image: url("../img/Benoît_2025-7.jpg");
    background-size: cover; */
}


.hero-left {
    background-color: #080001;
    position: relative;
    flex: 0 0 40%;
    height: 100vh;
}


.hero-right {
    flex: 0 0 60%;
    height: 100vh;
    background-image: url("../img/Benoît_2025-17.jpg");
    background-size: cover;
}


#main {
    position: absolute;
    top: 11%;
    left: 13%;
    /* background-color: rgba(255, 255, 255, 0.4); */
    width: 480px;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 71px;
    padding-top: 20px;
    /*max-height: 70%;
  min-height: 44%;*/
}

#my-name {
    font-family: "Asimovian", sans-serif;
    font-weight: 1600;
    font-style: normal;
    font-size: 80px;
    top: 40px;
    left: 20px;
}



/*Arrow Bounce*/
.arrow {
    position: relative;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    top: 90%;
    width: 100px;
    margin-left: -40px;
}

.arrow {
    position: absolute;
    left: 50%;
    top: 90%;
    width: 100px;
    margin-left: -40px;
}

/*https://github.com/IanLunn/Hover/blob/master/css/hover.css*/
.hvr-sink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sink:hover,
.hvr-sink:focus,
.hvr-sink:active {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}


#dates {
    height: 100vh;
    background: #303e49;
    /* background: url("../img/home.jpg") no-repeat center center fixed; */
    background: url("../img/CooncertPatBack.jpg") no-repeat center 1% scroll;
    /* set scroll to fixed for hiding*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

/* #dates {
    height: 100vh;
    background-color: #303e49;
    background-image: url("../img/CooncertPatBack.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
} */

#contact {
    height: 100vh;
    background: #303e49;
    /* background: url("../img/home.jpg") no-repeat center center fixed; */
    background: url("../img/ConcertpatFront.jpg") no-repeat center 1% scroll;
    /* set scroll to fixed for hiding*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 0.5s linear;
    transition: background 0.5s linear;
}


.page {
    min-height: 100vh;
    width: 100vw;
    background-color: #303e49;
    position: relative;
}

.section-title {
    font-family: "Six Caps", sans-serif;
    font-weight: 400;
    font-style: normal;

    margin: 0;
    padding-top: 13vh;
    padding-left: 10vw;

    font-size: clamp(42px, 7vw, 96px);
    line-height: 1;
    letter-spacing: 0.02em;

    color: white;
}



/* CONCERTS */
#dates-content {
    height: 100vh;
    position: relative;
}

.dates-box {
    position: absolute;
    left: 10vw;
    right: 10vw;
    top: 30vh;
    max-height: 55vh;

    overflow-y: auto;

    padding: 30px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);

    color: white;
}

.dates-box {
    position: absolute;
    left: 10vw;
    top: 32vh;

    width: min(460px, 80vw);
    max-height: 50vh;
    overflow-y: auto;

    padding: 22px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);

    color: white;
}

.concert {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.concert-date {
    margin: 0 0 5px;
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.concert h2 {
    margin: 0 0 6px;
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 400;
    line-height: 1.05;
    color: white;
}

.concert-place,
.concert-type {
    margin: 0 0 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.86);
}

.concert a {
    display: inline-block;
    margin-top: 5px;
    color: white;
    font-size: 14px;
    text-decoration: underline;
}



/* bio block */
.bio-page {
    background-color: #111111;
    color: white;
    min-height: 100vh;
}

.bio-inner {
    min-height: 100vh;
    width: min(1180px, 86vw);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.bio-text {
    max-width: 720px;
}

.bio-title {
    padding: 0;
    margin-bottom: 42px;
}

.bio-intro {
    max-width: 680px;
    margin-bottom: 44px;

    font-family: "Titillium Web", sans-serif;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.92);
}

.bio-block {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 32px;

    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.bio-block h2 {
    margin: 0;

    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.62);
}

.bio-block p {
    margin: 0;

    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.bio-image-wrap {
    justify-self: end;
    width: min(340px, 100%);

    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.bio-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bio-block a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.bio-block a:hover {
    opacity: 0.65;
}



/* MEDIA */
/* MEDIA */
.media-box {
    width: min(900px, 82vw);
    margin: 8vh auto 0;

    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    padding: 22px;
}

.media-box iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 16px;
}

#media {
    background: #111111;
}

.media-page {
    background-color: #111111;
}

/* CONTACT */

/* CONTACT */
.contact-page {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../img/expheadshot.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    position: relative;
}

#contact-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-card {
    width: min(620px, 82vw);
    margin-left: 10vw;

    padding: 42px;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
}

.contact-title {
    padding: 0;
    margin-bottom: 28px;
}

.contact-intro {
    margin: 0 0 36px;
    max-width: 520px;

    font-family: "Titillium Web", sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.contact-links {
    display: grid;
    gap: 18px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 18px;

    color: white;
    text-decoration: none;
}

.contact-link i {
    width: 34px;
    font-size: 26px;
    text-align: center;
}

.contact-link span {
    display: grid;
    gap: 3px;
    font-size: 18px;
}

.contact-link small {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.58);
}

.contact-link:hover {
    opacity: 0.68;
}



.legal-line {
    position: absolute;
    right: 28px;
    bottom: 22px;
    z-index: 5;

    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    letter-spacing: 0.03em;
}

.legal-line a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.legal-line a:hover {
    text-decoration: underline;
}


/* Impressum  */
.simple-page-content {
    min-height: 100vh;
    padding: 12vh 10vw;
    color: white;
}

.simple-title {
    padding: 0;
    margin-bottom: 50px;
}

.simple-text {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.6;
}

.simple-text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}



/* RESPONSIVE */


@media only screen and (max-width: 700px) {



    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    header {
        min-height: 100svh;
        height: auto;
    }

    .page {
        width: 100%;
        min-height: 100vh;
        height: auto;
        padding: 55px 0 80px;
        overflow: visible;
    }

    #bio,
    #dates,
    #media,
    #dates-content,
    #media-content {
        height: auto;
        /* min-height: auto; */
        overflow: visible;
    }


    #contact {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        overflow: hidden;
    }



    .bio-inner {
        min-height: auto;
    }

    .dates-box {
        position: static;
        width: 86vw;
        max-height: none;
        overflow: visible;
        margin: 42px auto 0;
    }

    .menu-wrap {
        top: 28px;
        right: 28px;
    }

    header {
        display: block;
        min-height: 100vh;

    }

    .hero-left,
    .hero-right {
        width: 100%;
        flex: none;
    }

    .hero-left {
        height: 42vh;
    }

    .hero-right {
        height: 58vh;
        background-position: center center;
    }

    .section-title {
        padding-top: 0;
        padding-left: 7vw;
    }

    #main {
        top: 12vh;
        left: 7vw;
        width: 86vw;
        padding: 0;
    }

    #my-name {
        font-size: clamp(48px, 16vw, 72px);
        line-height: 0.95;
    }

    .media-box {
        width: 86vw;
        margin: 40px auto 0;
    }

    #contact-content {
        display: block;
        padding: 100px 0 90px;
    }

    .contact-card {
        width: 86vw;
        margin: 0 auto;
    }


    .bio-block h2 {
        font-size: 15px;
    }

    .bio-block p {
        font-size: 14px;
    }

    .bio-inner {
        display: block;
        width: 86vw;
        margin: 0 auto;
        padding: 0;
    }

    .bio-text {
        max-width: none;
        width: 100%;
    }

    .bio-image-wrap {
        display: none;
    }

    .contact-link span {
        font-size: 14px;
    }

}