/*
Theme Name: Hello Elementor Child
Theme URI: http://yourwebsite.com
Description: Child theme of Hello Elementor
Author: Your Name
Author URI: http://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* =============================
   1️⃣ رفع ستايل الثيم الأصلي
============================= */
@import url("../hello-elementor/style.css");

/* تدرج أسود على الصور */
.img-black {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img-black::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0)) !important;
    pointer-events: none;
}


