/*!
Theme Name: shelby
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shelby
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --special:"Ephesis", cursive;
    --color:#f45f0b;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: "Inter", sans-serif;
    background-color: #000;
    color:#FFF;
}

h1, h2, h3, h4{
    font-family: "Oswald", sans-serif;
}

h1{
    font-size: 5rem;
    line-height: 1.25;
    text-transform: uppercase;
}

h2{
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.25;
}

h3{
    text-transform: uppercase;
    font-size: 1.75rem;
}

p{
    font-weight: 300;
    line-height: 1.75;
    margin:30px 0;
}

.boxed{
    max-width: 1280px;
    margin-inline: auto;
}

.section{
    padding:150px 0;
}

.mAuto{
    margin-inline: auto;
}

.toggle-button {
  border: 1px solid;
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

.toggle-button.active{
    background: var(--color);
    border-color:var(--color);
}

.cover-single{
    display: block;
    width:100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.cover-single img{
    width:100%;
    object-fit: cover;
    height:100%;
    transition: .3s ease;
}

.post-blog{
    margin-bottom:40px;
}

.post-blog:last-child{
    margin-bottom: 0 !important;
}

.post-blog:hover img{
    transform: scale(1.1);
}

.post-blog h2{
    line-height:1.15 !important;
}

.post-blog h2 a{
    text-decoration: none;
    color:#FFF;
    font-size: 2.5rem;
}

.post-blog:hover h2 a{
    text-decoration: underline;
}

.post-blog .readmore{
    color:#FFF;
    background:var(--color);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    padding: 10px 15px;
}

.post-thumbnail .attachment-post-thumbnail{
    width:100%;
}

.blog-boxed{
  max-width: 1100px;
  margin-top: -80px !important;
  z-index: 2;
  position: relative;
}

.blog-boxed a{
    color:var(--color);
    font-weight: 600;
}



.blog-boxed img.aligncenter{
    margin-inline: auto;
    display: block;
}

.blog-boxed p strong{
    font-weight:600;
}

.slider{
    width: 100%;
    height: 100vh;
    position: relative;
}

.meow-lightbox{
    aspect-ratio: 1/1;
    display: block;
}

.meow-lightbox.w48{
    width: 48.39%;
    aspect-ratio: 1/1;
    display: block;
}

.meow-lightbox img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.slider-content{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:fit-content;
    text-align: center;
}

.head{
    width: 100%;
    height: 75vh;
    position: relative;
}

.head-content{
    position: absolute;
    top:55%;
    left:50%;
    transform: translate(-50%, -50%);
    width:fit-content;
    text-align: center;
}

.head-content h1{
	font-size: 3.5rem !important;
}

.contact-icon{
	color:#FFF;
	background-color: var(--color);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
}

.tag{
    color: var(--color);
    font-size: 3.5rem;
    font-family: var(--special);
    font-weight: 600;
}

.slider > video{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    filter:grayscale(75%)
}

.head > img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
    filter:grayscale(100%)
}

.media-barman{
    width: 100%;
    aspect-ratio: 4/3.5;
    object-fit: cover;
}

.item-box{
    aspect-ratio: 1/.75;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    position: relative;
}

.item-box > span{
    color:var(--color);
    font-size: 3rem;
    display: block;
    margin-bottom: 30px;
}

.item-box > *:not(img){
	z-index: 2;
}

.item-box > img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
    filter:grayscale(30%);
	z-index:1;
	transition:.2s ease;
}

.item-box:hover img{
	opacity: .4;
}

.list-check{
    list-style: none;
    background-color: rgba(255,255,255,.05);
    padding: 30px;
    width: fit-content;
    margin-inline: auto;
}

.list-check li{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin:15px 0;
    font-weight: 300;
}

.list-check li > span:first-child{
    font-size: 1.5rem !important;
    color:var(--color);
}

.btn{
    text-decoration: none;
    display: inline-block;
    padding: 15px 20px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    border:2px solid var(--color);
    color:var(--color);
    background-color: transparent;
    /* letter-spacing: .1px; */
    transition: .2s ease;
}

.btn:hover{
    background-color: var(--color);
    color:#FFF;
}

