:root {
    --primary-color: #20B2AA;
    --secondary-color: #16A085;
    --accent-color: #F5F5DC;
    --text-color: #2C3E50;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --sidebar-width: 280px;
    --sidebar-bg: linear-gradient(135deg, #20B2AA 0%, #16A085 100%);
    --sidebar-link-color: rgba(255, 255, 255, 0.8);
    --sidebar-link-hover-bg: rgba(255, 255, 255, 0.2);
    --sidebar-link-active-color: white;
}

body {
    background-color: beige;
    font-family: 'Cairo', sans-serif !important;
    margin-bottom: 1rem;
}


/* body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
    transition: margin-right 0.4s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 3rem;
}

h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h5 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    font-family: 'Cairo', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* .header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: none;
    margin: none;
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0px;
}

.brand-text {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: var(--accent-color);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    z-index: 1001;
    border: 1px solid #f0f0f0;
    text-align: right;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 400;
    background: none;
}

.dropdown-menu li a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
} */

/* .posts-page {
    padding: 100px 0 50px;
    min-height: 80vh;
} */

.page-header-posts {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.posts-grid-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-card-post img,
.post-card-post video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-card-post-content {
    padding: 1.5rem;
}

.post-card-post h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-card-post p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-meta-posts {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-meta span {
    margin-left: 1rem;
}

.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-posts i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.post-media img,
.post-media video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.latest-posts {
    background-color: var(--light-bg);
}


.btnCopy {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #20b2aa;
    transition: all 0.2s ease;
    font-family: 'Cairo', sans-serif;
}

.btnCopy:active {
    transform: scale(0.96);
}

.btnCopy:before,
.btnCopy:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}


@font-face {
    font-family: 'YourCustomFont';
    src: url('../font/alfont_com_AlFont_com_Segoe.UI_DownloadSoftware.iR_.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


.contFont {
    font-family: 'YourCustomFont' !important;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: justify;
}