:root {
	--primary-teal: #00AA9B;
	--dark-navy: #172333;
	--soft-gray: #F8F9FA;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--soft-gray);
	color: var(--dark-navy);
	line-height: 1.8;
}

/* HERO */
.profile-hero {
	height: 70vh;
	background:
		linear-gradient(135deg,
			rgba(0, 162, 214, 0.85),
			rgba(52, 204, 103, 0.85)),
		url('../../image/Bg.jpeg') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	border-radius: 0 0 60px 60px;
}

/* TARUH DI SINI ⬇️ */

/* HERO TITLE BESAR */
.profile-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
}

/* HERO DESKRIPSI LEBIH KECIL */
.profile-hero p {
	font-size: clamp(0.9rem, 1.4vw, 1.1rem);
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.5;
	opacity: 0.9;
}

.profile-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 1px;
	margin-bottom: 15px;
}


/* CARD */
.content-card {
	background: #fff;
	border-radius: 24px;
	padding: clamp(25px, 4vw, 50px);
	margin-top: clamp(-90px, -10vw, -150px);
	margin-bottom: 60px;
	box-shadow: 0 20px 60px rgba(0,170,155,0.15);
	position: relative;
	z-index: 3;
}

/* SECTION TITLE */
.section-title {
	font-weight: 800;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.section-title::after {
	content: '';
	width: 50px;
	height: 4px;
	background: var(--primary-teal);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}

/* VISION */
.vision-box {
	background: #f0fdfa;
	padding: 35px;
	border-radius: 20px;
	border-left: 5px solid var(--primary-teal);
}

/* TABLE */
.table th {
	width: 35%;
	background: #f8f9fa;
	color: #666;
	font-weight: 600;
}

/* PENGURUS */
.pengurus-card {
	background: #f8f9fa;
	border-radius: 20px;
	padding: 25px;
	border: 1px solid #eee;
}

.pengurus-card i {
	font-size: 55px;
	color: var(--primary-teal);
}

/* ===============================
   TABLET (≤ 992px)
================================= */
@media (max-width: 992px) {

	.profile-hero {
		height: auto;
		padding: 80px 30px;
		border-radius: 0 0 35px 35px;
	}

	.profile-hero h1 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.profile-hero p {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.content-card {
		margin-top: 0; /* HAPUS overlap */
		padding: 35px 30px;
		border-radius: 20px;
	}

	.section-title {
		font-size: 1.25rem;
	}

	body {
		line-height: 1.6;
	}
}


/* ===============================
   MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {

	body {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.profile-hero {
		height: auto;
		padding: 70px 20px 50px;
		border-radius: 0 0 25px 25px;
	}

	.profile-badge {
		font-size: 0.65rem;
		padding: 6px 14px;
	}

	.profile-hero h1 {
		font-size: 1.6rem;
		line-height: 1.2;
	}

	.profile-hero p {
		font-size: 0.85rem;
		line-height: 1.4;
		margin-bottom: 0;
	}

	.content-card {
		margin-top: -70px; /* no overlap */
		padding: 25px 18px;
		border-radius: 18px;
	}

	.section-title {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}

	.section-title::after {
		width: 35px;
		height: 3px;
	}

	.vision-box {
		padding: 16px;
		font-size: 0.85rem;
		border-radius: 14px;
	}

	.table th,
	.table td {
		font-size: 0.8rem;
		padding: 6px;
	}

	.pengurus-card {
		padding: 15px;
		border-radius: 14px;
	}

	.pengurus-card i {
		font-size: 35px;
	}
}

/* FORCE HERO SIZE FIX */
.hero-title {
	font-size: clamp(1.6rem, 4vw, 3rem) !important;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 15px;
}

.hero-desc {
	font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
	line-height: 1.35;
	max-width: 550px;
	margin: 0 auto;
	opacity: 0.9;
}

/* Hilangkan height tetap biar nggak ilusi gede */
.profile-hero {
	min-height: auto !important;
	height: auto !important;
	padding: 90px 20px 120px;
}
