/**
 * Custom Hero Section Widget Styles
 * 
 * @package OMSAR
 */

/* Hero Section */
.omsar-hero-section {
	position: relative;
	width: 100%;
	min-height: 500px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

/* Full Width Layout - Edge to Edge */
.omsar-hero-full-width {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	max-width: 100vw;
	border-radius: 0;
}

/* Contained Layout - With Padding */
.omsar-hero-contained {
	width: 100%;
	max-width: 100%;
}

/* Hero Content */
.omsar-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
	text-align: center;
}

/* Hero Title */
.omsar-hero-title {
	margin: 0 0 20px 0;
	color: #ffffff;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	text-align: inherit;
}

/* Hero Description */
.omsar-hero-description {
	margin: 0 0 30px 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	text-align: inherit;
}

/* Hero Buttons Container */
.omsar-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

/* Hero Button Base Styles */
.omsar-hero-button {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-align: center;
	line-height: 1.5;
}

.omsar-hero-button:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.omsar-hero-button:active {
	transform: translateY(0);
}

/* Primary Button */
.omsar-hero-button.button-primary {
	background-color: #ffffff;
	color: #0ea5e9;
}

.omsar-hero-button.button-primary:hover {
	background-color: #f0f9ff;
	color: #0284c7;
}

/* Secondary Button */
.omsar-hero-button.button-secondary {
	background-color: #c084fc;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.omsar-hero-button.button-secondary:hover {
	background-color: #a855f7;
	border-color: #ffffff;
}

/* Outline Button */
.omsar-hero-button.button-outline {
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.omsar-hero-button.button-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.omsar-hero-section {
		min-height: 400px;
	}

	.omsar-hero-content {
		padding: 60px 20px;
	}

	.omsar-hero-title {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.omsar-hero-description {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.omsar-hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.omsar-hero-button {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.omsar-hero-section {
		min-height: 350px;
	}

	.omsar-hero-content {
		padding: 40px 15px;
	}

	.omsar-hero-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.omsar-hero-description {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.omsar-hero-button {
		padding: 12px 24px;
		font-size: 14px;
	}
}

/* Elementor Editor Styles */
.elementor-editor-active .omsar-hero-section {
	pointer-events: auto;
}

.elementor-editor-active .omsar-hero-button {
	pointer-events: auto;
}

