/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');


:root {
    --black: #080a0c;
    --black-2: #101315;

    --red: #8b0909;
    --red-dark: #430404;

    --gold: #c9a24a;
    --gold-light: #e7c96b;

    --white: #f5f1e7;
    --gray: #a9a39a;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 82px;
    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 6, 7, .98);

    border-bottom:
        1px solid rgba(201,162,74,.35);

    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar-logo {
    display: flex;
    align-items: center;
}


.navbar-logo img {
    width: 125px;
    height: auto;
    display: block;
}


.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}


.navbar nav a {
    font-size: 10px;
    letter-spacing: 1.6px;

    color: #ddd6c9;

    transition: .3s;
}


.navbar nav a:hover {
    color: var(--gold-light);
}


.register-btn {
    padding: 13px 21px;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: .3s;
}


.register-btn:hover {
    background: var(--red);
    color: var(--white);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 720px;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    display: flex;
    align-items: center;

    padding: 100px 9%;

    background:
        radial-gradient(
            ellipse 650px 650px at 82% 52%,
            rgba(100, 8, 8, 0.18) 0%,
            rgba(70, 5, 5, 0.10) 35%,
            rgba(20, 3, 3, 0.04) 60%,
            transparent 78%
        ),
        linear-gradient(
            90deg,
            #080a0c 0%,
            #080a0c 45%,
            #07090b 100%
        );

    scroll-margin-top: 82px;
}


/* =========================
   RED DIAGONAL DESIGN
========================= */

.hero::before {
    content: "";

    position: absolute;

    left: -120px;
    top: -100px;

    width: 48%;
    height: 135%;

    transform: skewX(-8deg);

    background:
        repeating-linear-gradient(
            135deg,
            rgba(139, 9, 9, 0.34) 0,
            rgba(139, 9, 9, 0.34) 2px,
            transparent 2px,
            transparent 12px
        );

    opacity: 0.9;

    z-index: 1;

    pointer-events: none;
}


/* =========================
   SOFT RED FADE
   MAKES THE RED AREA
   BLEND INTO BLACK
========================= */

.hero::after {
    content: "";

    position: absolute;

    left: 32%;
    top: 0;

    width: 24%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,12,0) 0%,
            rgba(8,10,12,0.04) 25%,
            rgba(8,10,12,0.55) 70%,
            #080a0c 100%
        );

    z-index: 2;

    pointer-events: none;
}


/* =========================
   GOLD VERTICAL LINE
   MOVED CLOSER TO RED DESIGN
========================= */

.hero {
    --gold-line-position: 48%;
}


.hero-content {
    position: relative;

    z-index: 10;

    max-width: 720px;

    padding: 35px 40px;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 8, 0.90) 0%,
            rgba(5, 6, 8, 0.70) 55%,
            rgba(5, 6, 8, 0.18) 100%
        );

    border-left:
        1px solid rgba(201, 162, 74, 0.45);

    box-shadow:
        20px 0 60px rgba(0, 0, 0, 0.30);
}


/* Gold bar is attached to hero content area */

.hero-content::after {
    content: "";

    position: absolute;

    left: calc(100% + 205px);

    top: -135px;

    width: 5px;
    height: 1000px;

    transform: rotate(8deg);

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(201,162,74,0.15) 8%,
            var(--gold) 20%,
            #ead27e 50%,
            var(--gold) 80%,
            rgba(201,162,74,0.15) 92%,
            transparent 100%
        );

    box-shadow:
        0 0 6px rgba(201,162,74,0.18);

    opacity: 0.85;

    z-index: 4;

    pointer-events: none;
}


/* =========================
   HERO TEXT
========================= */

.hero .eyebrow {
    position: relative;

    z-index: 20;

    color: var(--gold-light);

    text-shadow:
        0 2px 8px rgba(0,0,0,1);
}


.hero h1 {
    position: relative;

    z-index: 20;

    font-family: 'Cinzel', serif;

    font-size:
        clamp(48px, 6.5vw, 88px);

    line-height: 0.98;

    letter-spacing: -1px;

    color: var(--white);

    text-shadow:
        0 3px 14px rgba(0,0,0,1),
        0 0 3px rgba(0,0,0,1);
}


.hero h1 span {
    color: var(--gold-light);

    text-shadow:
        0 3px 14px rgba(0,0,0,1),
        0 0 3px rgba(0,0,0,1);
}


