/**
 * Pocket Rocketman Page Styles
 * Light background, premium editorial design
 * 
 * Color Palette:
 * - Backgrounds: #FFFFFF (white), #F5F3ED (cream), #FAFAF8 (base)
 * - Text: #1A1A1A (charcoal), #4A4A4A (grey)
 * - Accent: #B8941E (gold), #D4AF37 (bright gold)
 * - Borders: #C9C7BC to #E8E6DC (warm neutrals)
 * 
 * Typography:
 * - Headlines: Barlow Condensed Bold
 * - Body: Playfair Display Regular
 * - Buttons: Barlow Condensed SemiBold
 */

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */

.pocketrocketman-page {
	background: #FAFAF8;
	overflow-x: hidden;
}

.pocketrocketman-page * {
	box-sizing: border-box;
}

/* Container widths */
.prm-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 64px;
}

.prm-container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 64px;
}

.prm-centered {
	text-align: center;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.prm-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	background: 
		linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%),
		url('https://staging.azizulawang.com/wp-content/themes/azizul-v4-theme/assets/images/pocketrocketman/AZIZULHASNI-AWANG-hero-image.jpg') center/cover no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 64px 120px;
	border-bottom: 1px solid #D4AF37;
}

.prm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
	pointer-events: none;
}

.prm-hero-content {
	text-align: center;
	max-width: 900px;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: translateY(40px);
	animation: fadeInUp 1.2s ease forwards 0.3s;
}

.prm-hero-title {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-weight: 900;
	font-size: 96px;
	letter-spacing: 4px;
	margin: 0 0 24px 0;
	text-transform: uppercase;
	color: #FFFFFF;
	line-height: 1;
	text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.prm-hero-tagline {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.92);
	line-height: 1.4;
	margin: 0;
}

/* ============================================
   SECTION FOUNDATIONS
   ============================================ */

.prm-section {
	padding: 120px 0;
	background: #FFFFFF;
}

.prm-section.prm-fire-section,
.prm-section.prm-pulse-section {
	background: #F5F3ED;
}

.prm-section-title {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 64px 0;
	text-transform: capitalize;
	letter-spacing: 1px;
	line-height: 1.2;
	color: #1A1A1A;
	opacity: 0;
	transform: translateY(30px);
}

.prm-section-title.prm-animate {
	animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   SECTION 2: WHY THE NAME MATTERS
   ============================================ */

.prm-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.prm-two-col-text {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	line-height: 1.8;
	color: #1A1A1A;
	opacity: 0;
	transform: translateY(30px);
}

.prm-two-col-text.prm-animate {
	animation: fadeInUp 0.8s ease forwards 0.2s;
}

.prm-two-col-text p {
	margin: 0 0 24px 0;
}

.prm-two-col-text p:last-child {
	margin-bottom: 0;
}

.prm-two-col-text strong {
	color: #B8941E;
	font-weight: 400;
}

.prm-portrait-frame {
	position: relative;
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(204,0,0,0.05) 100%);
	border: 2px solid #E8E6DC;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	opacity: 0;
	transform: translateY(30px);
}

.prm-portrait-frame.prm-animate {
	animation: fadeInUp 0.8s ease forwards 0.4s;
}

.prm-portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* ============================================
   SECTION 3: BUILT THROUGH FIRE
   ============================================ */

.prm-grid-6 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.prm-moment-card {
	position: relative;
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #E8E6DC 0%, #D9D7CC 100%);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #C9C7BC;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	opacity: 0;
	transform: translateY(30px);
}

.prm-moment-card.prm-animate {
	animation: fadeInUp 0.6s ease forwards;
}

.prm-moment-card:nth-child(1) { animation-delay: 0.1s; }
.prm-moment-card:nth-child(2) { animation-delay: 0.2s; }
.prm-moment-card:nth-child(3) { animation-delay: 0.3s; }
.prm-moment-card:nth-child(4) { animation-delay: 0.4s; }
.prm-moment-card:nth-child(5) { animation-delay: 0.5s; }
.prm-moment-card:nth-child(6) { animation-delay: 0.6s; }

.prm-moment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.prm-moment-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.prm-moment-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.9) 100%);
	z-index: 1;
}

.prm-moment-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 2;
}

.prm-moment-year {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #B8941E;
	letter-spacing: 1px;
	margin: 0 0 8px 0;
	text-transform: uppercase;
}

.prm-moment-title {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1A1A1A;
	line-height: 1.3;
	margin: 0 0 6px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.prm-moment-desc {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	color: #4A4A4A;
	line-height: 1.5;
	margin: 0;
}

/* ============================================
   SECTION 4: BEYOND THE RIDER
   ============================================ */

.prm-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-top: 40px;
}

