@charset "utf-8";
/* Diamond Draft Weekend | CSS | V1.2 */

/* ===== HERO BLOCK ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 175px 40px 80px;
	background:
		linear-gradient(
			rgba(0,0,0,0.15),
			rgba(0,0,0,0.15)
		),
		url('../images/ddw-bg.webp') center/cover no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 5;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-subheader {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    font-family: 'bc-barell', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c19d54;
}

/* divider lines */
.hero-subheader::before,
.hero-subheader::after {
    content: '';
    width: 60px;
    height: 1px;
    background:
        linear-gradient(to right,
        transparent,
        rgba(193,157,84,0.7),
        transparent);
}

.hero-desc {
    max-width: 520px;
    margin-top: 28px;
    font-size: 22px;
}

/* countdown */
.countdown-wrap {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.countdown-box {
    position: relative;
    min-width: 105px;
    padding: 18px 10px 14px;
    text-align: center;
    border: 1px solid rgba(193,157,84,0.22);
	border-radius: 4px;
    background:
        linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* top glow line */
.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:
        linear-gradient(to right,
        transparent,
        rgba(193,157,84,0.9),
        transparent);
}

/* subtle inner glow */
.countdown-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
        rgba(36,108,255,0.12),
        transparent 70%);
    pointer-events: none;
}

.countdown-box .num {
    position: relative;
    display: block;
    font-family: Impact, sans-serif;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.08);
    z-index: 3;
}

.countdown-box .label {
    position: relative;
    display: block;
    margin-top: 8px;
    font-family: 'bc-barell', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c19d54;
    z-index: 3;
}

.hero-actions {
    margin-top: 40px;
}

/* right side */
.hero-img-wrap {
    position: relative;
    flex: 1;
    min-height: 700px;
}

/* rotating hero images */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* upper-right hero panel */
.hero-corner-panel {
    position: absolute;
    top: 40px;
    right: 0;
    width: 375px;
    padding: 28px;
    border: 1px solid rgba(193,157,84,0.22);
	border-radius: 4px;
    background:
        linear-gradient(
        180deg,
        rgba(5,10,35,0.92),
        rgba(5,10,35,0.72));
    backdrop-filter: blur(12px);
    z-index: 5;
}

/* top glow line */
.hero-corner-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:
        linear-gradient(to right,
        transparent,
        rgba(193,157,84,0.9),
        transparent);
}

/* subtle inner glow */
.hero-corner-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
        rgba(36,108,255,0.12),
        transparent 70%);
    pointer-events: none;
}

.corner-top {
    padding-bottom: 18px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: Impact, sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    color: #c19d54;
}

.corner-row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.corner-row span {
    display: block;
    font-family: 'bc-barell', sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.corner-bottom {
    margin-top: 22px;
    text-align: center;
    font-family: 'bc-barell', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c19d54;
}

.hero-img {
    position: absolute;
    width: 960px;
    object-fit: contain;
    z-index: 2;
}

.hero-slide:nth-child(2) .hero-img {
    right: -80px;
    bottom: 75px;
}

.hero-slide:nth-child(3) .hero-img {
    right: -120px;
	top: 60px;
}

.hero-slide:nth-child(4) .hero-img {
    right: -100px;
    bottom: 20px;
}

/* lion watermark */
.hero-img-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 775px;
    height: 775px;
    transform: translateY(-50%);
    background:
        url('../images/lion-watermark.webp')
        center center / contain no-repeat;
    opacity: 0.08;
    z-index: -1;
}

/* hero panel */
.hero-panel-wrap {
    position: relative;
    max-width: 1300px;
    margin: 40px auto 0;
    z-index: 2;
}

.hero-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.panel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'bc-barell', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.panel-item .icon {
    display: flex;
    align-items: center;
    color: #c19d54;
    font-size: 24px;
}

.panel-item .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.panel-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
}

/* ===== UPCOMING EVENTS | Note: Card CSS found in ddw-event-cards.css ===== */
.event-schedule {
	padding: 60px 0 100px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.event-schedule-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== EVENT DETAILS ===== */
.event-details {
	padding: 60px 0 100px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.details-inner {
	max-width: 1300px;
	margin: 0 auto;
}

.details-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

/* LEFT SIDE */
.details-meta {
	margin-bottom: 20px;
}

.event-fee {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.event-fee .price {
	font-size: 46px;
	color: #c19d54;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
	font-weight: 400;
	padding: 10px 18px;
	margin-right: 12px;
	background: transparent;
    border: 4px solid #c19d54;
	border-radius: 2px;
}

.event-fee .label {
	width: 60px;
	font-size: 36px;
	color: #c19d54;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
	font-weight: 400;
	line-height: 0.9;
}

.details-slogan p {
	font-size: 24px;
	font-weight: 500;
}

.details-desc {
	margin-top: 20px;
	max-width: 520px;
	opacity: 0.8;
	line-height: 1.6;
}

.details-buttons {
	margin-top: 30px;
}

.details-buttons .btn {
	margin-right: 12px;
}

.details-right {
	display: flex;
	justify-content: center;
	position: relative;
	transform: translateY(-10px); /* adjust */
}

.diamond {
	position: relative;
	width: 420px;
	height: 320px;
	background: url('../images/diamond-bg.webp') center/contain no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.diamond::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(30,60,255,0.35), transparent 70%);
	filter: blur(20px);
	z-index: 0;
}

.diamond-title {
	position: relative;
	transform: translateY(-60px);
	line-height: 1.0;
	z-index: 1;
}

.timeline {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-47%);
	width: 150%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 120px;
}

/* line */
.timeline::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		to right,
		#1e3cff 0%,
		#3f7cff 50%,
		#6bb7ff 100%
	);
}

