:root {
	--gold: #b8926a;
	--dark: #1a1a1a;
	--light: #ffffff;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--dark);
	text-align: center;
	background: #fdfdfd;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/hero-wedding.webp') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: white;
}

.hero h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2rem, 8vw, 4rem);
	letter-spacing: 5px;
}

/* Galerie LOVE */
.save-the-date { padding: 80px 20px; }
.date { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 50px; }

.love-gallery {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}

.photo-card {
	width: 150px;
	height: 220px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.photo-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.photo-card span {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem; color: white; font-family: 'Playfair Display', serif;
}

/* Compte à rebours */
.countdown-section {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/countdown.webp)') center/cover;
	padding: 100px 20px;
	color: white;
}

.countdown-container {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.time-block span { font-size: 3rem; display: block; font-weight: bold; }
.time-block p { font-size: 0.7rem; letter-spacing: 2px; }

/* Programme */
.itinerary { padding: 80px 20px; }
.event { margin-bottom: 60px; }
.time { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold); }
.map-btn {
	margin-top: 15px;
	padding: 10px 25px;
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	cursor: pointer;
	transition: 0.3s;
}
.map-btn:hover { background: var(--gold); color: white; }

/* Mobile */
@media (max-width: 600px) {
	.love-gallery { flex-wrap: wrap; }
	.photo-card { width: 45%; height: 180px; }
	.countdown-container { gap: 15px; }
}