/*
COLOR SCHEME
Light grey      #eae7dc
Sand            #d8c3a5
Dark grey       #8e8d8a
Real Dark grey  #5b5954
Light orange    #e98074
Orange          #e85a4f
*/

body {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    background-color: #eae7dc;
    color: #5b5954;
}

a,
a:link,
a:visited {
    color: #e85a4f;
    text-decoration: none;
}

.container {
    padding: 1rem;
}

/*
** TYPOGRAPHY
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

/*
** HEADER
*/
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.main-navigation {
    width: auto;
}

p.site-title a,
h1.site-title a {
    text-transform: uppercase;
    font-size: 3rem;
}


.site-description {
    display: none;
}

.single-header-group{
    margin: 3rem 0;
    display: flex;
    justify-content: space-between;
}

.single-header-group .canvas-box{
    width: 65%;
}

.single-header-group .entry-header{
    width: 30%;
}

/*
** 3D
*/
.canvas-box {
    height: 600px;
}

.canvas-box canvas {
    width: 100% !important;
    height: auto !important;
    border: 1px solid #e85a4f;
    border-radius: 30px;
    background-color: #e8594f21;
}

/*
** NAVIGATION
*/
.site-header .nav-menu li a {
    display: inline-block;
    background-color: black;
    color: white;
    border-radius: 2em;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease-in-out;
}

.site-header .nav-menu li.current-menu-item a,
.site-header .nav-menu li a:hover {
    background-color: #e85a4f;
}



.site-header .nav-menu li {
    margin: 0 0.5rem;
}

/*
** HOME
*/
.home .entry-header {
    display: none;
}

.home-title {
    margin: 0.2em 0;
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.home-title:after {
    content: "o";
    color: #e85a4f;
    font-weight: 900;
}

.home-col {
    display: flex;
    justify-content: space-between;
}

.home-col-right {
    width: 66%;
}

.home-col-left {
    width: 33%;
}

/*
** ARCHIVE
*/
.archive-thumbnail img {
    border-radius: 50%;
    overflow: hidden;
}

.archive-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.archive-grid article {
    width: 30%;
    text-align: center;
    position: relative;
}

.archive-grid .entry-header {
    position: absolute;
    top: 50%;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 1px rgba(82, 71, 51, 0.3);
}

.archive-grid .entry-header h3 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 0;
    border-bottom: 1px solid white;
    display: inline-block;
}

.archive-grid .entry-header h4 {
    margin-top: 0.2em;
}

.archive-grid article img {
    filter: grayscale(1);
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.archive-grid article a {
    color: white;
}

.archive-grid article a:hover .entry-header {
    opacity: 1;
}

.archive-grid article a:hover img {
    filter: grayscale(0);
    transform: scale(1.025);
    box-shadow: 0px 15px 15px rgba(82, 71, 51, 0.3);
}

/*
** SWIPER
*/
.swiper {
    width: 100%;
    height: 300px;
}

.home-col .swiper {
    height: 550px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #e85a4f;
}

.swiper-pagination-bullet-active {
    background-color: #e85a4f;
}


/*
** FOOTER
*/
.site-footer {
    font-size: 0.8rem;
    font-weight: bold;
    color: #8e8d8a;
}