/**
 * Two-Column Content Sections - Styles
 * 60% image / 40% text layout with alternating options
 * Version: 3.0.5
 */

/* ========================================
   Section Container
   ======================================== */
.content-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.content-section:nth-child(odd) {
	background: #f8f9fa;
}

.content-section:nth-child(even) {
	background: #fff;
}

/* ========================================
   Two-Column Grid (75/25 Split - Larger Image)
   ======================================== */
.content-section-row {
	display: flex;
	align-items: center;
	gap: 50px;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Image takes 75% */
.content-section-image {
	flex: 0 0 75%;
	max-width: 75%;
}

/* Text takes 25% */
.content-section-text {
	flex: 0 0 25%;
	max-width: 25%;
}

/* Reversed Layout (Image Right) */
.content-section-row.image-right {
	flex-direction: row-reverse;
}

/* ========================================
   Image Styling
   ======================================== */
.content-section-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.12);
	transition: all 0.4s ease;
}

.content-section-image img:hover {
	transform: scale(1.02);
	box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

/* ========================================
   Text Content Styling
   ======================================== */
.content-section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 20px;
	line-height: 1.3;
	position: relative;
}

.content-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
	border-radius: 2px;
}

.content-section-description {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-top: 25px;
	margin-bottom: 25px;
}

/* ========================================
   CTA Button
   ======================================== */
.content-section-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E91E63 0%, #d81557 100%);
	color: #fff;
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 6px 20px rgba(233,30,99,0.35);
	transition: all 0.3s ease;
}

.content-section-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(233,30,99,0.4);
	color: #fff;
}

.content-section-btn i {
	font-size: 14px;
}

/* ========================================
   Scroll Animation States
   ======================================== */
.content-section-image,
.content-section-text {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.animate-in .content-section-image {
	opacity: 1;
	transform: translateY(0);
}

.content-section.animate-in .content-section-text {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 992px) {
	.content-section {
		padding: 60px 0;
	}
	
	.content-section-row {
		gap: 30px;
	}
	
	.content-section-image {
		flex: 0 0 55%;
		max-width: 55%;
	}
	
	.content-section-text {
		flex: 0 0 45%;
		max-width: 45%;
	}
	
	.content-section-title {
		font-size: 1.6rem;
	}
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
	.content-section {
		padding: 50px 0;
	}
	
	.content-section-row,
	.content-section-row.image-right {
		flex-direction: column;
		gap: 30px;
	}
	
	.content-section-image,
	.content-section-text {
		flex: 1 1 100%;
		max-width: 100%;
	}
	
	.content-section-title {
		font-size: 1.5rem;
	}
	
	.content-section-title::after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.content-section-text {
		text-align: center;
	}
	
	.content-section-btn {
		display: flex;
		justify-content: center;
		margin: 0 auto;
	}
}
