/*
* Bislamic "Apple Official" Style
* Clean, Premium, Human.
*/

/* Variables & Apple Theme Engine
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
	/* Colors - Apple Dark Mode */
	--bg-body: #000000;

	/* Platter Glass (iOS Style) */
	--glass-surface: rgba(30, 30, 30, 0.65);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-highlight: rgba(255, 255, 255, 0.1);

	/* Text */
	--text-primary: #F5F5F7;
	/* Apple Off-White */
	--text-secondary: #86868B;
	/* Apple Grey */

	/* Layout */
	--max-width: 440px;
	/* iPhone Pro Max width */
	--radius-l: 38px;
	/* Continuous Curvature */
	--radius-m: 22px;

	/* Physics */
	--ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
	/* iOS Spring */

	/* Fonts */
	--font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
}

/* Base Reset
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-stack);
	background: var(--bg-body);
	color: var(--text-primary);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

/* Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Apple Profile Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.profile-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 20px;
}

.avatar {
	width: 108px;
	height: 108px;
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	/* Subtle transition */
	transition: transform 0.4s var(--ease-apple);
}

.avatar:hover {
	transform: scale(1.05);
	/* Gentle hover */
}

h1 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.005em;
	margin: 0 0 6px 0;
	/* Apple Gradient Text */
	background: linear-gradient(135deg, #FFFFFF 0%, #A5A5A5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h4 {
	font-size: 13px;
	font-weight: 600;
	color: #0071e3;
	/* Classic Apple Blue */
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

.profile-card p {
	font-size: 17px;
	color: var(--text-secondary);
	margin-top: 8px;
	line-height: 1.4;
	max-width: 80%;
}

/* Bento Grid System
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

/* iOS Widget Card
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button {
	position: relative;
	display: flex;
	text-decoration: none;
	color: var(--text-primary);
	border-radius: var(--radius-m);
	overflow: hidden;

	/* Platter Material */
	background: var(--glass-surface);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid var(--glass-border);

	grid-column: span 2;
	min-height: 72px;
	align-items: center;
	padding: 0 20px;

	transition: transform 0.4s var(--ease-apple), background 0.2s ease;
	transform: scale(1);
}

/* Apple Touch Interaction */
.button:hover {
	transform: scale(1.02);
	background: rgba(45, 45, 45, 0.7);
	/* Slightly lighter */
}

.button:active {
	transform: scale(0.96);
	/* Deep press */
}

/* Card Content
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button>* {
	position: relative;
	z-index: 2;
}

.icon {
	width: 26px;
	height: 26px;
	margin-right: 14px;
	/* Uniform Icons (Monochrome Optional) */
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.text {
	display: flex;
	flex-direction: column;
}

.title {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.desc {
	font-size: 13px;
	color: var(--text-secondary);
	margin-top: 2px;
}

/* Card Variants (Bento)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card--square {
	grid-column: span 1;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 18px;
	min-height: 150px;
	/* Standard Widget Size */
}

.card--square .icon {
	width: 38px;
	height: 38px;
	margin: 0;
	margin-bottom: auto;
	/* Push icon top */
}

.card--square .title {
	font-size: 15px;
	margin-top: 8px;
}

.card--image {
	grid-column: span 2;
	min-height: 240px;
	align-items: flex-end;
	background-size: cover !important;
	border: none;
}

.card--image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 4px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Refined Brand Colors (Subtle Tints)
   Apple style usually keeps things uniform, but we can do subtle tinting */

.button-instagram {
	background: rgba(30, 30, 35, 0.65);
}

.button-whatsapp {
	background: rgba(30, 35, 30, 0.65);
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
	text-align: center;
	margin-top: 40px;
	padding-bottom: 40px;
	font-size: 12px;
	color: #424245;
}

footer a {
	color: inherit;
	text-decoration: none;
}