﻿@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #e8f0f5; /* پس‌زمینه آرام و روشن */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 15px;
    color: #333333; /* رنگ متن رسمی */
}

.card {
    background: #ffffff; /* کارت سفید ساده */
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 35px 30px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: fadeIn 1s ease;
}

.card h1 {
    font-size: 24px;
    font-weight: 700;
    color: #00647F; /* تیتر رسمی آبی */
    margin-bottom: 20px;
}

.card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444; /* متن رسمی و آرام */
    margin: 10px 0;
}

.whatsapp-box {
    margin: 25px 0;
    padding: 14px 20px;
    background: #25D366; /* سبز واتساپ */
    border-radius: 12px;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
    text-decoration: none;
}

.whatsapp-box:hover {
    transform: scale(1.05);
    background: #1ebe57; /* سبز تیره‌تر هنگام هاور */
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #555555;
}

.icon { font-size: 24px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ریسپانسیو موبایل */
@media (max-width: 480px) {
    .card { padding: 25px 15px; }
    .card h1 { font-size: 20px; }
    .card p { font-size: 14px; }
    .whatsapp-box { font-size: 16px; padding: 12px 15px; }
    .icon { font-size: 22px; }
}