.prm-pillar-card {
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
}

.prm-pillar-card.prm-animate {
	animation: fadeInUp 0.8s ease forwards;
}

.prm-pillar-card:nth-child(1) { animation-delay: 0.1s; }
.prm-pillar-card:nth-child(2) { animation-delay: 0.3s; }
.prm-pillar-card:nth-child(3) { animation-delay: 0.5s; }

.prm-pillar-image {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #E8E6DC 0%, #D9D7CC 100%);
	border-radius: 8px;
	margin: 0 0 24px 0;
	border: 1px solid #C9C7BC;
	overflow: hidden;
}

.prm-pillar-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(0.2);
	transition: filter 0.3s ease;
}

.prm-pillar-card:hover .prm-pillar-image img {
	filter: grayscale(0);
}

.prm-pillar-title {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 16px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.prm-pillar-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #4A4A4A;
	text-align: left;
}

.prm-pillar-text p {
	margin: 0;
}

/* ============================================
   SECTION 5: THE PULSE
   ============================================ */

.prm-pulse-container {
	opacity: 0;
	transform: translateY(30px);
}

.prm-pulse-container.prm-animate {
	animation: fadeInUp 0.8s ease forwards 0.2s;
}

.prm-pulse-poster {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
	border-radius: 12px;
	margin: 0 0 32px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #D4AF37;
	overflow: hidden;
	position: relative;
}

.prm-pulse-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.prm-pulse-title {
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 16px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.prm-pulse-tagline {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 18px;
	line-height: 1.7;
	color: #4A4A4A;
	margin: 0 0 32px 0;
}

.prm-pulse-tagline p {
	margin: 0 0 16px 0;
}

.prm-pulse-tagline p:last-child {
	margin-bottom: 0;
}

/* ============================================
   SECTION 6: FINAL CTA
   ============================================ */

.prm-final-cta {
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
}

.prm-final-cta.prm-animate {
	animation: fadeInUp 0.8s ease forwards 0.2s;
}

.prm-final-text {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 18px;
	line-height: 1.7;
	color: #4A4A4A;
	margin: 0 0 32px 0;
}

.prm-button-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.prm-cta-button {
	display: inline-block;
	font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 40px;
	background: #1A1A1A;
	color: #FFFFFF;
	border: 2px solid #1A1A1A;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.prm-cta-button:hover {
	background: #B8941E;
	border-color: #B8941E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(184,148,30,0.3);
	color: #FFFFFF;
}

.prm-cta-button.prm-cta-secondary {
	background: transparent;
	color: #1A1A1A;
	border: 2px solid #1A1A1A;
}

.prm-cta-button.prm-cta-secondary:hover {
	background: #1A1A1A;
	color: #FFFFFF;
	border-color: #1A1A1A;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */

@media (max-width: 1024px) {
	.prm-container,
	.prm-container-narrow {
		padding: 0 32px;
	}
	
	.prm-hero {
		padding: 0 32px 80px;
	}
	
	.prm-hero-title {
		font-size: 64px;
	}
	
	.prm-hero-tagline {
		font-size: 22px;
	}
	
	.prm-section {
		padding: 80px 0;
	}
	
	.prm-section-title {
		font-size: 32px;
		margin-bottom: 48px;
	}
	
	.prm-two-col {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.prm-grid-6 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.prm-grid-3 {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.prm-button-group {
		flex-direction: column;
		align-items: center;
	}
	
	.prm-cta-button {
		min-width: 200px;
	}
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */

@media (max-width: 640px) {
	.prm-container,
	.prm-container-narrow {
		padding: 0 24px;
	}
	
	.prm-hero {
		padding: 0 24px 60px;
		min-height: 500px;
	}
	
	.prm-hero-title {
		font-size: 48px;
		letter-spacing: 2px;
	}
	
	.prm-hero-tagline {
		font-size: 18px;
	}
	
	.prm-section {
		padding: 60px 0;
	}
	
	.prm-section-title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	
	.prm-two-col-text {
		font-size: 18px;
	}
	
	.prm-grid-6 {
		grid-template-columns: 1fr;
	}
	
	.prm-pulse-title {
		font-size: 24px;
	}
	
	.prm-pulse-tagline {
		font-size: 16px;
	}
	
	.prm-final-text {
		font-size: 16px;
	}
	
	.prm-cta-button {
		width: 100%;
		max-width: 300px;
	}
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
	.prm-hero {
		height: auto;
		padding: 40px 20px;
	}
	
	.prm-section {
		padding: 40px 20px;
		page-break-inside: avoid;
	}
	
	.prm-moment-card,
	.prm-pillar-card {
		page-break-inside: avoid;
	}
	
	.prm-cta-button {
		display: none;
	}
}