/***** VARS *****/
:root {
  --primary: #000000;
  --secondary: #666666;
  --primaryshade: #2b2b2b;
  --secondaryshade: #AAAAAA;
}

/* ----- FONTS ----- */
@font-face {
    font-family: 'HelveticaThin';
    src: url('../fonts/helveticaneue-thin-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCondensedBold';
    src: url('../fonts/helveticaneue-condensedbold-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensedbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ----- GENERIC STYLING ----- */
html
{
	position: relative;
	min-height: 100%;
	font-size: 12px;
}

@media (min-width: 768px) { html { font-size: 12px; } }
@media (min-width: 992px) { html { font-size: 14px; } }
@media (min-width: 1200px) { html { font-size: 16px; } }

body
{
	line-height: 1.5;
	font-size: 1rem;
	background: white;
    font-family: 'HelveticaThin', sans-serif;
	color: black;
}

h1 
{
	font-family: 'HelveticaCondensedBold', sans-serif;
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 2.75rem;
}

h2, h3, h4
{
	font-family: 'HelveticaCondensedBold', sans-serif;
}

.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--secondary);
	color: var(--primary);
	font-weight: 600;
	padding: 1rem 2rem;
	border: none;
	border-radius: 0;
	transition: background .2s;
	text-decoration: none;
}

.btn-gold:hover { 
	background: var(--secondaryshade); 
	color: var(--primary); 
}

.btn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	border: 2px solid #fff;
	color: #fff;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 0;
	background: transparent;
	transition: background .2s, color .2s;
	text-decoration: none;
}

.btn-outline-white:hover { 
	background: #fff; 
	color: var(--primary); 
}

.block 
{
	display: block;
}

main
{
	padding-top: 100px;
	padding-bottom: 40px;
	font-size: 1.25rem;
}

@media (min-width: 992px) { main { padding-top: 60px; } }

.gap
{
	padding-bottom: 50px
}

.jump
{
	margin-top: 30px
}

#intro
{
	padding-bottom: 50px;
}

/* ----- HEADER ---- */
header {
	background: var(--primary);
    color: white;
	padding: 10px 20px;
}

header .nav-logo {
	max-width: 200px;
}

header .nav-link {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: .5rem 0;
	transition: color .2s;
}

header .nav-link:hover, 
header .nav-link.show,
header .nav-link.active {	
	color: var(--secondary); 
}

header .nav-link:focus { 
	box-shadow: none;
}

header .dropdown-menu {
	background: var(--primaryshade);
	border: none;
	border-radius: 0;
	min-width: 12rem;
	padding: .5rem 0;
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

header .dropdown-item {
	color: #fff;
	font-size: .875rem;
	transition: background .2s, color .2s;
}

header .dropdown-item:hover {
	background: var(--secondary);
	color: var(--primary);
}

.social-icon {
	color: #fff; 
	transition: color .2s; 
	line-height: 0; 
}

.social-icon:hover { 
	color: var(--secondary); 
}

.social-icon svg { 
	width: 1.25rem; 
	height: 1.25rem; 
}

.header-search {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	font-size: .875rem;
	padding: .375rem .75rem;
	border-radius: 20px;
	width: 8rem;
	transition: width .3s, border-color .3s;
	outline: none;
}

.header-search::placeholder { 
	color: rgba(255,255,255,.6); 
}

.header-search:focus {
	width: 10rem;
	border-color: var(--secondary);
	background: rgba(255,255,255,.1);
	box-shadow: none;
	color: #fff;
}

.search-wrap { 
	position: relative; 
}

.search-wrap svg {
	position: absolute;
	right: .5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	color: rgba(255,255,255,.6);
	pointer-events: none;
}

/***** HERO *****/
.hero {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.hero.small {	
    height: 300px;
}

.hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
}

.small .hero-content {
	text-align: center;
}

.hero-eyebrow {
	display: inline-block;
	color: var(--secondary);
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-size: .875rem;
	margin-bottom: 1rem;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.hero p { 
	color: rgba(255,255,255,.9); 
	font-size: 1.125rem; 
	line-height: 1.7; 
	margin-bottom: 2rem; 
}

/* ----- FOOTER ----- */
footer { 
	background: var(--primary); 
	padding: 4rem 0 0; 
}

.footer-logo span { 
	color: #fff; 
	font-size: 1.25rem; 
	font-weight: 700; 
}

.footer-desc { 
	color: rgba(255,255,255,.7); 
	font-size: .875rem; 
	line-height: 1.7; 
}

.footer-heading { 
	color: #fff; 
	font-weight: 700; 
	margin-bottom: 1.5rem; 
}

.footer-links { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
}

.footer-links li { 
	margin-bottom: .75rem; 
}

.footer-links a { 
	color: rgba(255,255,255,.7); 
	text-decoration: none; 
	font-size: .875rem; 
	transition: color .2s; 
}

.footer-links a:hover { 
	color: var(--secondary); 
}

.footer-contact { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: rgba(255,255,255,.7);
	font-size: .875rem;
	margin-bottom: .75rem;
}

.footer-contact svg { 
	width: 1rem; 
	height: 1rem; 
	color: var(--secondary); 
	flex-shrink: 0; 
}

.footer-contact a { 
	color: rgba(255,255,255,.7); 
	text-decoration: none; 
}

.footer-contact a:hover { 
	color: var(--secondary); 
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 2rem 0;
	margin-top: 3rem;
}

.footer-copy { 
	color: rgba(255,255,255,.5); 
	font-size: .875rem; 
	margin: 0; 
}

.footer-social a { 
	color: rgba(255,255,255,.5); 
	transition: color .2s; 
	line-height: 0; 
}

.footer-social a:hover { 
	color: var(--secondary); 
}

.footer-social svg { 
	width: 1.25rem; 
	height: 1.25rem; 
}