/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.nav-link.active {
    color: #AC8C64 !important;
    font-weight: bold;
    border-bottom: 2px solid #AC8C64;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 56px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

@media (max-width: 767px) {
    .section-title {
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .section-title {
        padding-bottom: 30px;
    }
}

/* صورة على اليسار */
.section-title p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/assets/img/title_images/before.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* صورة على اليمين */
.section-title p::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/assets/img/title_images/after.png');
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {

    .section-title p::before,
    .section-title p::after {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575px) {

    .section-title p::before,
    .section-title p::after {
        width: 40px;
        height: 40px;
    }
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--default-font);
}

.section-title p {
    position: relative;
    padding: 0 70px;
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 48px;
    font-weight: 500;
    font-family: var(--heading-font);
}

@media (max-width: 991px) {
    .section-title p {
        font-size: 42px;
        padding: 0 60px;
    }
}

@media (max-width: 767px) {
    .section-title p {
        font-size: 36px;
        padding: 0 50px;
    }
}

@media (max-width: 575px) {
    .section-title p {
        font-size: 28px;
        padding: 0 40px;
    }

    .section-title p::before,
    .section-title p::after {
        width: 40px;
        height: 40px;
    }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}