/* === Picsafrika — feuille de style === */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 300;
	color: #2b241d;
	background: #e8ddd0;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* === Typographie === */
h1, h2, h3, h4 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.1;
}
h1 { font-size: clamp(48px, 8vw, 96px); font-weight: 500; }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: 22px; }
h4 { font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }

.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 24px;
}
.eyebrow.dark { color: #b8825a; }

/* === Header === */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	padding: 24px 0;
	background: rgba(26, 26, 26, 0.2);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #fff;
}
.logo.light { color: #faf8f5; font-size: 32px; }
.nav { display: flex; gap: 36px; }
.nav a {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.nav a:hover { opacity: 1; }

/* === Hero === */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=2000&q=85') center/cover no-repeat;
	transform: scale(1.05);
	animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
	from { transform: scale(1.05); }
	to { transform: scale(1.15); }
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}
.hero h1 { margin-bottom: 28px; }
.hero-sub {
	font-size: clamp(16px, 1.6vw, 19px);
	font-weight: 300;
	max-width: 580px;
	margin-bottom: 40px;
	opacity: 0.92;
}
.scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	z-index: 2;
}
.scroll-hint::after {
	content: "";
	display: block;
	width: 1px;
	height: 40px;
	background: rgba(255,255,255,0.5);
	margin: 12px auto 0;
	animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%, 100% { transform: scaleY(1); opacity: 0.5; }
	50% { transform: scaleY(1.3); opacity: 1; }
}

/* === Boutons === */
.btn-outline, .btn-light {
	display: inline-block;
	padding: 16px 36px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn-outline {
	color: #fff;
	border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
	background: #fff;
	color: #1a1a1a;
}
.btn-light {
	background: #e8ddd0;
	color: #2b241d;
}
.btn-light:hover {
	background: #b8825a;
	color: #fff;
}

/* === Intro === */
.intro { padding: 140px 0; background: #d9c9b6; }
.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.intro h2 { margin-top: 8px; }
.intro-text p {
	font-size: 17px;
	margin-bottom: 20px;
	color: #5a4b3e;
}

/* === Gallery === */
.gallery { padding: 140px 0; background: #c9b69e; }
.gallery-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 72px;
}
.gallery-head h2 { margin-top: 8px; margin-bottom: 20px; }
.section-sub {
	color: #5a4b3e;
	font-size: 16px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 420px;
	gap: 16px;
}
.tile {
	position: relative;
	overflow: hidden;
	background: #eee;
	cursor: pointer;
}
.tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile figcaption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 40px 24px 20px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: italic;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
}
.tile:hover figcaption {
	opacity: 1;
	transform: translateY(0);
}

/* === CTA === */
.cta {
	background: #3d2f24;
	color: #e8ddd0;
	padding: 120px 0;
	text-align: center;
}
.cta h2 { margin-bottom: 16px; }
.cta p {
	color: rgba(232,221,208,0.75);
	margin-bottom: 40px;
	font-size: 17px;
}

/* === Footer === */
.site-footer {
	background: #2b2018;
	color: rgba(232,221,208,0.75);
	padding: 80px 0 32px;
	font-size: 14px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 64px;
}
.footer-tag {
	margin-top: 20px;
	color: rgba(232,221,208,0.55);
	font-size: 14px;
}
.site-footer h4 { color: #c89a6e; }
.site-footer p { margin-bottom: 8px; }
.site-footer a:hover { color: #c89a6e; }
.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid rgba(232,221,208,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: rgba(232,221,208,0.45);
	letter-spacing: 0.5px;
}
.footer-bottom a { color: rgba(232,221,208,0.65); }
.footer-bottom a:hover { color: #c89a6e; }

/* === Responsive === */
@media (max-width: 900px) {
	.container { padding: 0 20px; }
	.nav { gap: 20px; }
	.nav a { font-size: 11px; letter-spacing: 1px; }
	.intro { padding: 90px 0; }
	.intro-grid { grid-template-columns: 1fr; gap: 32px; }
	.gallery { padding: 30px 0 90px; }
	.grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 220px;
		gap: 10px;
	}
	.cta { padding: 80px 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
	.tile figcaption { opacity: 1; transform: none; font-size: 15px; padding: 30px 16px 14px; }
}
@media (max-width: 560px) {
	.nav { display: none; }
	.hero { min-height: 560px; }
	.footer-grid { grid-template-columns: 1fr; }
}
