:root {
    --background: #ffffff;
    --text: #111111;
    --gold: #b98522;
    --gold-dark: #8e651d;
    --muted: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    overflow-x: hidden;

    background: var(--background);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(185, 138, 47, 0.22);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    animation: headerReveal 0.6s ease-out both;
}

.site-header-inner {
    position: relative;

    width: min(1180px, calc(100% - 40px));
    min-height: 70px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;

    color: var(--text);
    text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
    text-decoration: none;
}

.site-brand-logo {
    display: block;

    width: 220px;
    height: 50px;

    object-fit: cover;
    object-position: center;
}

/* MASAÜSTÜ NAVİGASYON */

.site-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-navigation a {
    position: relative;

    padding: 23px 0 21px;

    color: #555555;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;

    text-decoration: none;
    text-transform: uppercase;
}

.site-navigation a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 15px;

    width: 0;
    height: 2px;

    border-radius: 999px;
    background: var(--gold);

    transform: translateX(-50%);
    transition: width 0.24s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a.active {
    color: var(--text);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.site-navigation a.active::after {
    width: 100%;
}

/* HAMBURGER */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;
    padding: 10px;

    border: 1px solid rgba(185, 138, 47, 0.34);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.78);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;
    margin: 4px 0;

    border-radius: 999px;
    background: var(--text);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ANA SAYFA */

.page {
    width: 100%;

    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
}

.hero {
    width: 100%;

    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 18px 20px 26px;
}

.hero-image-wrapper {
    width: 100%;
    flex: 1;
    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(24px) scale(0.97);

    animation: heroReveal 1.3s ease-out forwards;
}

.hero-image {
    display: block;

    width: min(1280px, 92vw);
    max-width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 16px 28px rgba(0, 0, 0, 0.07)
        );
}

/* ALT BAĞLANTILAR */

.footer-links {
    margin-top: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(12px);

    animation:
        fadeUp 0.8s ease-out 1.05s forwards;
}

.footer-links a {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;

    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--gold);
}

.footer-links span {
    color: var(--gold);
}

.copyright {
    margin-top: 12px;

    color: var(--muted);
    font-size: 12px;
    text-align: center;

    opacity: 0;
    transform: translateY(12px);

    animation:
        fadeUp 0.8s ease-out 1.2s forwards;
}

/* ANİMASYONLAR */

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TABLET */

@media (max-width: 900px) {

    .hero {
        padding: 14px 10px 24px;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
    }

}

/* MOBİL */

@media (max-width: 760px) {

    .site-header-inner {
        width: min(100% - 24px, 1180px);
        min-height: 62px;
        gap: 12px;
    }

    .site-brand-logo {
        width: 180px;
        height: 42px;

        object-fit: cover;
        object-position: center;
    }

    .mobile-menu-button {
        display: block;
        flex: 0 0 auto;
    }

    .site-navigation {
        position: absolute;
        top: 62px;
        right: 0;
        z-index: 9999;

        width: 210px;
        padding: 10px 14px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: #ffffff;

        border: 1px solid rgba(185, 138, 47, 0.25);
        border-radius: 12px;

        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.14);
    }

    .site-navigation.open {
        display: flex;
    }

    .site-navigation a {
        display: block;

        padding: 14px 10px;

        color: #111111;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.25;

        text-align: left;
        text-decoration: none;
        text-transform: none;
    }

    .site-navigation a + a {
        border-top:
            1px solid rgba(185, 138, 47, 0.15);
    }

    .site-navigation a::after {
        display: none;
    }

    .site-navigation a.active {
        color: var(--gold-dark);
    }

    .page {
        min-height: calc(100svh - 62px);
    }

    .hero {
        min-height: calc(100svh - 62px);

        padding:
            8px
            12px
            18px;
    }

    .hero-image-wrapper {
        width: 100%;
        flex: 1;
        min-height: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;

        object-fit: contain;
        object-position: center;
    }

    .footer-links {
        margin-top: 8px;
        gap: 9px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .copyright {
        margin-top: 9px;
        font-size: 11px;
    }

}
/* MOBİL LANDING PAGE */

.mobile-landing {
    display: none;
}

