/* ========== RESET ========== */
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== BASICS ========== */
html {scroll-behavior: smooth;}

body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    text-align: center;
}

/* ========== TEXT ========== */
p {
    font-size: 0.9em;
    padding: 0.7em 0;
}

p.mail {
    font-size: 1.4em;
    text-align: center;
}

.titleh1 {
    color: #fff;
    font-size: 1.8em;
    font-weight: 300;
    text-transform: uppercase;
}

.titleh2 {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 1.8em;
    color: #459d98;
    margin-top: 1em;
}

.linkspacer {
    padding-top: 75px;
}

.titleh2::before, .titleh2::after {
    content:'';
    flex: 1;
    margin-left: 1rem;
    margin-right: 1rem;
    height: 1px;
    background-color: #459d98;
}

.subtitle {
    color: #459d98;
    font-size: 1.2em;
    text-transform: uppercase;
}


.cursive {
    font-size: 2em;
    font-family: "Dancing Script", cursive;
    font-weight: 400;
}

ul.bulletpoints li {
    display:block;
    padding-right:3em;
    text-align:left;
}

.nav__link {
    font-size: 0.85em;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0 15px;
}

.nav__link .grey {
    color:#459d98;
}

.nav__link:hover, .nav__link:active {
    color:#459d98;
}

.dropdown__link .grey {
    color:#459d98;
}

.dropdown__link:hover {
    color: #459d98;
}

.footer__txt {
    font-size: 0.7em;
    font-weight: 300;
    color: #999;
}

.footer__link:hover, .footer__link:active {
    color:#459d98;
}

.button a:link, .button a:visited {
    margin:5px 8px 20px;
    padding:10px 20px;
    border:none;
    border-radius:40px;
    text-align:center;
    text-decoration:none;
    font-family:"Poppins", sans-serif;
    font-weight:300;
    display:inline-block;
    font-size:16px;
    background-color:#7dcabe;
    color:#000;
}

.button a:hover, .button a:active {
    color:#fff;
    cursor:pointer;
    background-color:#459d98;
}

/* ========== LAYOUT ========== */
.header {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 98;
    border-bottom: 1px solid #ececec;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 1080px;
    margin: auto;
    padding: 0 30px;
}

.logo {
    padding-top: 1px;
}

.logo__img {
    height:24px;
}

.nav__list {
    display: flex;
    column-gap: 25px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown:hover .dropdown__list {
    display: block;
}

.dropdown__list {
    background: #fff;
    position: absolute;
    font-size: 0.75em;
    font-weight: 300;
    min-width: max-content;
    text-align: left;
    display: none;
}

.dropdown__item {
    padding: 1em 2em;
    cursor: pointer;
}

.responsive {
    max-width: 100%;
    max-height:calc(100vh - 60px);
    padding-top: 60px;
    object-position: 50% 50%;
    text-align: center;
}

.responsive-mini {
    max-width: 100%;
    max-height:calc(60vh - 60px);
    padding-top: 60px;
    object-position: 50% 50%;
    text-align: center;
}

.joojoos {
    max-width: 100%;
    max-height: 40vh;
    margin: auto;
    padding:1em;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.minibanner-cgv {
    position:relative;
    width:100%;
    height:calc(45vh - 60px);
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), no-repeat url("http://kirstyzw.art/images/minibanner_boo.webp");
    background-position:top 0 center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    vertical-align:middle;
}

.minibanner-legal {
    position:relative;
    width:100%;
    height:calc(45vh - 60px);
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), no-repeat url("http://kirstyzw.art/images/minibanner_capy.webp");
    background-position:top 0 center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    vertical-align:middle;
}

.intro__content {
    display: block;
    position: absolute;
    align-items: center;
    max-width: 1080px;
    margin: auto;
    padding: 0 50px;
}

.main {
    position: relative;
    width:100vw;
}

.textzone {
    max-width: 850px;
    margin: auto;
    padding: 15px 60px;
}


.cgv {
    columns:2;
    column-gap:5em;
    text-align:justify;
    text-align-last:left;
    padding-left:1em;
    padding-right:1em;
}

.cgv > p:first-child {
    margin-top: 0;
}

.cgv > p:last-child {
    margin-bottom: 0;
}

.cgv p {
    margin-bottom:2em;
}

.imagegallery {
    width:80%;
    margin:auto;
}


.cover {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.cover img {
    width:100%;
}

.pages {
    display:flex;
    flex-direction:row;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.page {
    width:100%;
    margin: auto;
}

.page img {
    width:100%;
}

.index {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    vertical-align:middle;
}

.small {
    width:25%;
}

.big {
    width: 75%;
}

.index img {
    width: 100%;
}

.bottom-spacer {
    display:block;
    height:60px;
}

.footimg {
    max-width: 1080px;
    margin: auto;
    padding-top:0;
}

.footimg img {
    width:100%;
}

.footer {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    z-index: 99;
    border-top: 1px solid #ececec;
}

.footer__content {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */ /* copyright + socials/blog */
    justify-content: center; /* copyright only */
    height: 60px;
    max-width: 1080px;
    margin: auto;
    padding: 0 30px;
}

/* ========== LIGHTBOX ========== */
#lightbox {
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:rgba(0,0,0,0.8);
    align-items:center;
    justify-content:center;
    z-index:9999;
    display:none;
}

#lightbox img {
    max-height:100vh;
    max-width:100vw;
}

#lightbox.active {
    display:flex;
}

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width:790px) {
    .header__content {
        flex-direction: column;
        height: 120px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .logo__img {
        height:32px;
    }

    .dropdown__list {
        position: absolute;
        width:100%;
    }
    
    .intro__content {
        padding-top: 120px;
    }

    .imagegallery {
        width:100%;
    }

    .linkspacer {
        padding-top: 135px;
    }

	.cgv {
        columns:1;
    }

    .intro-index {
        height:100vw;
        background-position:top 110px center;
    }

    .responsive {
        max-height:calc(100vh - 120px);
        padding-top: 120px;
    }

    .responsive-mini {
        max-height:calc(60vh - 120px);
        padding-top: 120px;
    }
    
    .joojoos {
        max-height: 30vh;
    }
}

@media screen and (max-width:600px) {
    .nav__link {
        padding: 0 8px;
    }

    .titleh1 {
        font-size: 1.6em;
    }
}

@media screen and (max-width:525px) {
    .nav__link {
        padding: 0 3px;
        font-size: 0.75em;
    }

    .titleh1 {
        font-size: 1.45em;
    }
    
    .titleh2 {
        font-size: 1.45em;
    }
}

@media screen and (max-width:445px) {
    .nav__link {
        padding: 0;
    }

    .titleh1 {
        font-size: 1.3em;
    }
}


@media screen and (max-width:365px) {
    .button a:link, .button a:visited {
        margin:5px 8px 20px;
        padding:10px 20px;
        font-size:12px;
    }
    
    p.mail {
        font-size: 1.2em;
    }    
    
}