
@font-face {
    font-family: 'katibeh';
    src: url('../fonts/katibeh.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'peyda';
    src: url('../fonts/peyda-medium.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== Reset ===== */
* {
    box-sizing: border-box;
    font-family: 'peyda', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* جلوگیری از اسکرول چپ/راست */
}

/* ===== Disable link style ===== */
a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

/* ===== BODY ===== */
body {
    margin: 0;
    background: #9bae8b;

    display: flex;
    justify-content: center;

    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 450px;
    padding: 10px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== CONTENT WRAPPER ===== */
.scroll {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== LOGO ===== */
img.logo {
    width: 120px;
    margin-top: 10px;
}

/* ===== TITLE ===== */
h1 {
    font-size: 32px;
    font-weight: 400;
    color: #353535;
    /*font-family: 'katibeh', sans-serif;*/
    margin-top: 10px;
}

/* ===== SUBTITLE ===== */
.subtitle {
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin: 0;
    line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider {
    width: 100%;
    text-align: center;
    margin: 30px 0 10px;
    position: relative;
    color: #353535;
}

.divider:before,
.divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
}

.divider:before {
    right: 0;
    background: linear-gradient(90deg, #2d6c61 0%, #90a989 100%);
}

.divider:after {
    left: 0;
    background: linear-gradient(90deg, #90a989 0%, #2d6c61 100%);
}

/* ===== BUTTON ===== */
.btn {
    width: 100%;
    background: #F3F0F0;
    border: none;
    border-radius: 10px;
    padding: 12px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.2s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: #dccdab;
}

/* ===== BUTTON CONTENT ===== */
.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn img {
    width: 30px;
}

/* ===== GRID ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 10px;

    overflow: hidden;
}

/* ===== TEXT ===== */
.text-lg {
    font-size: 16px;
}

.text-xl {
    font-size: 18px;
}

/* ===== PHONE BOX ===== */
.phone-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ===== RTL/LTR FIX ===== */
.ltr {
    direction: ltr;
}

/* ===== CENTER ===== */
.center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
    .container {
        max-width: 450px;
    }
}

/* ===== MOBILE TEXT OPTIMIZATION ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 22px;
    }

    .btn {
        padding: 14px;
    }
}