/**
 * Couple Styles
 * Styles for couple intro and couple story sections
 */

/* Couple Intro Section */
.couple-intro {
	background-color: rgba(212, 176, 140, 0.1); /* Light version of primary color */
	padding: 100px 0;
}

.couple-intro-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 80px;
	margin-top: 40px;
}

.person-card {
	flex: 1;
	max-width: 350px;
	min-width: 280px;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	background-color: var(--secondary-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.person-card:hover {
	transform: translateY(-10px);
}

.person-image {
	width: 200px;
	height: 300px;
	margin: 0 auto 25px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portrait-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 5%; /* Adjust this value to shift the focus up/down */
}

.person-name {
	font-family: 'Dancing Script', cursive;
	font-size: 2.2rem;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.person-title {
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--dark-color);
	margin-bottom: 20px;
	opacity: 0.8;
}

.person-desc {
	line-height: 1.8;
	color: var(--dark-color);
	font-size: 0.95rem;
}

/* Couple Section (Love Story) */
.couple {
	background-color: var(--secondary-color);
}

.couple-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.couple-text {
	flex: 1;
	min-width: 300px;
	text-align: justify;
}

.couple-image {
	flex: 1;
	min-width: 300px;
	height: 400px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.couple-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.couple-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(212, 176, 140, 0.2);
	z-index: 1;
	pointer-events: none;
}

.couple-image:hover img {
	transform: scale(1.05);
}

.couple h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	font-family: 'Dancing Script', cursive;
	color: var(--primary-color);
}

.couple p {
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
	.couple-intro-container {
		gap: 40px;
	}
	
	.person-image {
		width: 180px;
		height: 270px;
	}
	
	.person-name {
		font-size: 2rem;
	}
	
	.couple-content {
		flex-direction: column;
	}
	
	.couple-image {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.person-image {
		width: 160px;
		height: 240px;
	}
}
