/* =========================================================
   COLOR PALETTE
   THE ONLY FOUR COLORS USED ANYWHERE ON THE PAGE.
   THE RGB TRIPLETS EXIST SO THE SAME COLORS CAN BE USED
   AT REDUCED OPACITY FOR OVERLAYS, BORDERS & SHADOWS.
========================================================= */

:root {
    --color-burgundy: #4A0E1B;
    --color-gold: #C9A227;
    --color-black: #000000;
    --color-white: #FFFFFF;

    --rgb-burgundy: 74, 14, 27;
    --rgb-black: 0, 0, 0;
    --rgb-white: 255, 255, 255;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =========================================================
   VIEWPORT LAYOUT
   DESKTOP HEADER + HERO FIT INSIDE ONE SCREEN
========================================================= */

.site-viewport-wrapper {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* =========================================================
   HEADER (OVERLAY ON HERO)
========================================================= */

.site-viewport-wrapper .site-header {
    position: absolute!important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg,
            rgba(var(--rgb-black), 0.75) 0%,
            rgba(var(--rgb-black), 0.35) 60%,
            transparent 100%)!important;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--rgb-black), 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(var(--rgb-black), 0.6);
    border-bottom: 1px solid rgba(var(--rgb-white), 0.15);
}

.navbar {
    min-height: 88px;
    padding-top: 15px;
    padding-bottom: 15px;
}


/* =========================================================
   BRAND
========================================================= */

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 20px;
    padding: 0;
}

.brand-logo {
    width: 130px;
    height: 130px;
    flex: 0 0 130px;
}

