/* -------------------------
   FONT
------------------------- */

@font-face {
    font-family: 'AvantGarde';
    src: url('../fonts/AvantGarde.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* -------------------------
   BASIC SETUP
------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'AvantGarde', Arial, Helvetica, sans-serif;
    color: #163d5c;
    background: #ffffff;
}


/* -------------------------
   HEADER
------------------------- */

.site-header {
    text-align: center;
    padding: 45px 20px 25px;
}

.logo {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 35px;
}

.logo-link {
    display: inline-block;
}


/* -------------------------
   NAVIGATION
------------------------- */

.main-nav {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #163d5c;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.5px;

    padding-bottom: 5px;
    border-bottom: 3px solid transparent;

    transition: border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    border-color: #ffd052;
}


/* -------------------------
   HOMEPAGE GAME SECTIONS
------------------------- */

.game-feature {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 70px;
}

.game-feature.reverse {
    flex-direction: row-reverse;
}

.game-image {
    flex: 1.3;
    border-radius: 28px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-info {
    flex: 1;
}

.game-info h1 {
    margin: 0 0 15px;

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.game-info p {
    margin: 0 0 28px;

    font-size: 18px;
    line-height: 1.6;
}


/* -------------------------
   BUTTONS
------------------------- */

.button {
    display: inline-block;

    padding: 14px 25px;

    background: #ffd052;
    color: #163d5c;

    text-decoration: none;
    text-transform: uppercase;

    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1.2px;

    border-radius: 100px;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #163d5c;
}


/* -------------------------
   ABOUT PAGE
------------------------- */

.about-page {
    max-width: 1050px;
    margin: 80px auto 120px;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 70px;
}

.about-photo {
    flex: 0 0 40%;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 28px;
}

.about-copy {
    flex: 1;
    text-align: left;
}

.about-copy h1 {
    margin: 0 0 25px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
}

.about-copy p {
    margin: 0 0 20px;

    font-size: 21px;
    line-height: 1.6;
}


/* -------------------------
   GAME PAGES
------------------------- */

.game-page {
    max-width: 1100px;
    margin: 40px auto 100px;
    padding: 0 30px;
}

.game-page-header {
    max-width: 1100px;
    margin: 0 auto 60px;

    text-align: center;
}

.game-page-header h1 {
    margin: 0 0 15px;

    font-size: clamp(52px, 8vw, 90px);
    line-height: 1;
}

.game-tagline {
    margin: 0 0 30px;

    font-size: 22px;
    line-height: 1.5;
}


/* GAME HERO */

.game-hero {
    width: 100%;
    margin: 0 auto 40px;

    border-radius: 28px;
    overflow: hidden;
}

.game-hero img {
    width: 100%;
    height: auto;
    display: block;
}


/* STORE BADGES */

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;

    margin-bottom: 25px;
}

.store-badges img {
    height: 55px;
    width: auto;
    display: block;
}


/* TRAILER / PRESS BUTTONS */

.game-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* SCREENSHOT GALLERY */

.game-gallery {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.game-gallery a {
    display: block;

    border-radius: 24px;
    overflow: hidden;
}

.game-gallery img {
    width: 100%;
    height: auto;
    display: block;

    transition: transform 0.25s ease;
}

.game-gallery a:hover img {
    transform: scale(1.025);
}


/* -------------------------
   PRESS KIT
------------------------- */

.press-page {
    max-width: 1100px;
    margin: 50px auto 100px;
    padding: 0 30px;
}


/* PRESS HERO */

.press-hero {
    width: 100%;
    margin-bottom: 35px;

    border-radius: 28px;
    overflow: hidden;
}

.press-hero img {
    width: 100%;
    height: auto;
    display: block;
}


/* PRESS NAV */

.press-nav {
    display: flex;
    justify-content: center;
    gap: 12px 22px;
    flex-wrap: wrap;

    margin-bottom: 70px;
}

.press-nav a {
    color: #163d5c;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.press-nav a:hover {
    text-decoration: underline;
}


/* FACTS + DESCRIPTION */

.press-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;

    margin-bottom: 70px;
}

.press-page h2 {
    margin-top: 0;
    margin-bottom: 18px;

    font-size: 32px;
}

.press-page h3 {
    font-size: 20px;
}

.press-page p,
.press-page li {
    font-size: 17px;
    line-height: 1.65;
}

.press-page ul {
    padding-left: 24px;
}

.press-page a {
    color: #2c76ad;
}


/* GENERAL PRESS SECTION */

.press-section {
    margin-top: 80px;
}


/* VIDEO */

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    border-radius: 24px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* DOWNLOAD BUTTON */

.download-button {
    display: inline-block;

    margin-bottom: 30px;
    padding: 14px 22px;

    background: #ffd052;
    color: #163d5c !important;

    text-decoration: none;
    font-weight: bold;

    border-radius: 100px;
}


/* PRESS IMAGE GRID */

.press-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.press-gallery a {
    display: block;

    border-radius: 20px;
    overflow: hidden;
}

.press-gallery img {
    width: 100%;
    height: auto;
    display: block;

    transition: transform 0.2s ease;
}

.press-gallery a:hover img {
    transform: scale(1.02);
}


/* CREDITS + CONTACT */

.press-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;

    margin-top: 80px;
}


/* -------------------------
   FOOTER
------------------------- */

footer {
    margin-top: 100px;
    padding: 40px 20px;

    text-align: center;

    font-size: 12px;
    letter-spacing: 1px;

    color: #777;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* -------------------------
   PRIVACY PAGE
------------------------- */

.privacy-page {
    max-width: 850px;
    margin: 70px auto 100px;
    padding: 0 30px;
    text-align: left;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3,
.privacy-page h4 {
    color: #25aad9;
}

.privacy-page h4 {
    margin: 0 0 30px;
    font-size: 38px;
}

.privacy-page p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.65;
}

.privacy-page ul {
    margin: 0 0 25px;
    padding-left: 28px;
}

.privacy-page li {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.5;
}

.privacy-page a {
    color: #2c76ad;
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 700px) {

    /* HEADER */

    .site-header {
        padding-top: 30px;
    }

    .logo {
        width: 105px;
        margin-bottom: 25px;
    }


    /* NAVIGATION */

    .main-nav {
        gap: 12px 20px;
    }

    .main-nav a {
        font-size: 12px;
    }


    /* HOMEPAGE */

    .game-feature,
    .game-feature.reverse {
        flex-direction: column;
        gap: 30px;

        margin: 50px auto;
        padding: 0 20px;
    }

    .game-image {
        width: 100%;
    }

    .game-info {
        text-align: center;
    }

    .game-info p {
        font-size: 16px;
    }


    /* ABOUT */

    .about-page {
        flex-direction: column;
        gap: 35px;

        margin: 50px auto 80px;
        padding: 0 20px;
    }

    .about-photo {
        width: 100%;
    }

    .about-photo img {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-copy {
        text-align: center;
    }

    .about-copy p {
        font-size: 18px;
    }


    /* GAME PAGES */

    .game-page {
        margin-top: 40px;
        padding: 0 20px;
    }

    .game-page-header {
        margin-bottom: 40px;
    }

    .game-tagline {
        font-size: 18px;
    }

    .store-badges img {
        height: 45px;
    }

    .game-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* PRESS KIT */

    .press-page {
        margin-top: 40px;
        padding: 0 20px;
    }

    .press-nav {
        margin-bottom: 50px;
    }

    .press-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .press-gallery {
        grid-template-columns: 1fr;
    }

    .press-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .press-page p,
    .press-page li {
        font-size: 16px;
    }
    
    .privacy-page {
    margin: 50px auto 80px;
    padding: 0 20px;
    }
    
    .privacy-page p,
    .privacy-page li {
        font-size: 16px;
    }
}