/* ===================================================================================

* Theme Name: Turitor Child
* Theme URI: https://themeforest.net/user/tripples/portfolio
* Author: Tripples
* Author URI: http://themewinter.com
* Description: Turitor is a Education WordPress Theme.
* Version: 1.0.0
* Template: turitor
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

body {
    font-family: 'sc_yekanbakh', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'sc_yekanbakh', sans-serif !important;
}

/* RTL */
html[dir="rtl"] body {
    direction: rtl;
}
/* ============================================================================================== */
/* استایل کارت دوره کاشانه هنر */
.custom-course-card {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 10px; /* اگر گوشه گرد می‌خواهید */
    transition: all 0.3s ease-in-out;
}

/* لایه تاریک پیش‌فرض (گرادینت مشکی از پایین) */
.custom-course-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
    z-index: 5; /* لایه روی عکس */
    transition: all 0.4s ease;
}

/* حالت هاور: تبدیل به قرمز */
.custom-course-card:hover:before {
    background: rgba(176, 17, 22, 0.9) !important; /* قرمز */
}

/* کانتینر محتویات (متن‌ها) */
.custom-course-card .elementor-widget-wrap,
.custom-course-card .e-con-inner { 
    z-index: 10 !important; /* متن همیشه رو باشد */
    position: relative;
}

/* پنهان کردن متن‌ها در حالت عادی */
.custom-course-card .elementor-widget {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* نمایش متن‌ها در حالت هاور */
.custom-course-card:hover .elementor-widget {
    opacity: 1;
    transform: translateY(0);
}

/* سفید کردن اجباری تمام متون */
.custom-course-card h1, .custom-course-card h2, .custom-course-card h3,
.custom-course-card h4, .custom-course-card h5, .custom-course-card p,
.custom-course-card span, .custom-course-card a {
    color: #ffffff !important;
}
/*=======================================================================================================*/