/* -------------------------
   BASIC SETUP
------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 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;
}


/* -------------------------
   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;
}

.game-info {
    flex: 1;
}

.game-info h1 {
    margin: 0 0 15px;

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.game-info p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 28px;
}


/* -------------------------
   TEMPORARY ART PLACEHOLDER
------------------------- */

.placeholder {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2c76ad;
    border-radius: 28px;

    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}


/* -------------------------
   BUTTON
------------------------- */

.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;
}


/* -------------------------
   FOOTER
------------------------- */

footer {
    margin-top: 100px;
    padding: 40px 20px;

    text-align: center;

    font-size: 12px;
    letter-spacing: 1px;

    color: #777;
}

.game-image {
    flex: 1.3;
    border-radius: 28px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 700px) {

    .site-header {
        padding-top: 30px;
    }

    .logo {
        width: 105px;
        margin-bottom: 25px;
    }

    .main-nav {
        gap: 12px 20px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .game-feature,
    .game-feature.reverse {
        flex-direction: column;
        gap: 30px;

        margin: 50px auto;
        padding: 0 20px;
    }

    .placeholder {
        min-height: 300px;
    }

    .game-info {
        text-align: center;
    }

    .game-info p {
        font-size: 16px;
    }
    
    .game-image {
        flex: 1.3;
        height: 420px;
        border-radius: 28px;
        overflow: hidden;
    }
    
    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 28px;
    }
}