/* ============================================
   HOMEPAGE - Modern Design
   ============================================ */

/* -- Variables -- */
:root {
	--hp-pink:       #D1167D;
	--hp-pink-light: #EE96AD;
	--hp-mauve:      #87456D;
	--hp-mauve-dark: #5C2D4A;
	--hp-bg-soft:    #FDF5F8;
	--hp-bg-pink:    #EEE2EA;
	--hp-text:       #2D2D2D;
	--hp-text-soft:  #6B5B63;
	--hp-white:      #ffffff;
	--hp-radius:     12px;
	--hp-shadow:     0 4px 20px rgba(135, 69, 109, 0.1);
	--hp-shadow-lg:  0 8px 40px rgba(135, 69, 109, 0.15);
	--hp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- Reset for homepage -- */
.hp {
	max-width: 100%;
	overflow: hidden;
	font-family: 'Open Sans', Arial, sans-serif;
	color: var(--hp-text);
	line-height: 1.6;
}

.hp *, .hp *::before, .hp *::after {
	box-sizing: border-box;
}

.hp a {
	font-family: 'Open Sans', Arial, sans-serif;
}

.hp-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* -- Fade-in animation -- */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hp-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
	padding: 60px 20px 80px;
	overflow: hidden;
}

.hp-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #F8E8EF 0%, #FADCE6 25%, #EEB4CB 50%, #D68EAE 75%, #B76B92 100%);
	z-index: 0;
}

.hp-hero-bg::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(209, 22, 125, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.hp-hero-bg::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(238, 150, 173, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.hp-hero-content {
	position: relative;
	z-index: 2;
	max-width: 520px;
	text-align: center;
}

.hp-hero-badge {
	display: inline-block;
	padding: 5px 18px;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	color: var(--hp-mauve-dark);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.hp-hero h1 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	color: var(--hp-mauve-dark);
	margin: 0 0 12px;
	line-height: 1.15;
}

.hp-hero h1 em {
	font-style: italic;
	color: var(--hp-pink);
}

.hp-hero-sub {
	font-size: clamp(19px, 2vw, 17px);
	color: var(--hp-text-soft);
	margin: 0 0 28px;
	font-weight: 300;
	line-height: 1.5;
}

.hp-hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.hp-hero-img {
	position: relative;
	z-index: 2;
	margin-left: 40px;
	flex-shrink: 0;
}

.hp-hero-img img {
	width: 280px;
	height: auto;
	border-radius: 16px;
	box-shadow: var(--hp-shadow-lg);
	border: 4px solid rgba(255, 255, 255, 0.6);
}

.hp-hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	z-index: 3;
	line-height: 0;
}

.hp-hero-wave svg {
	width: 100%;
	height: 60px;
}

/* -- Buttons -- */
.hp-btn {
	display: inline-block;
	padding: 13px 28px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--hp-transition);
	border: 2px solid transparent;
	letter-spacing: 0.3px;
}

.hp-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.hp-btn-primary {
	background: var(--hp-pink);
	color: var(--hp-white);
	border-color: var(--hp-pink);
	box-shadow: 0 4px 15px rgba(209, 22, 125, 0.3);
}

.hp-btn-primary:hover {
	background: var(--hp-mauve-dark);
	border-color: var(--hp-mauve-dark);
	box-shadow: 0 6px 20px rgba(92, 45, 74, 0.3);
	color: var(--hp-white);
}

.hp-btn-outline {
	background: transparent;
	color: var(--hp-mauve-dark);
	border-color: var(--hp-mauve-dark);
}

.hp-btn-outline:hover {
	background: var(--hp-mauve-dark);
	color: var(--hp-white);
}

.hp-btn-white {
	background: var(--hp-white);
	color: var(--hp-pink);
	border-color: var(--hp-white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hp-btn-white:hover {
	background: var(--hp-bg-soft);
	color: var(--hp-mauve-dark);
}

/* ============================================
   CATEGORIES
   ============================================ */
.hp-categories {
	padding: 50px 0 40px;
	background: var(--hp-white);
}

.hp-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(24px, 3.5vw, 34px);
	font-weight: 700;
	color: var(--hp-mauve-dark);
	text-align: center;
	margin: 0 0 6px;
}

.hp-section-sub {
	text-align: center;
	color: var(--hp-text-soft);
	font-size: 19px;
	font-weight: 300;
	margin: 0 0 35px;
}

.hp-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.hp-cat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--hp-radius);
	overflow: hidden;
	background: var(--hp-white);
	box-shadow: var(--hp-shadow);
	text-decoration: none;
	transition: all var(--hp-transition);
}

.hp-cat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hp-shadow-lg);
	text-decoration: none;
}

.hp-cat-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.hp-cat-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hp-cat-card:hover .hp-cat-img img {
	transform: scale(1.08);
}

.hp-cat-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: var(--hp-white);
}

.hp-cat-info h3 {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--hp-mauve-dark);
	font-family: 'Open Sans', Arial, sans-serif;
	line-height: 1.3;
}

.hp-cat-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--hp-bg-pink);
	color: var(--hp-pink);
	font-size: 16px;
	flex-shrink: 0;
	transition: all var(--hp-transition);
}

.hp-cat-card:hover .hp-cat-arrow {
	background: var(--hp-pink);
	color: var(--hp-white);
}

/* ============================================
   REASSURANCE
   ============================================ */
