/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #08111F;
    color: #F7F5F2;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}

.container {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
}

/* ===========================
   NAVBAR
=========================== */

header {
    padding: 40px 0 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
    color: #F7F5F2;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #A9B3C5;
    font-size: 15px;
    transition: color .2s;
}

.nav-links a:hover {
    color: white;
}

/* ===========================
   HERO
=========================== */

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 28px;
}

.hero-description {
    max-width: 700px;

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;

    color: #F8F4ED;

    text-align: center;

    margin: 10px 0 10px;
}

/* SADECE FEATURE GRAPHIC */

#hero > img {
    width: 100%;
    max-width: 800px;

    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(0,0,0,.45);

    transition: transform .25s ease;
}


/* ===========================
   GOOGLE PLAY
=========================== */

.google-play-badge {
    display: inline-block;

    margin-top: 20px;

    transition: transform .2s ease;
}

.google-play-badge:hover {
    transform: translateY(-2px);
}

.google-play-badge img {
    display: block;

    width: 180px;
    height: auto;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .container {
        width: min(1100px, calc(100% - 64px));
    }

    nav {
        flex-direction: column;
        gap: 18px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    #hero > img {
        max-width: 100%;
        border-radius: 14px;
    }

    .google-play-badge img {
        width: 170px;
    }

}

/* ===========================
   PAGES
=========================== */

.page {

    max-width: 760px;

    margin: 0 auto;

    padding-bottom: 80px;

}

.page h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    margin-bottom: 12px;

}

.last-updated {

    color: #A9B3C5;

    margin-bottom: 36px;

}

.card {

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    padding: 40px;

}

.card h2 {

    font-size: 24px;

    margin-top: 36px;
    margin-bottom: 12px;

}

.card h2:first-child {

    margin-top: 0;

}

.card p {

    color: #C8D0DD;

    line-height: 1.8;

}

.card ul {

    padding-left: 24px;

    color: #C8D0DD;

    line-height: 1.9;

}

.logo a {

    color: inherit;

    text-decoration: none;

}

.card a {

    color: #FFFFFF;

    text-decoration: none;

    font-weight: 600;

}

.card a:hover {

    text-decoration: underline;

}