/**
 * Fennaver Elementor Widgets - Frontend Styles
 * Version: 1.0.0
 */

/* ========================================
   Course Card Widget
   ======================================== */
.fennaver-courses-wrapper {
	margin: 0 -15px;
}

.fennaver-course-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fennaver-course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fennaver-course-thumb {
	position: relative;
	overflow: hidden;
}

.fennaver-course-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.fennaver-course-card:hover .fennaver-course-thumb img {
	transform: scale(1.05);
}

.fennaver-course-price {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #FF6B35;
	color: #fff;
	padding: 8px 15px;
	border-radius: 5px;
	font-weight: 600;
}

.fennaver-course-content {
	padding: 25px;
}

.fennaver-course-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.4;
}

.fennaver-course-title a {
	color: #2D3748;
	text-decoration: none;
	transition: color 0.3s ease;
}

.fennaver-course-title a:hover {
	color: #FF6B35;
}

.fennaver-course-excerpt {
	color: #718096;
	margin-bottom: 15px;
	line-height: 1.6;
}

.fennaver-course-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 14px;
	color: #A0AEC0;
}

.fennaver-course-meta i {
	margin-right: 5px;
}

.fennaver-course-footer {
	padding-top: 15px;
	border-top: 1px solid #E2E8F0;
}

.fennaver-btn-enroll,
.fennaver-btn-details {
	display: inline-block;
	padding: 10px 25px;
	background: #FF6B35;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.fennaver-btn-enroll:hover,
.fennaver-btn-details:hover {
	background: #E55A2B;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.fennaver-no-courses {
	text-align: center;
	padding: 40px;
	color: #718096;
}

/* ========================================
   Hero Section Widget
   ======================================== */
.hero-section {
	padding: 100px 0;
	text-align: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.hero-section h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-section p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.btn-hero {
	display: inline-block;
	padding: 15px 40px;
	background: #fff;
	color: #667eea;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   Counter Widget
   ======================================== */
.counter-box {
	text-align: center;
	padding: 30px;
}

.counter-box i {
	font-size: 48px;
	color: #FF6B35;
	margin-bottom: 15px;
}

.counter-number {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #2D3748;
	margin-bottom: 10px;
}

.counter-box h4 {
	font-size: 18px;
	color: #718096;
}

/* ========================================
   CTA Section Widget
   ======================================== */
.cta-section {
	text-align: center;
	padding: 60px 30px;
	background: #F7FAFC;
	border-radius: 10px;
}

.cta-section h2 {
	font-size: 36px;
	margin-bottom: 15px;
}

.cta-section p {
	font-size: 18px;
	color: #718096;
	margin-bottom: 30px;
}

.btn-cta {
	display: inline-block;
	padding: 15px 40px;
	background: #FF6B35;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background: #E55A2B;
	transform: translateY(-3px);
}

/* ========================================
   Feature Box Widget
   ======================================== */
.feature-box {
	text-align: center;
	padding: 30px;
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: #F7FAFC;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon i {
	font-size: 36px;
	color: #FF6B35;
}

.feature-box h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.feature-box p {
	color: #718096;
	line-height: 1.6;
}

/* ========================================
   Marquee Widget
   ======================================== */
.marquee-wrapper {
	overflow: hidden;
	background: #2D3748;
	color: #fff;
	padding: 15px 0;
}

.marquee {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 20s linear infinite;
	white-space: nowrap;
}

@keyframes marquee {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}

/* ========================================
   Pricing Table Widget
   ======================================== */
.pricing-table {
	text-align: center;
	padding: 40px 30px;
	background: #fff;
	border: 2px solid #E2E8F0;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.pricing-table:hover {
	border-color: #FF6B35;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-table h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.pricing-table .price {
	font-size: 42px;
	font-weight: 700;
	color: #FF6B35;
	margin-bottom: 20px;
}

.pricing-table ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-table ul li {
	padding: 10px 0;
	border-bottom: 1px solid #E2E8F0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 32px;
	}

	.fennaver-course-title {
		font-size: 18px;
	}

	.counter-number {
		font-size: 32px;
	}
}
