/* Base Styles */
body {
	margin: 0;
	padding: 0;
	font-family: "Playfair Display", serif;
	background-color: #f5f2f2;
	color: #333;
	text-align: center;
}

/* Header */
header.hero {
	padding: 80px 20px 20px;
}

.names {
	font-size: 46px;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0;
}

.date {
	font-size: 18px;
	color: #555;
	margin-top: 8px;
}

.countdown {
	display: inline;
	font-size: 18px;
	color: #555;
	margin-top: 4px;
	font-family: "Playfair Display", serif;
}

/* Navigation */
.nav {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 40px;
}

.nav a {
	text-decoration: none;
	color: #444;
	font-weight: 500;
	position: relative;
	transition: color 0.3s;
}

.nav a:hover {
	color: #000;
}

.nav a::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #444;
	transition: width 0.3s;
	margin: 0 auto;
}

.nav a:hover::after {
	width: 50%;
}

/* Photo Section */
.photo img {
	width: 100%;
	max-width: 1000px;
	display: block;
	margin: 40px auto 60px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Event Section */
.event-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
	padding: 40px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.event-column {
	flex: 1 1 300px;
	text-align: center;
}

.event-column h2 {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.event-date {
	color: #666;
	font-size: 16px;
	margin-bottom: 10px;
}

.location {
	color: #444;
	font-size: 15px;
	line-height: 1.6;
}

/* Divider Lines */
.divider {
	border: none;
	border-top: 1px solid #ccc;
	width: 80%;
	margin: 20px auto;
}

/* Footer */
footer {
	background-color: #f1efef;
	padding: 20px;
	font-size: 14px;
	color: #666;
	border-top: 1px solid #ddd;
}

/* Responsive */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	margin: 20px auto 0;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background-color: #444;
	transition: all 0.3s;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav {
		flex-direction: column;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.nav.active {
		max-height: 400px;
	}

	.nav a {
		padding: 15px;
		border-bottom: 1px solid #e0e0e0;
		margin-top: 10px;
	}

	.nav a::after {
		display: none;
	}

	.event-container {
		flex-direction: column;
		gap: 40px;
		align-items: center;
	}

	.event-column {
		width: 100%;
		max-width: 400px;
	}

	.menu-toggle {
		display: flex;
		margin: 20px auto 0;
	}
	
	.photo img {
		margin-top: 10px;
	}
	
}