.hero-text {
    position: relative;

    z-index: 20;

    max-width: 600px;

    margin: 30px 0;

    color: #ded9d0;

    line-height: 1.8;

    font-size: 14px;

    text-shadow:
        0 2px 8px rgba(0,0,0,1);
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    position: relative;

    z-index: 20;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.gold-btn,
.outline-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 15px 27px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.gold-btn {
    background:
        linear-gradient(
            135deg,
            #9d0b0b,
            #650505
        );

    color: var(--white);

    border:
        1px solid var(--gold);
}


.gold-btn:hover {
    background:
        linear-gradient(
            135deg,
            #bd1111,
            #800606
        );

    box-shadow:
        0 0 25px rgba(201,162,74,.20);

    transform:
        translateY(-2px);
}


.outline-btn {
    color: var(--gold-light);

    background:
        rgba(5,6,8,.55);

    border:
        1px solid var(--gold);
}


.outline-btn:hover {
    background:
        rgba(201,162,74,.12);

    box-shadow:
        0 0 20px rgba(201,162,74,.10);

    transform:
        translateY(-2px);
}


/* =========================
   REMOVE OLD GLOW ELEMENT
========================= */

.hero-glow {
    display: none;
}


/* =========================
   STAY UPDATED TARGET
========================= */

#subscribe {
    scroll-margin-top: 82px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .hero {
        padding: 80px 30px;

        --gold-line-position: 68%;
    }


    .hero-content::after {
        left: calc(100% + 70px);

        opacity: 0.45;
    }


    .hero::after {
        left: 35%;

        width: 35%;
    }

}


@media (max-width: 600px) {

    .hero {
        min-height: 680px;

        padding: 70px 20px;

        background:
            radial-gradient(
                ellipse 450px 450px at 90% 50%,
                rgba(100,8,8,.14),
                transparent 75%
            ),
            #080a0c;
    }


    .hero-content {
        max-width: 100%;

        padding: 25px 20px;

        background:
            rgba(5,6,8,.84);
    }


    .hero-content::after {
        left: calc(100% + 30px);

        top: -100px;

        height: 850px;

        opacity: .25;
    }


    .hero h1 {
        font-size:
            clamp(42px,13vw,62px);

        line-height: .98;
    }


    .hero-text {
        font-size: 13px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .gold-btn,
    .outline-btn {
        width: 100%;

        text-align: center;
    }


    .hero::before {
        width: 85%;

        opacity: .65;
    }


    .hero::after {
        left: 35%;

        width: 40%;
    }

}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 110px 9%;
}


.section-heading {
    text-align: center;

    margin-bottom: 65px;
}


.section-heading h2 {
    font-family: 'Cinzel', serif;

    font-size:
        clamp(32px,4vw,52px);

    line-height: 1.1;
}


.section-heading h2 span {
    color: var(--gold-light);
}


.gold-line {
    width: 70px;
    height: 2px;

    background: var(--gold);

    margin: 25px auto 0;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #0d1012;
}


.about-content {
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    gap: 50px;

    align-items: center;
}


.about-content p {
    color: var(--gray);

    line-height: 1.9;

    margin-bottom: 20px;
}


.about-card {
    padding: 40px;

    border:
        1px solid rgba(201,162,74,.35);

    background:
        linear-gradient(
            145deg,
            rgba(139,9,9,.18),
            rgba(0,0,0,.2)
        );
}


.about-card span {
    color: var(--gold);

    font-size: 12px;
}


.about-card h3 {
    font-family: 'Cinzel', serif;

    margin: 18px 0 10px;
}


.about-card p {
    margin: 0;
}


/* =========================
   WHY ASPIN
========================= */

.feature-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}


.feature-card {
    min-height: 260px;

    padding: 30px;

    background: #111416;

    border:
        1px solid rgba(201,162,74,.18);

    transition: .3s;
}


.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(201,162,74,.65);
}


.feature-number {
    color: var(--gold);

    font-family: 'Cinzel', serif;

    font-size: 22px;
}


.feature-card h3 {
    margin: 45px 0 15px;

    font-family: 'Cinzel', serif;

    font-size: 15px;
}


.feature-card p {
    color: var(--gray);

    line-height: 1.7;

    font-size: 12px;
}


/* =========================
   PROMOTIONS
========================= */

.promotions {
    background:
        repeating-linear-gradient(
            135deg,
            #111416 0,
            #111416 2px,
            #0a0c0e 3px,
            #0a0c0e 10px
        );
}


