/* =========================
   ZUXAR — Global
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f7f5ef;
    color: #10234c;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   Header
========================= */

.site-header {
    width: 100%;
    min-height: 90px;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #073c91;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    font-size: 36px;
}

.brand-name {
    font-family: Georgia, serif;
    font-size: 30px;
    letter-spacing: 3px;
}

.brand-tagline {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 2px;
    opacity: .8;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.main-nav a {
    font-size: 12px;
    letter-spacing: .5px;
    color: white;
    opacity: .9;
}

.main-nav a:hover {
    opacity: 1;
}


/* =========================
   Hero
========================= */

.hero {
    min-height: 620px;
    padding: 90px 8%;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 65, .82) 0%,
            rgba(3, 35, 105, .55) 38%,
            rgba(3, 35, 105, .10) 68%,
            rgba(3, 35, 105, 0) 100%
        ),
        url("../images/hyperjump-hero2.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 20px;
    font-size: 12px;
    letter-spacing: 3px;
    opacity: .8;
}

.hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 8vw, 105px);
    font-weight: normal;
    line-height: .95;

    letter-spacing: 3px;

    text-shadow: 0 3px 15px rgba(0,0,0,.25);
}

.hero h2 {
    margin: 22px 0;

    font-family: Georgia, serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: normal;
    letter-spacing: 12px;
}

.hero-subtitle {
    margin: 28px 0 35px;

    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    min-width: 210px;
    padding: 17px 25px;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 6px;

    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;

    transition: .25s;
}

.btn-primary {
    border-color: #4925c7;
    background: linear-gradient(135deg, #5532d8, #173d9e);
}

.btn-secondary {
    background: rgba(255,255,255,.06);
}

.btn:hover {
    transform: translateY(-2px);
}


/* =========================
   Discover
========================= */

.discover {
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 5% 90px;
}

.discover > h2 {
    margin: 0 0 25px;

    text-align: center;

    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 5px;
}

.filters {
    margin-bottom: 35px;

    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filters button {
    padding: 8px 18px;

    border: 0;
    border-radius: 20px;

    background: transparent;
    color: #17295b;

    font-size: 11px;
    letter-spacing: .5px;

    cursor: pointer;
}

.filters button:first-child {
    background: #4a2bb8;
    color: white;
}


/* =========================
   Cards
========================= */

.card-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 18px;
}

.card {
    min-height: 270px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-radius: 14px;

    background:
        linear-gradient(
            160deg,
            #1266b7,
            #082b67
        );

    color: white;

    box-shadow:
        0 8px 25px rgba(9, 38, 87, .15);
}

.card h3 {
    margin: 0 0 8px;

    font-family: Georgia, serif;
    font-size: 25px;
}

.card p {
    margin: 0;

    max-width: 300px;

    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.45;

    opacity: .9;
}


/* =========================
   Tablet / Mobile
========================= */

@media (max-width: 900px) {

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 15px;
    }

    .hero {
        min-height: 570px;
        padding: 70px 6%;
    }

    .hero h2 {
        letter-spacing: 7px;
    }
}

@media (max-width: 600px) {

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        width: 100%;
    }

    .discover {
        padding-left: 20px;
        padding-right: 20px;
    }
}