/* بارگذاری فونت Vazirmatn از Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;700&display=swap');

html {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

/* راست‌چین برای فارسی */
html[lang="fa"] {
    direction: rtl;
}

/* چپ‌چین برای انگلیسی */
html[lang="en"] {
    direction: ltr;
}

body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* ===== هدر ===== */
header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* قرار گرفتن محتوا پایین */
    align-items: center;       /* وسط افقی */
    height: 200px;
    background-image: url('images/header1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center; /* 👈 سمت چپ تصویر همیشه در چپ باشد */
    color: #222121;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    text-shadow: 2px 2px 2px #DCDCDC;
}

header h1 {
    margin: 0;
    font-size: 3rem;
}

/* ===== منو ===== */
nav {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

nav a {
    color: #DCDCDC;
    margin: 5px 10px;
    text-decoration: none;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    text-shadow: 2px 2px 2px #222121;
    font-size: 1.2rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}
nav a:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ===== بخش اصلی ===== */
main {
    padding: 20px;
}

/* مقالات و ویدیوها */
.video-card, section {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* iframe و تصاویر واکنش‌گرا */
iframe, img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* تیترها */
h2 {
    font-size: 1.6rem;
    margin-top: 0;
}
h3 {
    font-size: 1.3rem;
}

/* ===== Media Query برای موبایل ===== */
@media (max-width: 768px) {
    header {
        padding: 30px 10px;
        height: auto;
    }
    header h1 {
        font-size: 1.8rem;
    }
    nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    nav a {
        font-size: 1rem;
        padding: 8px 10px;
        margin: 3px;
    }
    main {
        padding: 10px;
    }
    section {
        padding: 10px;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.1rem;
    }
}