.brand-logo a {
    background-color: var(--color-white);
    border-radius: 50%;
    display: inline-block;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-content {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.brand-content a {
    display: inline-block;
}

.brand-name {
    color: var(--color-white);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.brand-subtitle {
    margin-top: 6px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-tagline {
    margin-top: 7px;
    color: var(--color-white);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0px 10px 7px 10px !important;
    color: var(--color-white) !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::before {
    position: absolute;
    content: "";
    left: 12px;
    bottom: 4px;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-white);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: calc(100% - 24px);
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu {
    min-width: 250px;
    padding: 8px;
    margin-top: 12px;
    border: 1px solid rgba(var(--rgb-white), 0.15);
    border-radius: 0;
    background-color: rgba(var(--rgb-black), 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(var(--rgb-black), 0.6);
}

.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-item {
    padding: 12px 15px;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: normal;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--color-white);
    background-color: var(--color-burgundy);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.custom-toggler {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(var(--rgb-white), 0.35);
    border-radius: 0;
    box-shadow: none !important;
}

.toggler-line {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-white);
    transition: 0.25s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO MAIN
========================================================= */

.hero-main {
    flex: 1;
    min-height: 0;
}

.hero-section {
    position: relative;
    height: 100%;
    background-color: var(--color-black);
}


/* =========================================================
   HERO BANNER (SPLIT LAYOUT)
========================================================= */

.hero-banner {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background-color: var(--color-black);
}


/* =========================================================
   HERO IMAGE (RIGHT SIDE)
========================================================= */

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 47%;
    z-index: 1;
    background-image: url("../images/slider-image-4.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}


/* =========================================================
   OVERLAYS & EDGE BLEND
========================================================= */

.hero-fade {
    position: absolute; top: 0; bottom: 0; left: 0; width: 70%; z-index: 2; pointer-events: none; background: linear-gradient(90deg, var(--color-black) 0%, var(--color-black) 76%, rgba(var(--rgb-black), 0) 100%);
}

.hero-dark-overlay {
    position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(var(--rgb-black), 0.55) 0%, rgba(var(--rgb-black), 0) 34%, rgba(var(--rgb-black), 0) 81%, rgba(var(--rgb-black), 0.85) 100%);
}


/* =========================================================
   HERO CONTENT AREA
========================================================= */

.hero-content-area {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: clamp(150px, 19vh, 195px);
    padding-bottom: clamp(40px, 6vh, 70px);
}

.hero-content-area>.container {
    width: 100%;
}

.hero-content {
    max-width: 820px;
}


/* =========================================================
   HERO TYPOGRAPHY (2-LINE CONDENSED ITALIC)
========================================================= */

.hero-content h1 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-stretch: 80%;
    font-size: clamp(54px, 5.6vw, 95px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}


/* =========================================================
   HERO HEADING SPLIT-TEXT REVEAL
   EVERY LETTER FLIPS UP FROM ITS BASELINE IN SEQUENCE
   DELAYS ARE SET PER LETTER BY THE SPLITTER SCRIPT
========================================================= */

@keyframes heroCharIn {

    from {
        opacity: 0;
        transform:
            perspective(900px)
            rotateX(-78deg)
            translate3d(0, 0.32em, 0);
    }

    to {
        opacity: 1;
        transform:
            perspective(900px)
            rotateX(0deg)
            translate3d(0, 0, 0);
    }

}

.hero-char {
    display: inline-block;
    white-space: pre;
    transform-origin: 50% 100%;
    backface-visibility: hidden;
    will-change: transform, opacity;
    animation: heroCharIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* LETTERS MUST KEEP THE GOLD / MAROON OF THEIR PARENT WORD */
.hero-title-line .hero-char {
    color: inherit;
    font-weight: inherit;
}


/* =========================================================
   SECOND LINE CONVERGES
   "CRUSHER" ENTERS FROM THE LEFT, "PROUD." FROM THE RIGHT
========================================================= */

@keyframes heroCharInLeft {

    from {
        opacity: 0;
        transform: translate3d(-0.7em, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

}

@keyframes heroCharInRight {

    from {
        opacity: 0;
        transform: translate3d(0.7em, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

}

.hero-char.hero-char-left {
    transform-origin: 50% 50%;
    animation-name: heroCharInLeft;
}

.hero-char.hero-char-right {
    transform-origin: 50% 50%;
    animation-name: heroCharInRight;
}


/* =========================================================
   FALLBACK WHEN THE SPLITTER DOES NOT RUN
   LINES SIMPLY RISE & FADE INSTEAD
========================================================= */

@keyframes heroLineReveal {

    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

}

.hero-content h1:not(.is-split) .hero-title-line {
    animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1:not(.is-split) .hero-title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-title-line .title-white,
.hero-title-line span {
    color: var(--color-white);
    font-weight: 900;
    display: inline-block;
}

.hero-title-line .gold-text,
.hero-title-line strong {
    color: var(--color-gold);
    font-weight: 900;
    display: inline-block;
}

.hero-title-line .burgundy-text {
    color: var(--color-burgundy);
    font-weight: 900;
    display: inline-block;
}


/* =========================================================
   HERO DIVIDER
========================================================= */

.hero-divider {
    display: block;
    width: 120px;
    height: 4px;
    margin-top: 26px;
    background-color: var(--color-gold);
}


/* =========================================================
   HERO COMMUNITY TEXT
========================================================= */

.hero-community {
    margin: 25px 0 0;
    color: var(--color-white);
    font-family: "Archivo", sans-serif;
    font-stretch: 88%;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.25;
}

.hero-community strong {
    margin-right: 6px;
    color: var(--color-gold);
    font-weight: 800;
}


/* =========================================================
   HERO ACTION BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 26px;
    border: 1px solid transparent;
    font-family: "Archivo", sans-serif;
    font-stretch: 88%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.hero-btn-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

/* GOLD FILL -> BURGUNDY FILL WITH A GOLD EDGE */
.hero-btn-gold {
    color: var(--color-black);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.hero-btn-gold:hover {
    color: var(--color-white);
    background-color: var(--color-burgundy);
    border-color: var(--color-gold);
}

/* OUTLINE -> SOLID WHITE EDGE ON A FAINT WHITE WASH */
.hero-btn-outline {
    color: var(--color-white);
    background-color: transparent;
    border-color: rgba(var(--rgb-white), 0.45);
}

.hero-btn-outline:hover {
    color: var(--color-white);
    background-color: rgba(var(--rgb-white), 0.12);
    border-color: var(--color-white);
}

/* BURGUNDY FILL -> GOLD FILL (THE REVERSE OF THE GOLD BUTTON) */
.hero-btn-burgundy {
    color: var(--color-white);
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.hero-btn-burgundy:hover {
    color: var(--color-black);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}


/* =========================================================
   PHOTO SHOWCASE
========================================================= */

.photo-showcase {
    padding: clamp(50px, 7vw, 90px) 0;
    background-color: var(--color-black);
}

.showcase-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(var(--rgb-white), 0.12);
    background-color: var(--color-black);
    transition: border-color 0.35s ease;
}

.showcase-figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.showcase-figure:hover {
    border-color: var(--color-gold);
}

.showcase-figure:hover img {
    transform: scale(1.05);
}


/* =========================================================
   SCROLL REVEAL
   BASE STATE APPLIES ONLY WHEN SCRIPTING IS AVAILABLE
========================================================= */

.has-reveal [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    will-change: transform, opacity;
    transition:
        opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.has-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.photo-showcase .col-12:nth-child(2) [data-reveal] {
    transition-delay: 0.12s;
}

.photo-showcase .col-12:nth-child(3) [data-reveal] {
    transition-delay: 0.24s;
}


/* =========================================================
   SPONSORS SECTION
========================================================= */

.sponsors-section {
    padding: 42px 0;
    background-color: var(--color-white);
    color: var(--color-black);
}



.sponsors-heading {
    flex: 0 0 220px;
}

.sponsors-heading h2 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-black);
    text-align: center;
    padding: 0 0 30px 0;
}

.sponsors-logos {
    display: flex;
    align-items: center;
   justify-content: center;
   gap: 30px 40px;
    flex-wrap: wrap;
}

.sponsor-logo {
    width:12%;
    color: var(--color-black);
    text-align: center;
    line-height: 1;
}

.sponsor-logo span,
.sponsor-logo small {
    display: block;
}

.sponsor-trinchero {
    font-family: Georgia, serif;
}

.sponsor-trinchero span {
    font-size: 20px;
    letter-spacing: 2px;
}

.sponsor-trinchero small {
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: 2px;
}

.sponsor-napa {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.sponsor-napa strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 42px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 13px;
    transform: skew(-8deg);
}

.sponsor-napa span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.05;
}

.sponsor-bank strong {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.bank-mark {
    margin-top: 7px;
    font-size: 28px;
    font-weight: 900;
    transform: rotate(-8deg);
}

.sponsor-farmers strong {
    display: block;
    font-size: 20px;
    letter-spacing: 3px;
}

.sponsor-farmers span {
    margin-top: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.sponsor-kaiser strong {
    display: block;
    font-size: 17px;
    letter-spacing: 1px;
}

.sponsor-kaiser span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.sponsor-button {
    padding: 13px 15px;
    border: 2px solid var(--color-burgundy);
    color: var(--color-black);
    background-color: transparent;
    font-family: "Archivo", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}
.sponsors-btn{text-align:center;margin: 40px 0 0 0;}

.sponsor-arrow {
    font-size: 20px;
    line-height: 1;
    color: var(--color-burgundy);
    transition: transform 0.25s ease;
}

.sponsor-button:hover {
    color: var(--color-white);
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.sponsor-button:hover .sponsor-arrow {
    color: var(--color-white);
    transform: translateX(5px);
}


.brand-slider {
    background: #f2f2f2;
    overflow: hidden;
}


.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 210px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
        background: #fff;
}

.logo-item img {
   
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.brand-slider{padding:70px 0;}

/* =========================================================
   FUNDRAISERS SECTION
========================================================= */

.fundraisers-section {
    position: relative;
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(74, 14, 27, 0.65), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(74, 14, 27, 0.55), transparent 35%),
        var(--color-black);
    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.fundraisers-heading {
    text-align: center;
    margin-bottom: clamp(38px, 4vw, 52px);
}

.fundraisers-heading h2 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fundraisers-heading h2 span {
    color: var(--color-white);
}

.fundraisers-heading h2 strong {
    color: var(--color-gold);
    font-weight: 900;
    margin-left: 12px;
}

.fundraisers-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.fundraisers-subheading > span {
    width: 190px;
    height: 2px;
    background-color: var(--color-gold);
}

.fundraisers-subheading p {
    margin: 0;
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fundraisers-subheading b {
    color: var(--color-gold);
    margin: 0 8px;
}


/* =========================
   FUNDRAISER CARD
========================= */

.fundraiser-card {
    position: relative;
    height: 100%;
    min-height: 345px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.35);
    background-color: #111;
}

.fundraiser-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.fundraiser-card:hover img {
    transform: scale(1.05);
}


/* =========================
   DARK IMAGE OVERLAY
========================= */

.fundraiser-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08) 15%,
            rgba(0, 0, 0, 0.15) 35%,
            rgba(0, 0, 0, 0.82) 75%,
            rgba(0, 0, 0, 0.98) 100%
        );
}


/* =========================
   CARD CONTENT
========================= */

.fundraiser-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
}

.fundraiser-event {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fundraiser-event span {
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.fundraiser-event i {
    width: 55px;
    height: 2px;
    display: block;
    background-color: var(--color-gold);
}


/* =========================
   CARD TITLE
========================= */

.fundraiser-content h3 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
}

.fundraiser-content h3 span,
.fundraiser-content h3 strong {
    display: block;
}

.fundraiser-content h3 span {
    color: var(--color-white);
}

.fundraiser-content h3 strong {
    color: var(--color-gold);
    font-weight: 900;
}


/* =========================
   DESCRIPTION
========================= */

.fundraiser-content > p {
    margin: 14px 0 0;
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* =========================
   LEARN MORE
========================= */

.fundraiser-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
    color: var(--color-white);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.fundraiser-arrow {
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.fundraiser-link:hover {
    color: var(--color-white);
}

.fundraiser-link:hover .fundraiser-arrow {
    transform: translateX(7px);
}


.copyright { padding: 10px 0; background-color:#4a0e1b!important;margin: 0px 0 0 0;}
.copyright p { color: #fff; font-size: 18px; font-weight: 400; margin: 0; padding: 0 0; letter-spacing: 0.5px;font-family: "Montserrat", sans-serif; }
.Proudly_text { text-align: right; }


/* =========================================================
   GET IN THE GAME
========================================================= */

.game-section {
    position: relative;
    padding: clamp(55px, 6vw, 85px) 0;
    background-color: var(--color-black);
    overflow: hidden;
}

.game-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(74, 14, 27, 0.75),
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(74, 14, 27, 0.55),
            transparent 40%
        );
    pointer-events: none;
}

.game-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.game-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 32px;
    margin-bottom: 26px;
}

.game-heading-line {
    height: 2px;
    background-color: var(--color-gold);
}

.game-heading h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: "Archivo", sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    white-space: nowrap;
}

.game-heading h2 span {
    color: var(--color-white);
}

.game-heading h2 strong {
    color: var(--color-gold);
    font-weight: 900;
}

.game-heading p {
    grid-column: 1 / 4;
    margin: 18px 0 0;
    text-align: center;
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}


/* =========================================================
   CARD
========================================================= */

.game-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.42);
    background-color: #111;
}

.game-card-large {
    min-height: 350px;
    width:auto;
    height:auto;
}

.game-card-small {
    min-height: 320px;
}

.game-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.game-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   CARD OVERLAY
========================================================= */

.game-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .60) 38%,
            rgba(0, 0, 0, .12) 75%,
            rgba(0, 0, 0, .05) 100%
        );
    z-index: 1;
}


/* Bottom cards need stronger bottom overlay */

.game-card-small::after {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .05) 10%,
            rgba(0, 0, 0, .12) 38%,
            rgba(0, 0, 0, .88) 100%
        );
}


/* =========================================================
   CARD CONTENT
========================================================= */

.game-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 30px 36px 36px;
}

.game-card-large .game-card-content {
    top: 0;
    bottom: auto;
    max-width: 64%;
    padding-top: 45px;
}

.game-year {
    display: block;
    margin-bottom: 8px;
    color: var(--color-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.game-card h3 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.game-card-large h3 {
    font-size:36px;
}

.game-card-small h3 {
    font-size: clamp(27px, 2.1vw, 39px);
}

.game-card h3 span,
.game-card h3 strong {
    display: block;
}

.game-card h3 span {
    color: var(--color-white);
}

.game-card h3 strong {
    color: var(--color-gold);
    font-weight: 900;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.game-card p {
    margin: 18px 0 0;
    color: var(--color-white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.game-card-small p {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 3px;
}


/* =========================================================
   BUTTON
========================================================= */

.game-btn {
    width: 100%;
    max-width: 390px;
    min-height: 62px;
    margin-top: 27px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 2px solid var(--color-gold);
    background-color: rgba(74, 14, 27, .94);

    color: var(--color-white);
    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    transition: all .3s ease;
}

.game-btn span:last-child {
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    transition: transform .3s ease;
}

.game-btn:hover {
    color: var(--color-black);
    background-color: var(--color-gold);
}

.game-btn:hover span:last-child {
    color: var(--color-black);
    transform: translateX(6px);
}


/* =========================================================
   BOTTOM CARDS
========================================================= */

.game-bottom-row {
    margin-top: 16px;
}


.site-viewport-wrapper .inner-header{
    background: linear-gradient(180deg,
            rgba(var(--rgb-black), 0.75) 0%,
            rgba(var(--rgb-black), 0.35) 60%,
            transparent 100%)!important;
    position: unset!important;
}

.about-banner .hero-visual{position: absolute; top: 0; right: 0; bottom: 0; width: 66%; z-index: 1; background-image: url(../images/about-banner.png); background-repeat: no-repeat; background-size: cover; background-position: top center;}
.about-banner{height: 50%;}
.about-banner .hero-content-area{padding-top: unset;}
.about-banner .hero-content h1{font-size:60px;}
 .about-banner .hero-fade{width: 58%;}


/* =====================================================
   WHO WE ARE SECTION
====================================================== */

.who-we-are-section {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 48px 0 52px;
    border: 1px solid #eeeeee;
}

.who-we-are-section .container {
    position: relative;
    z-index: 2;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LEFT CONTENT
====================================================== */

.who-we-are-text {
    width: 80%;
    position: relative;
    z-index: 3;
}

.who-we-are-label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #d39b22;
    margin-bottom: 12px;
}

.who-we-are-text h1 {
    margin: 0 0 16px;
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.who-we-are-text h1 span,
.who-we-are-text h1 strong {
    display: block;
}

.who-we-are-text h1 span {
    color: #080808;
    font-size: 42px;
}

.who-we-are-text h1 strong {
    color:#4A0E1B;
    font-size: 42px;
    font-weight: 900;
}

.who-we-are-text p {
    max-width: 700px;
    padding:0 0 10px 0;
    margin:0;
    color: #151515;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}


/* =====================================================
   RIGHT CONTENT
====================================================== */

.who-we-are-right {
    width: 38%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* LARGE WATERMARK V */

.who-we-are-watermark {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);

    font-family: "Archivo", sans-serif;
    font-size: 285px;
    line-height: 1;
    font-weight: 900;

    color: transparent;
    -webkit-text-stroke: 12px rgba(180, 180, 180, 0.10);

    opacity: 0.9;
    user-select: none;
    z-index: 0;
}


/* RIGHT LIST */

.who-we-are-list {
    position: relative;
    z-index: 2;

    list-style: none;
    padding: 0;
    margin: 0;

    width: 245px;
}

.who-we-are-list li {
    margin: 0 0 3px;

    font-family: "Archivo", sans-serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    color: #777777;
    letter-spacing: 0.5px;
}


/* GOLD LINE */

.who-we-are-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(7px);

    width: 80px;
    height: 3px;

    background: #d39b22;
    z-index: 3;
}


/* =====================================================
   MEET THE BOOSTERS / BOARD
====================================================== */

.boosters-board-section {
    background: #f8f8f8;
    padding: 22px 0 25px;
    overflow: hidden;
}

.boosters-board-heading {
    margin-bottom: 10px;
}

.boosters-board-heading > span {
    display: block;
    margin-bottom: 2px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #d39b22;
}

.boosters-board-heading h2 {
    margin: 0;

    font-family: "Archivo", sans-serif;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: #4a0e1b!important;
}

.boosters-board-heading h2 strong {
    color: #050505;
}


/* =====================================================
   BOARD CARDS
====================================================== */

.boosters-board-row {
    margin-top: 0;
}

.board-member {
    overflow: hidden;
    background: #fff;
}

.board-member-image {
    overflow: hidden;
    line-height: 0;
}

.board-member-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* NAME / POSITION */

.board-member-info {
    padding: 12px 8px 12px;
    background: #4a0e1b!important;
    text-align: center;
}

.board-member-info h3 {
    margin: 0;

    font-family: "Archivo", sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;

    text-transform: uppercase;
}

.board-member-info p {
    margin: 6px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}


/* =====================================================
   VHS LEADERSHIP
====================================================== */

.vhs-leadership {
    margin-top: 40px;
    margin-bottom: 15px;
}

.vhs-leadership h2 {
    margin: 0;

    font-family: "Archivo", sans-serif;
    font-size: 37px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #4a0e1b!important;
}

.vhs-leadership h2 strong {
    color: #050505;
}


/* LEADERSHIP PERSON */

.leadership-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leadership-person > span {
    flex: 0 0 2px;
    width: 2px;
    height: 38px;
    background: #d39b22;
}

.leadership-person h3 {
    margin: 0 0 2px;

    font-family: "Archivo", sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
}

.leadership-person p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
}


/* =====================================================
   VABC MEETINGS SECTION
====================================================== */

.vabc-meetings-section {
    position: relative;
    overflow: hidden;

    background-color: #fff;
    background-image: url("../images/meeting-banner.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;

    padding: 42px 0 38px;
}


/* LEFT CONTENT */

.vabc-meetings-content {
    position: relative;
    z-index: 2;
}


/* SMALL LABEL */

.meetings-label {
    display: block;
    margin-bottom: 2px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 6px;

    color: #d39b22;
}


/* MAIN TITLE */

.meetings-title {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 60px;
    line-height: .88;
    font-weight: 900;

    letter-spacing: -2px;
    text-transform: uppercase;

    color: #4a0e1b;
}


/* GOLD LINE */

.meetings-title-line {
    width: 62px;
    height: 2px;

    margin-top: 13px;
    margin-bottom: 11px;

    background: #d39b22;
}


/* TAGLINE */

.meetings-tagline {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
}


/* =====================================================
   MEETING INFO
====================================================== */

.meetings-info {
    margin-top: 28px;
    margin-bottom: 22px;
}

.meeting-info-item {
    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 62px;
}

.meeting-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4a0e1b;
    color: #fff;

    font-size: 29px;
}

.meeting-info-text h3 {
    margin: 0 0 2px;

    font-family: "Archivo", sans-serif;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;

    text-transform: uppercase;
    color: #111;
}

.meeting-info-text p {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    line-height: 1.2;

    color: #111;
}


/* GOLD DIVIDER BETWEEN INFO */

.meetings-info .col-md-6 + .col-md-6 {
    position: relative;
}

.meetings-info .col-md-6 + .col-md-6::before {
    content: "";

    position: absolute;
    left: -20px;
    top: 50%;
    width: 2px;
    height: 64px;
    transform: translateY(-50%);
    background: #d39b22;
}


/* =====================================================
   MEETING DATES
====================================================== */

.meeting-dates {
    max-width: 775px;

    padding: 20px 28px 18px;

    background: rgba(247, 247, 247, .82);
}


/* DATE HEADING */

.meeting-dates-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 19px;
}

.meeting-dates-heading h2 {
    flex: 0 0 auto;

    margin: 0;

    font-family: "Archivo", sans-serif;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 3px;
    color: #4a0e1b;
}

.meeting-dates-heading span {
    display: block;

    width: 100%;
    height: 2px;

    background: #d39b22;
}


/* DATE GRID */

.meeting-date-list {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    row-gap: 17px;
}

.meeting-date {
    position: relative;

    display: flex;
    align-items: center;
}

.meeting-date:not(:nth-child(5)):not(:nth-child(10))::after {
    content: "";

    position: absolute;
    right: 35px;
    top: 50%;
    width: 2px;
    height: 30px;
    transform: translateY(-50%);

    background: #d39b22;
}

.meeting-date span {
    font-family: "Archivo", sans-serif;
    font-size: 21px;
    line-height: 1;
    font-weight: 800;

    color: #111;
}


/* =====================================================
   BOTTOM CONTENT
====================================================== */

.meetings-bottom {
    margin-top: 25px;
}

.meetings-bottom p {
    margin: 0 0 13px;

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.3;

    color: #111;
}


/* CONTACT BUTTON */

.meetings-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 295px;

    padding: 14px 22px;

    background: #4a0e1b;
    color: #fff;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: .2s ease;
}

.meetings-btn strong {
    font-size: 28px;
    line-height: .7;
    font-weight: 400;
}

.meetings-btn:hover {
    background: #5d071e;
    color: #fff;
}

/* =====================================================
   JOIN THE CRUSHER FAMILY
====================================================== */

.join-crusher-section {
    position: relative;
    overflow: hidden;
    padding: 45px 0 55px;
    background-color: #fff;
    background-image: url("../images/get-involved-banner.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}


/* CONTENT */

.join-crusher-content {
    position: relative;
    z-index: 2;
}


/* SMALL LABEL */

.join-crusher-label {
    display: block;
    margin-bottom: 3px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #d39b22;
}


/* MAIN HEADING */

.join-crusher-title {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 60px;
    line-height: .9;
    font-weight: 900;

    text-transform: uppercase;
}


/* JOIN THE */

.join-crusher-title strong {
    display: block;

    color: #050505;
}


/* CRUSHER FAMILY */

.join-crusher-title span {
    display: block;
    color: #4a0e1b;
}


/* GOLD LINE */

.join-crusher-line {
    width: 62px;
    height: 3px;

    margin: 14px 0 12px;

    background: #d39b22;
}


/* SUB HEADING */

.join-crusher-content h3 {
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;

    color: #111;
}


/* DESCRIPTION */

.join-crusher-content p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;

    color: #111;
}


/* =====================================================
   READY TO GET INVOLVED
====================================================== */

.ready-involved-section {
    background: #4a0e1b;
    padding: 50px 0;
     background-image: url("../images/cta-bg-img.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.ready-involved-content h2 {
    margin: 0 0 5px;
    font-family: "Archivo", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: .5px;
    text-transform: uppercase;

    color: #fff;
}

.ready-involved-content a {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}


/* =====================================================
   BUTTON
====================================================== */


.ready-involved-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 210px;
    padding: 14px 22px;
    background: #c9a227;
    color: #111;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;

    transition: .2s ease;
}

.ready-involved-btn strong {
    font-size: 27px;
    line-height: .7;
    font-weight: 400;
}

.ready-involved-btn:hover {
    background: #e1b735;
    color: #111;
}

.funways-col ul{column-count: 2;margin: 0 0 25px 0;}
.fun-ways-sec p{font-size:20px;}
.funways-col ul li{font-size:20px;padding: 0 0 6px 0;background: #000000bf;}
.fun-ways-sec{padding: 50px 0;}

.fun-ways-sec h2{
    font-family: "Archivo", sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    padding: 0 0 30px 0;
    text-transform: uppercase;
}



.booster-pass .join-crusher-title span{display:inline-block;}
.booster-pass .join-crusher-title strong{display:inline-block;}
.booster-pass .join-crusher-content h3{line-height:28px;}

.booster-pass{
    background-image: url("../images/booster-pass-bg-img.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}



/* =====================================================
   BOOSTER PASS OPTIONS
====================================================== */

.booster-pass-section {
    padding: 50px 0 50px;
    background: #fff;
}


/* =====================================================
   PASS CARD
====================================================== */

.booster-pass-card {
    position: relative;
    overflow: hidden;

    min-height: 155px;

    padding: 25px 34px 20px;

    background-color: #4a0e1b;
    background-image:
        linear-gradient(
            rgba(74, 14, 27, 0.92),
            rgba(74, 14, 27, 0.92)
        ),
        url("../images/get-involved-banner.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =====================================================
   TITLE
====================================================== */

.booster-pass-card h3 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}


/* =====================================================
   GOLD LINE
====================================================== */

.booster-pass-line {
    width: 52px;
    height: 3px;

    margin: 12px 0 15px;

    background: #d39b22;
}


/* =====================================================
   PURCHASE BUTTON
====================================================== */

.booster-pass-btn {
    min-width: 190px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    color: #050505;
    background: #c9a227;;

    text-decoration: none;
    text-transform: uppercase;

    transition: all 0.3s ease;
}


/* ARROW */

.booster-pass-btn span {
    font-size: 25px;
    line-height: 12px;
    font-weight: 400;
}


/* HOVER */

.booster-pass-btn:hover {
    color: #050505;
    background: #e5b43e;
}

.pass-heading h2{
    font-family: "Archivo", sans-serif;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: #4a0e1b !important;
}

.pass-heading h2 span{
    color:#000;
}

.pass-heading{text-align: center;padding: 0 0 30px 0;}
.box-btm-row{padding:30px 0 0 0;}
.box-btm-row p{color:#000;}
.box-btm-row p a{color:#000;}
.box-btm-col{text-align:center;}

.booster-memebership{padding:50px 0;}
.booster-memebership h3{font-weight: 700;padding: 0 0 20px 0;margin: 0;}
.booster-memebership-col ul li{font-size: 20px;padding: 0 0 8px 0;}
.booster-memebership-col p{font-size:20px;}







/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hero-content h1 {
        font-size: clamp(85px, 7vw, 86px);
    }

    .navbar-nav {
        gap: 8px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1399.98px) {

    .brand-name {
        font-size: 25px;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 0px 7px 7px 11px !important;
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .brand-logo {
        width: 100px;
        height: 100px;
        flex: 0 0 100px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 5.2vw, 80px);
    }

}

/* =========================================================
   TABLET NAVIGATION & HERO
========================================================= */

@media (max-width: 1199.98px) {

    .site-viewport-wrapper {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .navbar {
        min-height: 82px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 16px 20px 22px;
        background-color: rgba(var(--rgb-black), 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(var(--rgb-white), 0.15);
    }

    .navbar-nav .nav-link {
        padding: 13px 0 !important;
        font-size: 10px;
        color: var(--color-white);
        border-bottom: 1px solid rgba(var(--rgb-white), 0.1);
    }

    .dropdown-menu {
        margin-top: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background-color: transparent;
    }

    .dropdown-item {
        padding: 12px 0 12px 18px;
        color: var(--color-white);
    }

    .dropdown-item:hover {
        color: var(--color-white);
        background-color: rgba(var(--rgb-burgundy), 0.55);
    }

    .hero-main {
        height: auto;
    }

    .hero-section {
        height: auto;
    }

    .hero-banner {
        min-height: 720px;
    }

    .hero-content-area {
        height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
    }

}


/* =========================================================
   TABLET & MOBILE (BELOW 992px)
========================================================= */

@media (max-width: 991.98px) {

    .hero-visual {
        left: 0;
        width: 100%;
        opacity: 0.3;
        background-position: top center;
    }

    .hero-fade {
        display: none;
    }

    .hero-dark-overlay {
        background: linear-gradient(180deg,
                rgba(var(--rgb-black), 0.55) 0%,
                rgba(var(--rgb-black), 0.85) 100%);
    }

    .hero-banner {
        min-height: 640px;
    }

    .hero-content-area {
        padding-top: 130px;
        padding-bottom: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .hero-divider {
        width: 90px;
        margin-top: 20px;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 26px;
    }

    .hero-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    
    
    
    

}



/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

}