.google-play-button {
    min-width: 210px;
    padding: 11px 24px;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    border-radius: 15px;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.2);
}

.play-small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.google-play-button strong {
    font-size: 22px;
    line-height: 1.1;
}

.coming-soon {
    margin-top: 3px;

    color: #d8b56b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;

    text-transform: uppercase;
}

@media (max-width: 760px) {

    /* MASAÜSTÜ HERO MOBİLDE GİZLENİR */

    .hero {
        display: none;
    }

    /* MOBİL LANDING AÇILIR */

    .mobile-landing {
        display: block;
        width: 100%;

        background: #ffffff;
    }

    .mobile-hero {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-hero-image {
        display: block;

        width: 100%;
        height: auto;

        object-fit: cover;
        object-position: center;

        animation: heroReveal 1.2s ease-out both;
    }

    .mobile-hero-content {
        width: min(100% - 36px, 440px);
        padding: 32px 0 52px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .mobile-hero-content h1 {
        font-size: clamp(42px, 13vw, 62px);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -0.05em;
    }

    .mobile-hero-content p {
        max-width: 310px;
        margin-top: 17px;

        color: #555555;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
    }

    .mobile-hero-content .google-play-button {
        margin-top: 26px;
    }

    .learn-more-button {
        margin-top: 21px;
        padding-bottom: 5px;

        border-bottom: 2px solid var(--gold);

        color: var(--text);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.08em;

        text-decoration: none;
        text-transform: uppercase;
    }

    /* EKRAN GALERİSİ */

    .app-preview {
        padding: 60px 0 70px;

        overflow: hidden;

        background:
            linear-gradient(
                180deg,
                #faf6ec 0%,
                #ffffff 100%
            );
    }

    .section-heading {
        width: min(100% - 40px, 440px);
        margin: 0 auto;

        text-align: center;
    }

    .section-heading span {
        color: var(--gold-dark);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.18em;
    }

    .section-heading h2 {
        margin-top: 10px;

        font-size: 35px;
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .section-heading p {
        margin-top: 12px;

        color: var(--muted);
        font-size: 14px;
    }

    .screens-carousel {
        width: 100%;
        margin-top: 36px;
        padding:
            0
            max(24px, calc((100vw - 300px) / 2))
            20px;

        display: flex;
        gap: 20px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .screens-carousel::-webkit-scrollbar {
        display: none;
    }

    .screen-card {
        width: 300px;
        flex: 0 0 300px;

        scroll-snap-align: center;

        text-align: center;
    }

    .screen-placeholder {
        width: 100%;
        aspect-ratio: 9 / 18.5;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 8px solid #111111;
        border-radius: 38px;

        background:
            linear-gradient(
                145deg,
                #f4ead3,
                #ffffff
            );

        box-shadow:
            0 22px 46px rgba(0, 0, 0, 0.16);
    }

    .screen-placeholder span {
        font-size: 25px;
        font-weight: 900;
    }

    .screen-card h3 {
        margin-top: 23px;

        font-size: 23px;
        font-weight: 900;
    }

    .screen-card p {
        max-width: 270px;
        margin: 9px auto 0;

        color: var(--muted);
        font-size: 14px;
        line-height: 1.5;
    }

    /* SON İNDİRME BÖLÜMÜ */

    .mobile-final-download {
        padding: 68px 26px;

        display: flex;
        flex-direction: column;
        align-items: center;

        background: #111111;
        color: #ffffff;

        text-align: center;
    }

    .mobile-final-download h2 {
        font-size: 39px;
        font-weight: 900;
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .mobile-final-download p {
        max-width: 300px;
        margin-top: 17px;

        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.5;
    }

    .mobile-final-download .google-play-button {
        margin-top: 26px;

        box-shadow: none;
    }

    .mobile-footer {
        padding: 26px 20px 24px;

        display: flex;
        flex-direction: column;
        align-items: center;

        background: #ffffff;
    }
    .footer-company-logo {

        display: block;

        width: 220px;
        max-width: 80%;
        height: auto;

        margin-bottom: 22px;

        object-fit: contain;

    }
    .mobile-footer-links {

        opacity: 1;
        transform: none;
        animation: none;

        margin-top: 0;

    }

}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}