@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900");

body {
    margin: 0;
    height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.nav {
    height: 60px;
    padding: 10px 20px;
    background-color: #a52e3a;
    display: flex;
    align-items: center;
}

.nav__side-name {
    color: white;
}

.nav__categories {
    padding-left: 60px;
    color:white;
    text-transform: uppercase;
}

.category {
    padding: 10px 30px;
    text-align: center;
    transition: .5s all;   
    transition-delay: 0.5s; 
}

.category:hover {
    background-color: white;
    color:#a52e3a;
    transition-delay: 0s
}

.category em {
    rotate: 30deg;
    color: white;
    font-size: 0.9em;
}

.category--soon {
    position: absolute;
    padding-left: 190px;
    margin-bottom: -3px;
}

.flexible-content-block {
    overflow: hidden;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.flexible-content-block--welcome {
    height: calc(100vh - 80px - 3rem - 3rem);
}

.content-block--background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../background.jpg');
    background-size: 30%;
    background-repeat: repeat;
    opacity: 0.1;
}

.content-block--flex {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1170px;
}

.content-block--flex--column {
    flex-direction: column;
}

.content-block--flex--center {
    justify-content: center;
    align-items: center;
}
.content-block__text {
    position: relative;
    max-width: 400px; 
    font-size: 1.8em;
    text-align: center;
    line-height: 0.9;
}

.content-block__button {
    position: relative;
    max-width: 400px; 
    font-size: 1.8em;
    text-align: center;
    padding-top: 20px;
}

.content-block__images {
    justify-content: space-between;
}

.content-block__images--landscape img {
    width: 500px;
    height: auto;
}

.content-block__images--vertical img {
    height: 500px;
    width: auto;
}

.circular--landscape { 
    display: inline-block; 
    position: relative; 
    max-width: 400px; 
    max-height: 400px; 
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
} 

.circular--landscape img { 
    width: auto; 
    max-height: 500px; 
    margin-left: -200px; 
}

.text-block--uppercase {
    text-transform: uppercase;
}

.text-block--black {
    color: black;
    z-index: 1;
}

em {
    font-family: Sacramento,cursive;
    font-style: normal;
    text-transform: lowercase;
    color: #a52e3a;
    display: block;
    font-weight: 400;
    font-size: 1.1em;
    line-height: .6;
    margin-bottom: -0.6em;
    position: relative;
}

.button--red {
    background-color: #a52e3a;
    border: none;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.hidden-div {
    display: none;
}