/**
* Global Stylesheet
* Base styles, typography, buttons, and utility classes
*/

:root {
	/* ========================================
	COLORS
	======================================== */
	--color-primary: var(--color-blue);
	--color-secondary: var(--color-gold);

	--color-blue: #030929;
	--color-gold: #d1a52c;
	--color-text:#020928;
	--color-white: #FFFFFF;
	--color-black: #000000;
	/* ========================================
	TYPOGRAPHY
	======================================== */
	--font-gothic: "CopperplateGothic", serif;
	--font-avenir: "AvenirNext", sans-serif;
	--font-avenir-std: "AvenirLTStd", sans-serif;

	/* Transitions */
	--transition-fast: 0.15s ease-in-out;
	--transition-base: 0.2s ease-in-out;
	--transition-slow: 0.3s ease-in-out;
}

@font-face {
	font-family: "CopperplateGothic";
	src: url("../fonts/Copperplate-Gothic-Std-29-AB.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "AvenirNext";
	src: url("../fonts/avenirltprobook-webfont.woff2") format("woff2"),
		 url("../fonts/avenirltprobook-webfont.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "AvenirNext";
	src: url("../fonts/avenirltproheavy-webfont.woff2") format("woff2"),
		 url("../fonts/avenirltproheavy-webfont.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "AvenirLTStd";
	src: url("../fonts/avenir_lt_std_45_book-webfont.woff2") format("woff2"),
		 url("../fonts/avenir_lt_std_45_book-webfont.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "AvenirLTStd";
	src: url("../fonts/avenir_lt_std_65_medium-webfont.woff2") format("woff2"),
		 url("../fonts/avenir_lt_std_65_medium-webfont.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* ========================================
BASE STYLES
======================================== */
html {
	overflow-x: hidden;
}
body {
	background-color: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-avenir);
	font-size: 25px;
	line-height: 35px;
	font-weight:normal;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	padding: 0;

	@media screen and (max-width: 1499px) {
		font-size: 22px;
		line-height: 32px;
	}
	@media screen and (max-width: 1199px) {
		font-size: 20px;
	}
	@media screen and (max-width: 992px) {
		font-size: 18px;
		line-height: 28px;
	}
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
	color: var(--color-white);
}
h1, .h1 {
	font-family: var(--font-gothic);
	font-size: 60px;
	line-height: 75px;
	font-weight: 300;

	@media screen and (max-width: 1199px) {
		font-size: 50px;
		line-height: 60px;
	}
	@media screen and (max-width: 992px) {
		font-size: 45px;
		line-height: 50px;
	}
}
h2, .h2 {
	font-family: var(--font-gothic);
	font-size: 45px;
	line-height: 50px;
	font-weight: 300;

	@media screen and (max-width: 1199px) {
		font-size: 40px;
	}
	@media screen and (max-width: 992px) {
		font-size: 35px;
	}
}
h3, .h3 {
	font-size: 30px;
	line-height: 40px;
	font-family: var(--font-avenir);
	font-weight: 700;

	@media screen and (max-width: 1499px) {
		font-size: 28px;
		line-height: 35px;
	}
	@media screen and (max-width: 1199px) {
		font-size: 25px;
		line-height: 32px;
	}
}
.section-postheading {
	font-size: 26px;
	padding-top: 6px;

	@media screen and (max-width: 1499px) {
		font-size: 24px;
		padding-top: 0px;
	}
	@media screen and (max-width: 1199px) {
		font-size: 22px;
	}
	@media screen and (max-width: 992px) {
		font-size: 18px;
	}
}

a {
	color: var(--color-secondary);
	text-decoration: none;
	transition: var(--transition-base);

	&:hover, &:focus-visible {
		color: var(--color-white);
		text-decoration: none;
	}
}

/* Paragraphs */
p {
	margin-top: 0;
}
p:last-child { 
	margin-bottom:0;
}

ul, ol {
	margin:0;
	padding:0;
}

.font-avenir {
	font-family: var(--font-avenir);
}
.font-normal {
	font-weight: normal;
}
.text-center {
	text-align: center;
}
.text-uppercase {
	text-transform: uppercase;
}

/* ========================================
LAYOUT COMPONENTS
======================================== */
.container {
	max-width: 1344px;
	margin: 0 auto;
	padding: 0 15px;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin:0 -15px;

	> * {
		padding:0 15px;
	}
	.col-6 {
		width:50%;
		box-sizing: border-box;
		@media screen and (max-width: 992px) {
			width:100%;
		}
	}
	.col-4 {
		width:33.33%;
		box-sizing: border-box;
		@media screen and (max-width: 992px) {
			width:100%;
		}
	}
}

section, .section {
	padding-top: 100px;
	padding-bottom: 100px;

	@media screen and (max-width: 1499px) {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	@media screen and (max-width: 1199px) {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	@media screen and (max-width: 992px) {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/* ========================================
UTILITY CLASSES
======================================== */
.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-block { display: inline-block; }

/* Flexbox utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }

/* Image utilities */
img { max-width:100%;height: auto;}
.img-cover {width: 100%;height: 100%;object-fit: cover;}
.img-contain {width: 100%;height: 100%;object-fit: contain;}
.img-fluid {max-width: 100%;height: auto;}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-italic { font-style: italic; }

/* Color utilities */
.text-blue { color: var(--color-blue); }
.text-gold { color: var(--color-gold); }
.text-body { color: var(--color-text); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }

.bg-blue { background-color: var(--color-blue); }
.bg-gold { background-color: var(--color-gold); }
.bg-body { background-color: var(--color-text); }
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }

.dark-blue-bg { background-color: #000519;}

/* Position utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* height utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }

/* Margin and padding utilities */
.mt-10 { margin-top: 10px;}
.mt-20 { margin-top: 20px;}
.mb-10 { margin-bottom: 10px;}
.mb-20 { margin-bottom: 20px;}

.my-10 {margin-block: 10px;}
.my-20 {margin-block: 20px;}
.my-25 {margin-block: 25px;}
.my-30 {margin-block: 30px;}
.my-40 {margin-block: 40px;}

.pt-10 { padding-top: 10px;}
.pt-20 { padding-top: 20px;}
.pb-10 { padding-bottom: 10px;}
.pb-20 { padding-bottom: 20px;}

.py-10 {padding-block: 10px;}
.py-20 {padding-block: 20px;}
.py-25 {padding-block: 25px;}
.py-30 {padding-block: 30px;}
.py-40 {padding-block: 40px;}


/* Buttons */
.btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	z-index: 1;
	font-size: 30px;
	line-height: normal;
/* 	font-weight: bold; */
	font-family: var(--font-avenir);
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 37px;
	text-align:center;

	@media screen and (max-width: 1499px) {
		font-size: 25px;
		padding: 10px 30px;
	}
	@media screen and (max-width: 992px) {
		font-size: 22px;
	}
	@media screen and (max-width: 768px) {
		font-size: 18px;
	}
}
.btn:hover {
	color:var(--color-primary);
}
.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--color-white);
	z-index: -1;
	transition: width 0.4s ease;
}
.btn:hover::before {
	width: 100%;
}
/* btn-primary */
.btn-primary {
	background-color: var(--color-gold);
	color: #030929;
}
/* btn-secondary */
.btn-secondary {
	border: 1px solid var(--color-white);
	box-shadow: inset 2px 3.464px 10.5px rgba(34,31,31,0.75);
	font-size: 25px;
	line-height: 35px;
	color: #e9c86f;
	padding: 11px 15px;

	@media screen and (max-width: 1499px) {
		font-size: 20px;
		line-height: 30px;
	}
	@media screen and (max-width: 992px) {
		font-size: 18px;
		line-height: 25px;
	} 
	@media screen and (max-width: 768px) {
		font-size: 16px;
		line-height: 20px;
	}
}
.btn-secondarygold {
    background-color: #fbd97a !important;
    text-transform: uppercase;
    color: #030929;
}
/* btn-whiteoutline */
.btn-whiteoutline {
	border: 2px solid #fbd97a;
	font-size: 21px;
	letter-spacing: 3px;
	line-height: 31px;
	color: var(--color-white);
	padding: 10px 54px;

	@media screen and (max-width: 1499px) {
		font-size: 18px;
		letter-spacing: 2px;
		line-height: 25px;
		padding: 10px 40px;
	}
	@media screen and (max-width: 1499px) {
		font-size: 16px;
		letter-spacing: 1.5px;
		line-height: 20px;
		padding: 10px 30px;
	}
}
.btn-whiteoutline:hover {
	border: 2px solid var(--color-white);
}
/* btn-smallgold */ 
.btn-smallgold {
	background-color: #e9c86f;
	font-size: 16px;
	letter-spacing: 4px;
	line-height: 24px;
	padding: 6px 40px;
	color: var(--color-text);

	@media screen and (max-width: 1499px) { 
		font-size: 15px;
		letter-spacing: 3px;
		line-height: 22px;
		padding: 6px 30px;
	}
}
/* btn-dark */
.btn-dark {
	padding: 3px 20px;
	font-size: 18px;
	line-height: 25px;
	color: #fbd97a;
	background-color: #030929;
	white-space: nowrap;
}
.btn-dark:hover {
	color:var(--color-primary);
}
.btn-dark::before {
	background-color: #fbd97a;
}

.divider-image-wrap {
	height: 11px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}