:root{
    --nav-padding: 1em;
    --dark-bg-color: #333;
    --nav-light-bg-color: #f7f7f7;
    /* --accent-color: rgb(255, 130, 46); */
    --accent-color: purple;
    --border: 5px;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* font-family: 'Open Sans', sans-serif !important; */
    font-size: 20px;
    scroll-behavior: smooth;
}
.debug *:not(:empty){
    border: 4px solid var(--debug);
}
.debug.label *[class]:after{
    position: relative;
    top: -1em;
    left: -25%;
    content: attr(class);
    color: #e2e2e2;
    background: #000;
    padding: 0 1em;
    margin: 0 1em;

}
*:nth-child(odd){
    --debug: red;
}
*:nth-child(even){
    --debug: blue;
}
nav{
    z-index: 1;
    padding: 0 calc(var(--nav-padding) * 2);
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* top: 0;
    left: 0; */
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    background: white;
    /* backdrop-filter: blur(15px);
    background: rgba(255,255,255, 0.6); */
}
nav div{
    padding: .5em;
}
nav a{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    margin: 0 calc(var(--nav-padding) / 2) ;
    color: unset;
}
.logo{
    width: 80px;
    position: relative;
    aspect-ratio: 1/1;
}
.logo img{
    object-fit: cover;
    max-height: 100%;
}

h1{
    font-size: 2em;
}
:is(h1, h2,h3,h4,h5){
    font-family: Montserrat !important;
    font-weight: 700;
}
.dark{
    --bg-color: #000;
    --contrast-color: #fff;
    background: var(--bg-color);
    color: #fff;
}
.light{
    --bg-color: #fff;
    --contrast-color: #000;
    background: linear-gradient(255,255,255, .5), url("../img/greek-vase.png");
}
.neutral{
    --bg-color: #e2e2e2;
    --contrast-color: #000;
    background: url("../img/triangle-mosaic.png");
    background-blend-mode: darken;
}
.home-hero{
    position: relative;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("../img/home-hero-2.jpg");
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.home-hero h1{
    font-size: 1.5em;
}
.home-hero small{
    font-size: 1em;
    /* color: var(--accent-color); */
}
.home-hero > .nav{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 calc(var(--nav-padding) * 2);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.hero{
    background: url("../img/AdobeStock_221661605_Preview.jpg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background-attachment: fixed;
    height: 90vh;
    /* width: 100%; */
    display: flex;
}
.hero .headline{
    width: 50%;
    max-height: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.button-solid{
    padding: .6em 1em;
    background-color: rgba(255,255,255,.9);
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;

}
.headline{
    max-width: 80%;
    /* line-height: 1.5; */
}
.headline .container{
    display: block;
}
.headline .container *{
    margin: 1em 0;
}
:is(a.button, button.button){
    text-decoration: none;
    color: unset;
    display: inline-block;
    padding: 1em;
    border: var(--border) solid var(--contrast-color);
    font-family: 'Montserrat';
    font-weight: bold;
    cursor: pointer;
    transition: background .2s linear, color .3s linear;
    background: var(--bg-color);
}
a.button:hover{
    background: var(--contrast-color);
    color: var(--bg-color);
}
section:not([class]){
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    /* background: yellow; */
}
.image-row > .col{
    overflow: hidden;
}
.image-row img{
    object-fit: contain;
    width: 100%;
    margin: 2em 0;
    transition: all linear .2s;
}
iframe{
    aspect-ratio: 16/9;
    border: var(--border) solid var(--accent-color);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.49);
}
.testimonies{
    position: relative;
    background: url("../img/blurred-dance-floor.jpg");
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    min-height: 70vh;
    color: #fff;
}
.text-accent{
    color: var(--accent-color);
}
.card-transparent{
    background-color: transparent;
    border: none;
    text-align: justify;
}
.contact{
    background: url("../img/email-pattern.png"), #d2d2d2;
}
footer{
    padding: 2em;
    background: #000;
    color: rgb(109, 109, 109);
}
footer *{
    font-size: 14px;
    font-weight: bold;
}
footer > div{
    margin: 1em 0;
}
footer a{
    text-decoration: none;
    color: inherit;
}
.social-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer ul{
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    display: inline;
}
footer li {
    float: left;
    margin: 0 .5em;
}
@media (max-width: 991.98px) { 
    nav{
        position: initial;
        justify-content: center;
    }
    .logo{
        width: 75px;
    }
    .logo img{
        object-fit: contain;
        width: 100%;
    }
    .hero{
        height: unset;
        min-height: 90vh;
    }
    .home-hero{
        justify-content: space-around;
        align-items: center;
    }
    .home-hero > .nav{
        position: unset;
        padding: 0;
        /* padding: 0 calc(var(--nav-padding) * 2); */
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: transparent;
    }
    .hero .headline{
        width: 100%;
        max-height: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    :is(.light, .dark){
        background: var(--bg-color);
    }
    .headline{
        max-width: 100%;
        /* line-height: 1.5; */
    }
    .card-transparent{
        text-align: unset;
    }
    .card-transparent h5{
        font-size: 18px
    }
}