@charset "utf-8";
/* Diamond Draft Weekend | CSS | V1.0 */

/* ===== SHARED CSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	background: linear-gradient(125deg, #000000, #0d113b, #000000);
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

section {
	scroll-margin-top: 100px;
}

p {
	font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

a {
	font-family: 'Roboto', sans-serif;
    color: #fff;
    text-decoration: none;
	font-weight: 600;
}

a:hover {
	color: #9fb3ff;	
}

/* special link | underlined */
.link-special {
	position: relative;
}

.link-special:hover {
	color: #c19d54;
}

.link-special::after {
	content: '';
	position: absolute;
	left: -2px;
	bottom: -6px;
	width: 110%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #c19d54, transparent);
	border-radius: 999px;
	opacity: 0.7;
}

strong {
	color: #fff;
}

/* HEADERS */
h1, h2, h3, h4 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
	font-weight: 400;
}

/* hero header: extra large */
h1 {
    font-size: 120px;
	letter-spacing: 2.0px;
    line-height: 0.88;
    text-transform: uppercase;
    color: #fff;
}

/* main headers: white */
h2 {
	font-size: 58px;
	color: #fff;
	padding: 10px;
	text-align: center;
}

/* large subheaders: white */
h3 {
	font-size: 42px;
	color: #fff;
	letter-spacing: 1.0px;
}

/* medium subheaders: gold (ex. used on legal pages) */
h4 {
	font-size: 26px;
	color: #c19d54;
    margin-bottom: 10px;
    margin-bottom: 10px;
}

/* small subheaders: white (ex. used for footer titles) */
h5 {
	font-size: 24px;
	color: #fff;
    font-family: 'bc-barell', sans-serif;
    text-transform: uppercase;
	font-weight: 400;
}

.subheader {
    display: inline-block;
    margin-bottom: 20px;
    color: #c19d54;
    font-family: 'bc-barell', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
}

.divider {
    width: 33%;
    height: 2px;
    margin-bottom: 25px;
    background: linear-gradient(
        to right,
        rgba(193,157,84,0) 0%,
        rgba(193,157,84,1) 50%,
        rgba(193,157,84,0) 100%
    );
}

/* BULLET POINT LISTS */
.list {
	margin: 10px 0 20px 20px;
	padding: 0;
}

.list li {
	margin-bottom: 8px;
	line-height: 1.6;
	color: #ddd;
}

/* BUTTONS */
/* primary btn: gold bg + dark blue font */
.btn {
    font-family: 'bc-barell', sans-serif;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1.0px;
    color: #04001d;
    display: inline-block;
    padding: 8px 24px;
    background: #c19d54;
	border: 4px solid transparent;
	border-radius: 2px;
    cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    background: transparent;
    color: #c19d54;
	border: 4px solid #c19d54;
	border-radius: 2px;
}

.btn small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 2px;
	font-weight: 500;
    opacity: 0.7;
}

/* alternate primary btn: white font */
.btn.alt {
	color: #fff;
}

/* secondary btn: white bg + dark blue font */
.btn.secondary {
    background: #fff;
    color: #04001d;
	border: 4px solid transparent;
}

.btn.secondary:hover {
    background: transparent;
    color: #c19d54;
	border: 4px solid #c19d54;
	border-radius: 2px;
}

/* GLOBAL PAGE WRAP | Can be used to build new pages */
.page-wrap {
    background: url('../images/ddw-bg.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.page-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 180px 0 100px;
    width: 100%;
}

.page-content {
    flex: 1; /* keeps footer pushed down */
}

/* MENU/NAV */
.nav-wrap {
   position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
	padding: 20px 0;
	z-index: 1000;
}

.nav-wrap.scrolled {
    position: fixed;
    background: linear-gradient(125deg, #000000, #0d113b, #000000);
	border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left a {
    margin: 10px;
    font-family: 'Impact', sans-serif;
	font-weight: 400;
    text-decoration: none;
	text-transform: uppercase;
    color: #c19d54;
	font-size: 24px;
	position: relative;
}

.nav-left a:hover {
	color: #fff;
}

.nav-left a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.4s ease;
}

.nav-left a:hover::after {
    width: 100%;
}

.nav-center img {
    height: 120px;
	transform: translateX(-50%);
}

.nav-right {
    display: flex;
    align-items: center;
}

.login {
    position: relative;
    margin-left: 15px;
}

.login img {
    width: 30px;
}

.tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    background: #04001d;
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #04001d; /* arrow color */
}

.login:hover .tooltip {
    opacity: 1;
}

/* FOOTER */
.ddw-footer {
	background: linear-gradient(125deg, #000000, #0d113b, #000000);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #cfd6ff;
    font-size: 14px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h5 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #9fb3ff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-logo {
    width: 105px;
    margin-bottom: 15px;
}

.footer-tag {
    max-width: 300px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    font-size: 12px;
    opacity: 0.6;
}

.powered {
    opacity: 0.5;
}

.powered a {
	font-weight: 500;
}