/* nodes */
.node {
	position: relative;
	flex: 1;
	text-align: center;
	padding-top: 28px; /* space for dot + label */
	overflow: visible;
}

/* dots */
.node span {
	position: absolute;
	top: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

/* positioning */
.node:nth-child(1) span {
	left: 0;
	background: #1e3cff;
}

.node:nth-child(2) span {
	left: 50%;
	transform: translateX(-50%);
	background: #3f7cff;
}

.node:nth-child(3) span {
	right: 0;
	background: #6bb7ff;
}

/* labels */
.node p {
	position: relative;
	width: max-content; /* allows natural width */
	margin: 12px auto 0;
	font-size: 22px;
	color: #fff;
	font-family: 'bc-barell', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 0.8;
	z-index: 2;
}

/* ===== WHAT YOU GET ===== */
.ddw-value {
    padding: 60px 0 100px;
    text-align: center;
	border-top: 1px solid rgba(255,255,255,0.08);
	background: url('../images/ddw-swoosh.png') top/cover no-repeat;
}

.value-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.value-title {
    margin-bottom: 10px;
}

.value-sub {
    opacity: 0.7;
    margin-bottom: 60px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 14px;
}

.title-divider span {
    flex: 1;
    max-width: 140px;
    height: 2px;
}

.title-divider span:first-child {
    background: linear-gradient(
        to left,
        #c19d54 0%,
        rgba(193,157,84,0.6) 40%,
        rgba(193,157,84,0.0) 100%
    );
}

.title-divider span:last-child {
    background: linear-gradient(
        to right,
        #c19d54 0%,
        rgba(193,157,84,0.6) 40%,
        rgba(193,157,84,0.0) 100%
    );
}

.title-divider img {
    width: 18px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
	position: relative;
    padding: 30px 28px 32px;
    border-radius: 6px;
    /* background: rgba(255,255,255,0.02); */
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(125deg, #04001d, #0d113b, #04001d);
}

/* subtle glow */
.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
	background: radial-gradient(
    circle at 10% 10%,
    rgba(193,157,84,0.12),
    transparent 65%
	);
	mix-blend-mode: screen;
    opacity: 0;
    transition: 0.3s;
}

.value-card:hover::after {
    opacity: 1;
}

/* color variants */
.value-card.gold {
    border: 2px solid #c19d54;
}

.value-card.blue {
    border: 2px solid #3f7cff;
}

.diamond-num {
    position: absolute;
	padding: 18px;
    width: 46px;
    height: 46px;
	font-family: 'bc-barell', sans-serif;
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-num::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: rotate(45deg);
	border: 2px solid #c19d54;
}

.value-card.blue .diamond-num::after {
    border-color: #3f7cff;
}

.diamond-num span {
    transform: rotate(-45deg);
    font-family: Impact, sans-serif;
    font-size: 16px;
    color: #c19d54;
}

.value-card.blue .diamond-num span {
    color: #3f7cff;
}

.value-card h3 {
    margin-top: 80px;
	line-height: 1.0;
}

.value-tag {
    font-size: 16px;
    color: #c19d54;
	margin-top: 18px;
	margin-bottom: 18px;
    font-family: 'bc-barell', sans-serif;
}

.value-card.blue .value-tag {
    color: #6bb7ff;
}

.card-img {
    width: 100%;
    margin: 20px 0 18px;
    border-radius: 4px;
    display: block;
}

.value-strip {
    margin-top: 70px;
    padding: 20px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.strip-logo {
    width: 85px;
}

.strip-item.logo {
    flex: 0 0 auto;
    padding-right: 5px;
}

.strip-item {
    flex: 1;
    text-align: center;
    position: relative;
    font-family: Impact, sans-serif;
    font-size: 20px;
    color: #c19d54;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-item:last-child {
    flex: 0 0 auto;
}

.strip-item:not(.logo):not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

/* WHAT YOU GET: RESPONSIVE */
@media (max-width: 1100px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        text-align: left;
    }

    .value-strip {
        justify-content: center;
        text-align: center;
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 40px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.about-box {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 0;
    position: relative;
    overflow: visible;
}

/* gradient border | allows border to fade from transparent to gold */
.about-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px; /* border thickness */
    background: linear-gradient(
        to right,
        rgba(193,157,84,0) 0%,
        rgba(193,157,84,0.2) 40%,
        rgba(193,157,84,0.8) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-left {
    flex: 1;
    position: relative;
}

.about-left img {
	position: relative;
    max-width: 700px;
    left: -120px;
}

.about-right {
    flex: 1;
    max-width: 750px;
	margin-left: -185px;
}

/* info bar */
.about-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item img {
    width: 20px;
	margin-right: 5px;
}

.about-right h2 {
	text-align: left;
}

/* mission box */
.mission-box {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(193,157,84,0.4);
    background: rgba(193,157,84,0.05);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mission-icon img {
    width: 40px;
}

.mission-text span {
    color: #c19d54;
    font-weight: bold;
}

.about-catchphrase {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: bold;
}

.about-catchphrase span {
    color: #c19d54;
}

/* ===== SPONSORS ===== */
.sponsors {
    padding: 120px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
	background: url('../images/stadium-bg.webp') top/cover no-repeat;
}

.sponsors-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.sponsors-title {
    text-align: center;
    margin-bottom: 30px;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
    margin-bottom: 50px;
}

.s-logo {
    position: relative;
    padding: 0 50px;
    display: flex;
    align-items: center;
}

.s-logo img {
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.s-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* divider */
.s-logo:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 75px;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.sponsors-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon img {
    width: 95px;
}

.cta-text h4 {
    font-size: 26px;
    margin-bottom: 8px;
}

.cta-text p {
    opacity: 0.7;
    max-width: 500px;
}

.cta-right {
    flex-shrink: 0;
}