:root {
    --accent: #d32f2f;
    --dark: #222;
    --muted: #666;
    --card: #fff;
    --bg: #f6f7f9;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../fonts/Vazirmatn-VariableFont_wght.ttf');
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: Vazirmatn, 'Vazirmatn', sans-serif;
    background: #f6f7f9;
    margin: 0;
    color: #222;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}





/* header */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.06);
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff7a7a, #d32f2f);
    color: #fff;
    font-weight: 700
}

.logo img {
    max-height: 40px;
}

.website-slang {
    font-size: 13px;
    color: var(--muted);
}

nav a {
    margin-left: 12px;
    text-decoration: none;
    color: var(--muted)
}

.cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.cta-btn-hover:hover {
    background: var(--card);
    color: var(--accent);
    box-shadow: inset 0px 0px 0px 2px var(--accent);
    transition: ease-in-out 0.2s;
}

/* header end */


/* footer */
.site-footer {
    background: #222;
    color: #eee;
    padding: 30px 20px 15px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 20px;
    gap: 20px;
}

.footer-brand h2 {
    margin: 0;
    color: #fff;
}

.footer-links a {
    color: #ddd;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #d32f2f;
}

.footer-socials a {
    margin: 0 8px;
    font-size: 20px;
    color: #ddd;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #d32f2f;
}

.footer-copy {
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
    color: #aaa;
}

/* footer end */

/* float btn */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;

}

.floating-btn i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}