/*
Theme Name: Lauren Carina
Author: George Rowley
Description: Custom WordPress theme for personal stylist Lauren Carirna.
Version: 1.0.0
*/

/* Fonts */

@font-face {
    font-family: 'pp_hattonultralight';
    src: url('assets/webfonts/hatton-200-webfont.woff2') format('woff2'),
        url('assets/webfonts/hatton-200-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pp_hattonmedium';
    src: url('assets/webfonts/hatton-500-webfont.woff2') format('woff2'),
        url('assets/webfonts/hatton-500-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pp_hattonbold';
    src: url('assets/webfonts/hatton-700-webfont.woff2') format('woff2'),
        url('assets/webfonts/hatton-700-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General and utility */

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

section {
    padding: 40px 0px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'pp_hattonmedium';
    color: #4c4745;
    line-height: 1.4;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #655b55;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner {
    padding: 0px;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(assets/images/texture.jpg);
    background-repeat: repeat;
}

.page-banner h1 {
    margin-bottom: 0px;
}

.brown-border {
    border-color: #655b55 !important;
}

.texture-bg {
    background-image: url(assets/images/texture.jpg);
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
}

.button {
    border-radius: 0px;
    padding: 10px 20px;
    background-color: #655b55;
    border: 1px solid #655b55;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
}

.button:hover,
.button:active {
    background-color: #514944 !important;
    color: #fff !important;
}

/* Navigation */

.navbar {
    background-color: #f9faf5 !important;
}

.nav-link {
    color: #655b55;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-weight: 500;
}

.nav-link.active {
    color: #514944 !important;
    font-weight: 600;
}

.dropdown-menu {
    border-radius: 0px;
}

.dropdown-item {
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding: 10px 20px;
}

.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #4c4745;
}

/* Home */

.video-banner-container {
    position: relative;
    background-color: #655b55;
    height: 300px;
    width: 100%;
    overflow: hidden;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.video-banner-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-banner-container .container {
    position: relative;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #c1b8a8;
    opacity: 0.75;
    z-index: 1;
}

.video-banner-content {
    background-color: #f9faf5;
    padding: 40px;
}

@media only screen and (min-width: 768px) {
    .video-banner-container {
        height: 600px;
    }
}