@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600&display=swap');

:root {
    --bg-dark: #1c1a1a;
    --bg-accent: #2b2626;
    --text-main: #f1ede8;
    --text-sub: #c7bfb7;
    --accent: #c09f80;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Vazirmatn', sans-serif;
    background: radial-gradient(circle at top left, #2c2727, #1c1a1a 70%);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* طرح پس‌زمینه (دود/رایحه ملایم) */
.mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: url('./assets/Img/Logo-and-icon/bkg.png');
    background-size: cover;
    opacity: 0.24;
    animation: float 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.05);
    }
}

img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(192, 159, 128, 0.3);
    z-index: 1;
}

h1 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent);
    z-index: 1;
}

p {
    font-size: 1.1rem;
    color: var(--text-sub);
    z-index: 1;
}

.loader {
    margin-top: 30px;
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-top: 5px solid var(--accent);
    border-radius: 50%;
    animation: spin 1.3s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

footer {
    position: absolute;
    bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-sub);
    z-index: 1;
}