﻿@import url(/css/fonts.css);

* {
    box-sizing: border-box;
    font-family: webmehrazfont;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    background: #fffaf7;
    color: #2b2020;
}

.sj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 247, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #efd8cf;
}

.sj-header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.sj-logo {
    text-decoration: none;
    color: #2b2020;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .sj-logo span {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .sj-logo strong {
        font-size: 22px;
        color: #b47b68;
    }

.sj-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .sj-nav a {
        color: #2b2020;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
    }

        .sj-nav a:hover {
            color: #b47b68;
        }

.sj-header-btn {
    padding: 11px 22px;
    border-radius: 999px;
    background: #2b2020;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.sj-main {
    min-height: 70vh;
}

.sj-footer {
    background: #2b2020;
    color: #fff;
    padding-top: 55px;
}

.sj-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 7% 40px;
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 40px;
}

.sj-footer h3,
.sj-footer h4 {
    color: #f8d6c8;
    margin-top: 0;
}

.sj-footer p {
    line-height: 2;
    color: #f2e8e4;
}

.sj-footer a {
    display: block;
    color: #f2e8e4;
    text-decoration: none;
    margin-bottom: 12px;
}

    .sj-footer a:hover {
        color: #f8d6c8;
    }

.sj-footer-copy {
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    padding: 18px;
    color: #d8c3bb;
    font-size: 14px;
}

.sj-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    background: #25d366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
}

    .sj-whatsapp-float:hover {
        transform: translateY(-3px);
    }

@media (max-width: 900px) {
    .sj-header-inner {
        flex-wrap: wrap;
    }

    .sj-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .sj-header-btn {
        padding: 10px 16px;
    }

    .sj-footer-inner {
        grid-template-columns: 1fr;
    }
}