.hp-reassurance {
	padding: 40px 0;
	background: var(--hp-bg-soft);
}

.hp-reassu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hp-reassu-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--hp-white);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow);
	text-decoration: none;
	transition: all var(--hp-transition);
}

.hp-reassu-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hp-shadow-lg);
	text-decoration: none;
}

.hp-reassu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hp-bg-pink), var(--hp-bg-soft));
	color: var(--hp-pink);
	margin-bottom: 14px;
	transition: all var(--hp-transition);
}

.hp-reassu-card:hover .hp-reassu-icon {
	background: linear-gradient(135deg, var(--hp-pink-light), var(--hp-bg-pink));
	transform: scale(1.08);
}

.hp-reassu-card strong {
	font-size: 16px;
	color: var(--hp-mauve-dark);
	margin-bottom: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.hp-reassu-card span {
	font-size: 13px;
	color: var(--hp-text-soft);
	font-family: 'Open Sans', Arial, sans-serif;
}

/* ============================================
   BANNER CTA
   ============================================ */
.hp-banner {
	padding: 40px 0;
	background: var(--hp-white);
}

.hp-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 35px 40px;
	background: linear-gradient(135deg, var(--hp-mauve-dark), var(--hp-pink));
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(135, 69, 109, 0.25);
}

.hp-banner-text h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;
	color: var(--hp-white);
	margin: 0 0 6px;
}

.hp-banner-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	font-weight: 300;
}

/* ============================================
   SEO TEXT
   ============================================ */
.hp-seo {
	padding: 40px 0 50px;
	background: var(--hp-bg-soft);
}

.hp-seo-content {
	max-width: 740px;
	margin: 0 auto;
}

.hp-seo-content h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--hp-mauve-dark);
	margin: 0 0 16px;
}

.hp-seo-content p {
	font-size: 16px;
	color: var(--hp-text-soft);
	line-height: 1.7;
	margin: 0 0 12px;
	text-align: justify;
}

.hp-seo-content a {
	color: var(--hp-pink);
	text-decoration: none;
	font-size: 14px;
	transition: color var(--hp-transition);
}

.hp-seo-content a:hover {
	color: var(--hp-mauve-dark);
	text-decoration: underline;
}

.hp-seo-extra {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.hp-seo-extra.open {
	max-height: 800px;
}

.hp-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 8px 20px;
	background: var(--hp-white);
	border: 1px solid var(--hp-bg-pink);
	border-radius: 50px;
	color: var(--hp-mauve);
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	cursor: pointer;
	transition: all var(--hp-transition);
}

.hp-read-more:hover {
	background: var(--hp-bg-pink);
	border-color: var(--hp-pink-light);
	color: var(--hp-pink);
}

.hp-chevron {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.hp-chevron-up {
	transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media screen and (max-width: 768px) {
	.hp-hero {
		flex-direction: column;
		text-align: center;
		padding: 40px 20px 70px;
		min-height: auto;
	}

	.hp-hero-img {
		margin-left: 0;
		margin-top: 24px;
	}

	.hp-hero-img img {
		width: 220px;
	}

	.hp-cat-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.hp-reassu-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.hp-reassu-card {
		flex-direction: row;
		text-align: left;
		gap: 16px;
		padding: 20px 24px;
	}

	.hp-reassu-icon {
		margin-bottom: 0;
		width: 52px;
		height: 52px;
		flex-shrink: 0;
	}

	.hp-reassu-icon svg {
		width: 28px;
		height: 28px;
	}

	.hp-banner-inner {
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.hp-banner-text h2 {
		font-size: 20px;
	}

	.hp-categories {
		padding: 35px 0 30px;
	}

	.hp-reassurance {
		padding: 30px 0;
	}

	.hp-banner {
		padding: 30px 0;
	}

	.hp-seo {
		padding: 30px 0 40px;
	}
}

/* Mobile */
@media screen and (max-width: 480px) {
	.hp-hero {
		padding: 30px 16px 60px;
	}

	.hp-hero-badge {
		font-size: 11px;
		padding: 4px 14px;
	}

	.hp-hero-sub {
		font-size: 13px;
	}

	.hp-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.hp-btn {
		padding: 12px 24px;
		font-size: 13px;
		width: 100%;
		max-width: 260px;
		text-align: center;
	}

	.hp-hero-img img {
		width: 180px;
	}

	.hp-hero-wave svg {
		height: 40px;
	}

	.hp-cat-grid {
		gap: 10px;
	}

	.hp-cat-info {
		padding: 10px 12px;
	}

	.hp-cat-info h3 {
		font-size: 12px;
	}

	.hp-cat-arrow {
		width: 26px;
		height: 26px;
		font-size: 14px;
	}

	.hp-section-sub {
		font-size: 13px;
		margin-bottom: 24px;
	}

	.hp-reassu-card {
		padding: 16px 18px;
	}

	.hp-reassu-card strong {
		font-size: 14px;
	}

	.hp-reassu-card span {
		font-size: 12px;
	}

	.hp-banner-inner {
		padding: 24px 18px;
		border-radius: 12px;
	}

	.hp-banner-text h2 {
		font-size: 18px;
	}

	.hp-banner-text p {
		font-size: 13px;
	}

	.hp-seo-content h2 {
		font-size: 19px;
	}

	.hp-seo-content p {
		font-size: 13px;
	}

	.hp-container {
		padding: 0 14px;
	}
}
