/* DEFAULT */

html, body {
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    line-height: 1.5;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.headline-font {
    font-family: "Bodoni Moda", serif;
}


/* COMING SOON PAGE */

#coming-soon {
    color: #8e0928;
    background-image: url('../img/koralkova-kabelka-amary-bg.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.wrapper-pink-overlay {
    content: '';
    width: 100vw;
    height: 100vh;
    background: #fce2e5f0;
    background-image: linear-gradient(38deg, #8e092824, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.container-cs {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    background-image: url('../img/tealia-logo.svg');
    background-position: -.2em center;
    background-size: cover;
    max-width: 10em;
    height: 5em;
    text-indent: -9999px;
    margin: 0 auto;
}

.coming-soon-description {
    margin: 1.5em 0;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 100;
}

.contacts {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.contacts li a {
    display: block;
    margin: 0 .5em;
    color: #ffffff;
    font-size: 1.5em;
    line-height: 1.6;
    background: #8e0928;
    padding: 5px;
    width: 2em;
    height: 2em;
    border: 1px solid #8e0928;
    border-radius: 50%;
    transition: all .2s ease-out;
}

.contacts li a:focus,
.contacts li a:hover {
    color: #8e0928;
    background: #fce2e5;
}

footer {
    color: #fff;
    background: #8e0928;
    width: 100%;
    padding: 0.5em;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: -1em;
    font-size: .9em;
    font-weight: 100;
}

footer p {
    opacity: .7;
    padding: .2em;  
}

footer .headline-font {
    margin-left: .4em;
    font-size: .9em;
}

#copyright-year {
    font-family: "Figtree", sans-serif;
    margin-left: .5em;
}