/* ===== فونت‌ها ===== */
@font-face {
    font-family: "Kalameh";
    src: url("fonts/Kalameh-Regular.woff2") format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: "Kalameh";
    src: url("fonts/Kalameh-Bold.woff2") format("woff2");
    font-weight: 700;
}

@font-face {
    font-family: "YekanBakh";
    src: url("fonts/YekanBakh-Regular.woff2") format("woff2");
    font-weight: 400;
}

/* ===== ریست ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== بدنه ===== */
body {
    background-color: #f2f2f2;
    color: #000;
    font-family: "Kalameh", "YekanBakh", Tahoma, sans-serif;
    line-height: 1.9;
}

/* ===== انیمیشن ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== صفحه اول ===== */
.center-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.center-page > div {
    animation: fadeUp 0.8s ease forwards;
}

h1 {
    font-size: 30px;
    margin-bottom: 32px;
    font-weight: 700;
}

/* ===== دکمه‌ها ===== */
.btn {
    display: inline-block;
    padding: 15px 32px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #333;
}

/* ===== صفحه مشاوره ===== */
.container {
    max-width: 850px;
    margin: 40px auto;
    padding: 28px;
    background-color: #fff;
    border-radius: 10px;
    animation: fadeUp 0.8s ease forwards;
}

.container h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.container ul {
    padding-right: 22px;
    margin: 15px 0;
}

.container li {
    margin-bottom: 10px;
}

/* ===== واتساپ ===== */
.whatsapp-btn {
    display: block;
    margin: 35px auto 0;
    background-color: #25D366;
    color: #fff;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.03);
}

/* ===== موبایل ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
        line-height: 1.7;
    }

    .container {
        margin: 20px;
        padding: 22px;
    }

    .container h2 {
        font-size: 20px;
    }

    .btn,
    .whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}