.promo-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}


.promo-card {
    background: #101214;

    border:
        1px solid rgba(201,162,74,.3);

    overflow: hidden;

    transition: .3s;
}


.promo-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(201,162,74,.7);
}


.promo-image {
    height: 180px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: 'Cinzel', serif;

    font-size: 25px;

    color: var(--gold-light);

    background:
        radial-gradient(
            circle,
            rgba(139,9,9,.7),
            transparent 65%
        ),
        #130607;
}


.promo-content {
    padding: 28px;
}


.promo-label {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;
}


.promo-content h3 {
    font-family: 'Cinzel', serif;

    margin: 12px 0;
}


.promo-content p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.6;
}


.promo-content a {
    display: inline-block;

    margin-top: 22px;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================
   PAYMENTS
========================= */

.payments {
    background: #0c0e10;
}


.payment-grid {
    max-width: 850px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}


.payment-card {
    padding: 50px;

    text-align: center;

    border:
        1px solid rgba(201,162,74,.25);

    background: #101315;
}


.payment-icon {
    width: 55px;
    height: 55px;

    margin:
        auto auto 25px;

    border-radius: 50%;

    border:
        1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    font-size: 25px;
}


.payment-card h3 {
    font-family: 'Cinzel', serif;

    margin-bottom: 15px;
}


.payment-card p {
    color: var(--gray);

    line-height: 1.7;

    font-size: 12px;
}


/* =========================
   SUBSCRIBE
========================= */

.subscribe {
    padding: 110px 20px;

    text-align: center;

    background:
        linear-gradient(
            90deg,
            #270303,
            #570606,
            #270303
        );

    position: relative;

    overflow: hidden;

    scroll-margin-top: 82px;
}


.subscribe::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,.35) 11px,
            transparent 12px
        );
}


.subscribe-content {
    max-width: 650px;

    margin: auto;

    position: relative;

    z-index: 2;
}


.subscribe h2 {
    font-family: 'Cinzel', serif;

    font-size:
        clamp(35px,5vw,60px);

    line-height: 1.05;
}


.subscribe h2 span {
    color: var(--white);
}


.subscribe-content > p:not(.eyebrow) {
    margin: 25px auto;

    max-width: 550px;

    color: #d0c6ba;

    line-height: 1.7;
}


form {
    max-width: 600px;

    margin: 35px auto 0;
}


input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;

    padding: 17px;

    margin-bottom: 12px;

    background:
        rgba(0,0,0,.4);

    border:
        1px solid rgba(201,162,74,.55);

    color: white;

    outline: none;

    font-family:
        'Montserrat', sans-serif;
}


input::placeholder {
    color: #817b75;
}


input:focus {
    border-color:
        var(--gold-light);

    box-shadow:
        0 0 15px rgba(201,162,74,.1);
}


.consent {
    display: flex;

    gap: 10px;

    text-align: left;

    margin: 8px 0 20px;

    color: #d0c6ba;

    font-size: 10px;

    line-height: 1.5;
}


.consent input {
    accent-color: var(--gold);

    margin-top: 2px;
}


form .gold-btn {
    width: 100%;
}


.form-note {
    font-size: 10px !important;

    color: #b8aaa0 !important;
}


.success-message {
    display: none;

    margin-top: 25px;

    padding: 18px;

    border:
        1px solid var(--gold);

    color: var(--gold-light);

    background:
        rgba(0,0,0,.2);
}


/* =========================
   FAQ
========================= */

.faq {
    background: #0d1012;
}


.faq-container {
    max-width: 850px;

    margin: auto;
}


details {
    border-bottom:
        1px solid rgba(201,162,74,.25);
}


summary {
    padding: 25px 5px;

    cursor: pointer;

    font-family: 'Cinzel', serif;

    font-size: 14px;
}


details p {
    color: var(--gray);

    line-height: 1.7;

    padding:
        0 5px 25px;

    font-size: 12px;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 110px 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(139,9,9,.25),
            transparent 50%
        ),
        var(--black);
}


.final-cta h2 {
    font-family: 'Cinzel', serif;

    font-size:
        clamp(30px,5vw,55px);

    margin-bottom: 35px;
}


.final-cta h2 span {
    color: var(--gold-light);
}


/* =========================
   FOOTER
========================= */

footer {
    background: #050607;

    border-top:
        1px solid rgba(201,162,74,.25);
}


