/* ==========================================================================
   ALSHEHBA WEBSITE CUSTOM FIXES & OPTIMIZATIONS
   ========================================================================== */

/* 1. Fix text/image overlapping and prevent background image duplication */
section, .section-wrapper, .page-block {
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Ensure text stays readable ABOVE images at all times */
.text-container, .hero-content, .heading-wrapper, p, h1, h2, h3 {
    position: relative !important;
    z-index: 5 !important;
}

/* Responsive edge padding for mobile screens */
@media (max-width: 768px) {
    body, section, .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    img, .image-wrapper {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 15px;
    }
}

/* 2. Style and preserve the specific Arabic company name layout */
.arabic-brand-title, footer .arabic-text {
    font-family: "Scheherazade New", "Amiri", "Traditional Arabic", serif !important;
    direction: rtl !important;
    unicode-bidi: isolate;
    letter-spacing: normal !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: inline-block;
}

/* 3. Footer logo scaling and clickable layout alignment */
footer .footer-logo-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

footer .footer-logo-link:hover {
    transform: scale(1.02);
}

footer .footer-logo-img {
    height: 40px !important;
    width: auto !important;
}
