@font-face {
    font-family: "Basic Sans";
    src: url("BasicSans-Regular.ttf") format("truetype");
    font-weight: normal;
}

@font-face {
    font-family: "Basic Sans";
    src: url("BasicSans-Bold.ttf") format("truetype");
    font-weight: bold;
}

@font-face {
    font-family: "Basic Sans";
    src: url("BasicSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Basic", sans-serif;
    background: linear-gradient(to right, #fdbb2d, #fcb045);
    color: #1f1f1f;
    text-align: center;
    background: url("../img/arkaplan.png");
}

.background-overlay {
    position: fixed;
    top: 0;
    left: -5px;
    width: 100vw;
    height: 100vh;
    background: url("../img/arkaplan-desen.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: luminosity; /* veya overlay, lighten, darken, screen */
    opacity: 0.7; /* istersen saydamlık katabilirsin */
}


.container {
    max-width: 100%;
    margin: auto;
    padding: 20px 20px;
    z-index: 999;
    position: relative
}

.icon {
    font-size: 60px;
    margin-bottom: -20px;
}

h1 {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 1px;
}

h2 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-img {
    width: 230px;
    height: auto;
    margin-top: 4px;
}

.info-flex-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.info-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    max-width: 42rem;
    flex: 1;
    text-align: left;
}

.icon-img2 {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    margin-top: 6px;
}

.icon-img3 {
    width: 220px;
    height: auto;
    margin-top: 4px;
}


.info-block .text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px; /* Harf aralığı */
}

.divider {
    width: 1px;
    height: 164px;
    border-left: 3px dashed #333;
    margin: 25px 20px;
    opacity: 1;
    margin-bottom: 50px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

strong {
    font-weight: 600;
}

.pay-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1f1f1f;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 0px;
    letter-spacing: 1px;
    font-size: 18px
}

    .pay-button:hover {
        background-color: #f0f0f0;
        color: #fdb53c !important;
    }

footer {
    margin-top: 40px;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

.background-container {
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/shape-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/*MOBILE*/
@media (max-width: 768px) {
    html {
        background: linear-gradient(90deg, #fdca3c, #fdd443) !important;
    }

    body {
        font-size: 14px;
        background-size: cover;
        background: linear-gradient(135deg, #fdb42b, #fdd544) !important;
    }

    h1 {
        font-size: 23px;
        margin:0;
        letter-spacing:normal;
    }

    h2 {
        font-size: 18px;
    }

    .container {
        padding: 0px 20px;
    }

    .info {
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-flex-container {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        gap: 20px;
    }

    .info-block {
        /*flex-direction: column;*/
        text-align: center;
        align-items: center;
    }

        .info-block .text p {
            font-size: 17px;
            text-align: left;
        }

    .icon-img{
        width: 49%;
        margin: 0 auto 0px;
    }

    .icon-img2 {
        width: 30%;
        margin-right: 0 !important;
    }


    .icon-img3 {
        width: 50%;
        margin: 0 auto 15px;
    }


    .divider {
        display: none;
    }

    .pay-button {
        width: 100%;
        padding: 12px 17px;
        font-size: 16px;
        margin-top:50px;
    }

    .background-overlay,
    .background-container {
        background-size: contain;
        background-position: top center;
        display: none;
    }

    footer {
        margin-top: 20px;
    }

    .mobile-display {
        display: none;
    }
}
/* iPad Air Portrait (Dikey) */
@media (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
    /* Dikey moda özel stiller */
    .divider {
        display: none;
    }
}

/* iPad Air Landscape (Yatay) */
@media (min-width: 835px) and (max-width: 1024px) and (orientation: landscape) {
    /* Yatay moda özel stiller */

}