.footer-main {
    padding: 70px 9%;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-logo {
    display: inline-block;
}


.footer-logo img {
    width: 120px;

    height: auto;

    display: block;
}


.footer-brand p {
    max-width: 280px;

    margin-top: 20px;

    color: var(--gray);

    line-height: 1.7;

    font-size: 11px;
}


.footer-links {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-links h4 {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


.footer-links a {
    color: var(--gray);

    font-size: 10px;

    transition: .3s;
}


.footer-links a:hover {
    color: var(--gold-light);
}


.footer-bottom {
    padding: 22px 9%;

    border-top:
        1px solid rgba(255,255,255,.07);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777;

    font-size: 9px;
}


/* =========================
   TABLET
========================= */

@media(max-width:900px) {

    .navbar {
        padding: 0 25px;
    }


    .navbar nav {
        display: none;
    }


    .hero {
        padding: 80px 30px;
    }


    .hero::after {
        left: 70%;

        opacity: .4;
    }


    .feature-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .promo-grid {
        grid-template-columns:
            1fr;

        max-width: 500px;
    }


    .about-content {
        grid-template-columns:
            1fr;
    }


    .footer-main {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:600px) {

    .navbar {
        height: 70px;

        padding:
            0 18px;
    }


    .navbar-logo img {
        width: 95px;
    }


    .register-btn {
        padding:
            10px 13px;

        font-size: 9px;
    }


    .hero {
        min-height: 680px;

        padding:
            70px 20px;
    }


    .hero-content {
        padding:
            25px 20px;

        max-width: 100%;

        background:
            rgba(5,6,8,.78);
    }


    .hero h1 {
        font-size:
            clamp(42px,13vw,62px);

        line-height: .98;
    }


    .hero-text {
        font-size: 13px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .gold-btn,
    .outline-btn {
        width: 100%;

        text-align: center;
    }


    .hero::after {
        left: 78%;

        opacity: .25;
    }


    .hero-glow {
        right: -150px;

        width: 350px;
        height: 350px;

        opacity: .5;
    }


    .section {
        padding:
            80px 25px;
    }


    .feature-grid,
    .payment-grid {
        grid-template-columns:
            1fr;
    }


    .feature-card {
        min-height:
            auto;
    }


    .footer-main {
        grid-template-columns:
            1fr;

        padding:
            55px 25px;
    }


    .footer-bottom {
        padding:
            20px 25px;

        flex-direction:
            column;
    }

}

/* =========================================
   DYNAMIC PROMOTIONS GRID
   ========================================= */

#promoGrid.promo-grid {
    display: grid !important;
    grid-template-columns: repeat(
        auto-fit,
        minmax(260px, 280px)
    ) !important;
    justify-content: center !important;
    align-items: start;
    gap: 22px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#promoGrid .promo-card {
    width: 100% !important;
    margin: 0 !important;
}


/* Tablet */

@media (max-width: 900px) {

    #promoGrid.promo-grid {
        grid-template-columns: repeat(
            auto-fit,
            minmax(250px, 280px)
        ) !important;
    }

}


/* Mobile */

@media (max-width: 600px) {

    #promoGrid.promo-grid {
        grid-template-columns: minmax(
            0,
            360px
        ) !important;

        justify-content: center !important;
        padding: 0 20px;
    }

}

/* =========================================
   ASPIN CMS PROMOTION CARDS
   ========================================= */

#promoGrid {
    display: grid !important;
    grid-template-columns: repeat(
        3,
        minmax(260px, 280px)
    ) !important;
    justify-content: center !important;
    align-items: start !important;
    gap: 24px !important;
    width: 100% !important;
}


/* Keep every promotion card consistent */

#promoGrid .promo-card {
    width: 280px !important;
    min-width: 0 !important;
    margin: 0 !important;
}


/* Consistent promotional image area */

#promoGrid .promo-image {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* 2 cards or fewer still stay centered */

@media (max-width: 1000px) {

    #promoGrid {
        grid-template-columns: repeat(
            2,
            minmax(260px, 280px)
        ) !important;
    }

}


/* Mobile */

@media (max-width: 650px) {

    #promoGrid {
        grid-template-columns: minmax(
            0,
            360px
        ) !important;

        padding: 0 20px !important;
    }

    #promoGrid .promo-card {
        width: 100% !important;
    }

    #promoGrid .promo-image {
        height: 200px !important;
        min-height: 200px !important;
    }

}