.galery-50{
    width: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.galery-25{
    width: 48%;
    height: 48.5%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

footer{
    margin:100px 0 80px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 80px;
}

.logo-footer{
    width: 125px;
}

.subline{
    display: block;
    font-weight: 500;
    font-size: .9rem;
    margin:20px 0;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

.subline span{
    color:var(--color);
}

.icon-rs{
    display: block;
}

.icon-rs img{
    width: 25px;
    filter:invert(1);
}

.copy{
    font-size: .8rem;
    opacity: .5;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.copy a{
    color:#FFF;
}

header{
	position: fixed;
	top:0;
	width: 100%;
	z-index: 999;
	padding:10px 0px;
	background-color: rgba(255,255,255,.05);
	border-bottom: 1px solid rgba(0,0,0,.07);
	backdrop-filter: blur(5px);
}

.header-logo{
	display: block;
}

.header-logo img{
	width: 70px;
	border-radius: 10px;
}

header ul{
	list-style: none;
	display: flex;
	align-items: center;
	gap:5px;
}

header ul li a{
	text-decoration: none;
	color:#FFF;
	font-size: 1.1rem;
	font-weight: 500;
	padding:10px 20px;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: .9rem;
	transition: .2s ease;
}

header ul li a:hover{
	color:var(--color);
}

.btn-cta{
	background-color: var(--color);
	color:#FFF !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap:10px;
	padding: 14px 20px !important;
	font-weight: 500;
	line-height: 1em;
	font-size: .9rem !important;
	text-transform: uppercase;
	margin-left: 10px !important;
}

.btn-cta span{
	font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.quote{
	color: var(--color);
	font-weight: 400;
	font-size: 1.25rem;
	text-wrap: balance;
	font-style:italic;
}

.adv{
	list-style: none;
}

.adv li{
	display: flex;
	align-items: flex-start;
	gap:15px;
	font-weight: 300;
	margin-bottom: 15px;
}

.adv li > span:first-child{
	color:var(--color);
	width: 40px;
	height: 40px;
	background-color: #f45f0b0f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.25rem !important;
}

.adv li > span:last-child{
	width: calc(100% - 40px);
	line-height: 1.5;
	display: block;
}

.full-media{
	width: 100%;
	aspect-ratio: 16/11;
	height: 100%;
	object-fit: cover;
}

.withBorder{
	margin-top:100px;
	padding-top: 80px !important;
	border-top:1px solid rgba(255,255,255,.1);
}

.contact-form{
	max-width: 1000px;
	margin-inline: auto;
}

.contact-form label{
	display: block;
	font-size: 1em;
	font-weight: 500;
}

.contact-form input{
	width: 100%;
	height: 50px;
	text-indent: 15px;
	margin-top: 10px;
	font-size: 1.15rem;
	background-color: rgba(255,255,255,.05);
	border:0px;
}

.contact-form input:focus{
	outline: none;
}

.contact-form textarea{
	width: 100%;
	height: 200px;
	background-color: rgba(255,255,255,.05);
	margin-top:10px;
	border:0px;
	color:#FFF;
	padding:20px;
	font-family: inherit;
}

.contact-form textarea:focus{
	outline:none;
}

@media(max-width:810px){
    .slider > video{
        opacity:.2 !important;
    }
    
	.main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

	.main-nav{
		background-color: #000000d6;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		top: 90px;
	}

	.hamburger span{
		background-color: #FFF;
	}

    .main-nav.active {
        height: auto;
        padding: 20px 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

	.boxed{
		max-width: 90%;
	}

	.slider h1{
		font-size: 2rem !important;
	}

	.slider{
		height: 60vh;
	}

	.slider-content{
		width: 90%;
	}

	.head-content h1{
		font-size: 2.2rem !important;
	}

	.tag{
		font-size: 1.75rem !important;
	}

	h2{
		font-size: 2rem !important;
	}

	h3{
		font-size: 1.35rem !important;
	}

	.head{
		height: 50vh !important;
	}

	.head-content{
		width: 90%;
		top:55%;
	}

	.toColumnReverse{
		flex-direction: column-reverse;
	}

	.section{
		padding-block:50px !important;
	}

	.adv li, .list-check li{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		line-height: 1.5;
	}

	.copy{
		max-width: 90%;
		margin-inline: auto;
	}
	
	.slider video{
	    opacity: .2 !important;
	}
	
	.post-blog h2 a{
	    font-size:2rem;
	}
	
	.blog-boxed{
	    margin-top:-40px !important;
	}
	
	.meow-lightbox.w48{
	    width:47% !important;
	}
}