@charset "utf-8";
/* CSS Document */

/*
Theme Name: shooboksa theme
Author: shooboksa
Version: 1.0
*/




/* ==========================
   الحاوية العامة
========================== */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Tahoma',sans-serif;
    direction:rtl;
    background:#fff;
    color:#222;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ==========================
   محتوى الصفحات
========================== */

.entry-content,
.page-content{

    max-width:1200px;
    margin:40px auto;
    padding:0 20px;

}

.entry-content p,
.page-content p{

    font-size:20px;
    line-height:2;
    text-align:center;

}

.entry-content h2,
.entry-content h3,
.page-content h2,
.page-content h3{

    text-align:center;
    margin:40px 0 20px;

}

.entry-content img,
.page-content img{

    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin:30px auto;
    border-radius:8px;

}

.entry-content figure,
.page-content figure{

    margin:30px auto;

}

/* ==========================
   القوائم
========================== */

.entry-content ul,
.page-content ul{

    width:fit-content;

    margin:30px auto;

    text-align:right;

    line-height:2.2;

}

.entry-content li,
.page-content li{

    margin-bottom:10px;

}

/* ==========================
   معرض الصور
========================== */

.gallery{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.gallery img{

width:100%;

height:320px;

object-fit:cover;

}

/* ==========================
   الجوال
========================== */

@media(max-width:768px){

.gallery{

grid-template-columns:1fr;

}

.entry-content p{

font-size:18px;

}

}

/* ===== عنوان الصفحة ===== */

.page-header{
    background:url(images/header.jpg) center center/cover no-repeat;
    min-height:260px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.page-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.page-header .container{
    position:relative;
    z-index:2;
    text-align:center;
}

.page-header h1{

    color:#ff9800;

    border:2px solid #ff9800;

    display:inline-block;

    padding:18px 80px;

    font-size:55px;

    font-weight:700;

}

/* ===== محتوى الصفحة ===== */

.page-content{

    max-width:1100px;

    margin:auto;

    padding:60px 0;

}

.page-content h2{

    font-size:38px;

}

.page-content p{

    font-size:20px;

    line-height:2.2;

}

.page-content img{

    width:100%;

    margin:40px auto;

    border-radius:6px;

}

/* ===== القوائم ===== */

.page-content ul{

    width:700px;

    margin:auto;

    text-align:right;

}

.page-content li{

    margin:12px 0;

}

/* ===== معرض الصور ===== */

.wp-block-gallery{

display:grid !important;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.wp-block-gallery img{

height:320px;

object-fit:cover;

}

/* ===== الجوال ===== */

@media(max-width:768px){

.page-header h1{

font-size:34px;

padding:15px 35px;

}

.wp-block-gallery{

grid-template-columns:1fr;

}

}