/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}@media (prefers-reduced-motion:no-preference){html{interpolate-size:allow-keywords}}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}p{text-wrap:pretty}h1,h2,h3,h4,h5,h6{text-wrap:balance}#root,#__next{isolation:isolate}


/* Typography */
h1, h2, h3, h4, h5, h6, p {
    font-weight: 400;
    text-wrap: auto;
}

h2 {
    margin-bottom: 60px;
}

a {
    opacity: 1.0;
    transition: all ease-in-out 0.3s;
    color: inherit;
}

a:hover {
    opacity: 0.7;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Layout */
body {
    background-color: #dfdfdf;
    font-family: "Shippori Mincho", serif;
    font-style: normal;
    font-size: 15px;
}

main {
    display: flex;
    flex-direction: column;
}

.inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 30px 10px;
}

/* Header*/
header {
    position: fixed;
    width: 100vw;
    height: 90px;
    padding: 16px 24px;
    mix-blend-mode: difference;
    z-index: 99;
}


.logo {
    height: 100%;
}


/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100dvh;
    background-image: url(https://bedandcraft.com/bnc10y/images/background.jpg);
    background-position: center;
    background-size: cover;
}

.hero__main {
    max-width: 600px;
    width: 80%;
    margin-bottom: 60px;
}

.hero__title {
    height: 14px;
}

.hero__title:first-of-type {
    margin-bottom: 60px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* Intro */
.intro {
    padding: 120px 24px 60px 24px;
}

.intro h3 {
    font-size: 1.4em;
    line-height: 2.0em;
    margin-bottom: 1.0em;
}

.intro p {
    font-size: 1.1em;
    line-height: 1.75em;
    margin-bottom: 1em;
}

/* Gallery */
.gallery--wrapper {
    height: 600px;
    overflow: hidden;
}

.gallery--img {
    height: 100%;
    overflow: hidden;
}

.gallery--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.event-contents {
    padding: 120px 24px 60px 24px;
}

.event-content h3 {
    font-size: 1.4em;
    margin-bottom: 1.0em;
}

.event-content h4 {
    font-size: 1.1em;
    margin-bottom: 1.0em;
}

.event-content {
    margin-bottom: 60px;
}

.event-content--row {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #efefef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.event-content--img {
    width: 100%;
    aspect-ratio: 5/4;
    width: 30%;
    overflow: hidden;
}

.event-content--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content--text {
    padding: 2em;
    width: 70%;
}

.event-content--text p {
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    .event-content--row {
        flex-direction: column;
    }

    .event-content--img {
        width: 100%;
    }

    .event-content--text {
        width: 100%;
    }
}


/* Information */
.event-info--content h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.event-info--content {
    margin-bottom: 60px;
}

.event-info--img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3 / 2;
    margin-bottom: 60px;
}

.event-info--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 120px 0 60px 0;
}

.footer a {
    text-decoration: none;
    font-size: .9em;
}