/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Playfair Display', serif;
	overflow-x: hidden;
	background: hsl(40 39% 91%);
}

/* Intro Screen */
#intro-wrapper {
	position: fixed;
	inset: 0;
	background: #f8f6f2;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.8s ease;
}

/* Envelope */
.envelope {
	position: relative;
	width: 100%;
	height: 100%;
	background: #f3efe8;
	border-radius: 8px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.6s ease;
	perspective: 1000px;
}

/* Flap */
.flap {
	position: absolute;
	top: 0;
	width: 100%;
	height: 50%;
	background: #ebe6dc;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	transform-origin: top;
	transition: transform 0.8s ease;
}

/* Wax Seal */
.seal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.seal img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Envelope open animation */
.envelope.open .flap {
	transform: rotateX(180deg);
}

/* Hide intro */
#intro-wrapper.fade-out {
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

/* Main content */
#main-content {
	position: relative;
	width: 100%;
	height: 830px;
	overflow: hidden;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
}

/* Background video */
#bg-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* Overlay for readability */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* Names wrapper */
.names-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	height: 100%;
	text-align: center;
}

/* Intro paragraph */
.intro-text {
	font-family: 'Lora', serif;
	font-size: 1.5rem;
	color: #fff;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s forwards;
	animation-delay: 0.1s;
}

/* Names */
.names {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.names h1 {
	font-family: 'Great Vibes', cursive;
	font-size: 6rem;
	font-weight: 700;
	opacity: 0;
	transform: translateY(-30px);
	animation: fadeInUp 1.5s forwards;
}

.groom-name {
	animation-delay: 0.3s;
}
.amp {
	animation-delay: 0.8s;
	color: #ffd700;
} /* yellow & */
.bride-name {
	animation-delay: 1.2s;
}
.decorative-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 30px 0 0 0;
	opacity: 0;
	animation: fadeInUp 1.5s forwards;
	animation-delay: 1.5s;
}
.decorative-divider .line {
	height: 1px;
	width: 80px;
	background: rgba(255, 255, 255, 0.5);
}
.decorative-divider .star {
	color: #ffd700; /* gold color */
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.decorative-divider-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 30px 0 0 0;
	opacity: 0;
	animation: fadeInUp 1.5s forwards;
	animation-delay: 1.5s;
}
.decorative-divider-1 .line {
	height: 1px;
	width: 80px;
	background: hsl(60 12% 75%);
}
.decorative-divider-1 .star {
	color: hsl(100deg 15% 24% / 50%); /* gold color */
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ================== */
/* COUNTDOWN SECTION  */
/* ================== */
.countdown-section {
	text-align: center;
	padding: 80px 20px;
	position: relative;
	z-index: 2;
	color: #fff;
	background: #000; /* solid background */
}

.countdown-section h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 3rem;
	margin-bottom: 10px;
}

.countdown-section p {
	font-family: 'Lora', serif;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.2rem;
	margin-bottom: 40px;
}

/* ONE ROW LAYOUT (desktop default) */
.countdown-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: nowrap; /* keeps row on desktop */
}

.countdown-box {
	background: rgba(255, 255, 255, 0.1);
	padding: 30px 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	min-width: 200px;
	height: 144px;
	text-align: center;
	backdrop-filter: blur(8px);
}

.countdown-number {
	display: block;
	font-family: 'Great Vibes', cursive;
	font-size: 3rem;
}

.countdown-label {
	display: block;
	margin-top: 8px;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive countdown: keep desktop unchanged, adjust gracefully */
@media (max-width: 1024px) {
	.countdown-grid {
		gap: 20px; /* reduce gap */
	}
	.countdown-box {
		min-width: 170px; /* slightly shrink */
		padding: 25px 15px;
	}
	.countdown-number {
		font-size: 2.5rem;
	}
}

@media (max-width: 820px) {
	/* tablet portrait: switch to wrap, but still row if space */
	.countdown-grid {
		flex-wrap: wrap;
		gap: 25px;
	}
	.countdown-box {
		min-width: 180px; /* comfortable size for two per row if needed */
		flex: 0 1 auto;
	}
}

@media (max-width: 600px) {
	.countdown-section {
		padding: 60px 15px;
	}
	.countdown-grid {
		gap: 20px;
	}
	.countdown-box {
		min-width: 140px; /* smaller, but still readable */
		padding: 20px 10px;
		height: auto;
	}
	.countdown-number {
		font-size: 2.2rem;
	}
	.countdown-label {
		font-size: 0.7rem;
	}
}

@media (max-width: 480px) {
	.countdown-grid {
		gap: 12px; /* tight gap */
	}
	.countdown-box {
		min-width: 120px; /* maintain four boxes in one row on small phones */
		padding: 15px 5px;
	}
	.countdown-number {
		font-size: 1.8rem;
	}
	.countdown-label {
		font-size: 0.65rem;
		letter-spacing: 0.1em;
	}
}

/* tiny screens (<=380px) — keep row but shrink further */
@media (max-width: 380px) {
	.countdown-box {
		min-width: 100px;
		padding: 12px 3px;
	}
	.countdown-number {
		font-size: 1.5rem;
	}
	.countdown-label {
		font-size: 0.6rem;
	}
}

/* Section Styling (details) - unchanged */
.details-section {
	background: hsl(40 39% 91%);
	padding: 100px 20px;
}

.details-container {
	max-width: 900px;
	margin: 0 auto;
}

/* Header */
.details-header {
	text-align: center;
	margin-bottom: 60px;
}

.details-header img {
	width: 300px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.2s;
	opacity: 0;
	transform: translateY(20px);
	filter: drop-shadow(0 5px 10px rgba(79, 93, 79, 0.3));
	transition: transform 0.3s ease;
}
.details-illustration {
	width: 180px;
	margin-bottom: 20px;
}

.details-title {
	font-family: 'Great Vibes', cursive;
	font-size: 48px;
	color: #4f5d4f;
	margin-bottom: 10px;
}

.details-subtitle {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	letter-spacing: 1px;
}

/* Card */
.details-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Circle */
.icon-circle {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(79, 93, 79, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}

/* Titles */
.location-title {
	font-family: 'Lora', serif;
	font-size: 26px;
	margin-bottom: 20px;
	color: #4f5d4f;
}

.venue-name {
	font-size: 22px;
	font-weight: 500;
	color: #4f5d4f;
}

.time {
	margin-top: 10px;
	color: rgba(79, 93, 79, 0.7);
	font-family: 'Lora', serif;
}

/* Image */
.venue-image {
	margin: 30px 0;
	overflow: hidden;
	border-radius: 12px;
}

.venue-image img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.venue-image:hover img {
	transform: scale(1.05);
}

/* Map */
.map-container iframe {
	width: 100%;
	height: 220px;
	border: none;
	border-radius: 12px;
	margin-bottom: 30px;
}

/* Buttons */
.details-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.btn-outline {
	padding: 10px 20px;
	border: 1px solid #4f5d4f;
	border-radius: 30px;
	text-decoration: none;
	font-family: 'Lora', serif;
	color: #4f5d4f;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: #4f5d4f;
	color: white;
}

/* Responsive for details (original) */
@media (max-width: 768px) {
	.details-title {
		font-size: 36px;
	}

	.venue-image img {
		height: 220px;
	}

	.details-card {
		padding: 30px 20px;
	}
}

/* Fade in animation */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Additional content */
.content {
	position: relative;
	z-index: 2;
	margin-top: 50px;
	max-width: 700px;
	font-size: 1.2rem;
	line-height: 1.6;
}

/* Responsive from original (names) */
@media (max-width: 768px) {
	.intro-text {
		font-size: 1.2rem;
	}
	.names h1 {
		font-size: 3rem;
	}
	.content {
		font-size: 1rem;
		margin-top: 30px;
		padding: 0 20px;
	}
	.envelope {
		width: 250px;
		height: 350px;
	}
}
@media (max-width: 480px) {
	.intro-text {
		font-size: 1rem;
	}
	.names h1 {
		font-size: 2.2rem;
	}
	.content {
		font-size: 0.9rem;
	}
	.envelope {
		width: 200px;
		height: 300px;
	}
}
/* Program Section Styles */
.section-padding {
	background: hsl(40 39% 91%);
	padding: 80px 20px;
}

.program-container {
	max-width: 1024px;
	margin: 0 auto;
}

/* Header Styles */
.program-header {
	text-align: center;
	margin-bottom: 64px;
	opacity: 1;
	transform: none;
}

.program-header img {
	width: 100%;
	max-width: 672px;
	margin: 0 auto 32px;
	display: block;
}

.program-header h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 36px;
	color: #4f5d4f;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.program-header h2 {
		font-size: 48px;
	}
}

.program-header p {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	letter-spacing: 0.5px;
}

/* Timeline Container */
.timeline-relative {
	position: relative;
}

/* Desktop Timeline */
.timeline-desktop {
	display: none;
}

@media (min-width: 768px) {
	.timeline-desktop {
		display: block;
	}
}

.timeline-line {
	position: absolute;
	top: 64px;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(79, 93, 79, 0.3);
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
}

/* Timeline Items */
.timeline-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 1;
	transform: none;
}

.timeline-time {
	background: #4f5d4f;
	color: white;
	padding: 6px 12px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	transition: background-color 0.3s;
}

.timeline-item:hover .timeline-time {
	background: #6b7d6b;
}

.timeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: white;
	border: 2px solid rgba(79, 93, 79, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4f5d4f;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	z-index: 10;
}

.timeline-item:hover .timeline-icon {
	border-color: #4f5d4f;
	transform: scale(1.1);
}

.timeline-icon svg {
	width: 20px;
	height: 20px;
}

.timeline-title {
	font-size: 16px;
	color: #4f5d4f;
	margin-bottom: 4px;
	line-height: 1.25;
}

@media (min-width: 1024px) {
	.timeline-title {
		font-size: 18px;
	}
}

.timeline-desc {
	font-size: 12px;
	color: rgba(79, 93, 79, 0.5);
	line-height: 1.5;
	padding: 0 4px;
}

/* Mobile Timeline */
.timeline-mobile {
	display: block;
	position: relative;
}

@media (min-width: 768px) {
	.timeline-mobile {
		display: none;
	}
}

.mobile-timeline-line {
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(79, 93, 79, 0.3);
}

.mobile-timeline-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mobile-timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-left: 4px;
	opacity: 0;
	transform: translateX(-20px);
	animation: slideIn 0.5s ease forwards;
}

.mobile-timeline-item:nth-child(1) {
	animation-delay: 0.1s;
}
.mobile-timeline-item:nth-child(2) {
	animation-delay: 0.2s;
}
.mobile-timeline-item:nth-child(3) {
	animation-delay: 0.3s;
}
.mobile-timeline-item:nth-child(4) {
	animation-delay: 0.4s;
}
.mobile-timeline-item:nth-child(5) {
	animation-delay: 0.5s;
}
.mobile-timeline-item:nth-child(6) {
	animation-delay: 0.6s;
}
.mobile-timeline-item:nth-child(7) {
	animation-delay: 0.7s;
}

@keyframes slideIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mobile-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: white;
	border: 2px solid rgba(79, 93, 79, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4f5d4f;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.mobile-icon svg {
	width: 20px;
	height: 20px;
}

.mobile-content {
	flex: 1;
	padding-top: 4px;
}

.mobile-time-title {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 2px;
}

.mobile-time {
	background: #4f5d4f;
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.mobile-title {
	font-size: 16px;
	color: #4f5d4f;
}

@media (min-width: 768px) {
	.mobile-title {
		font-size: 18px;
	}
}

.mobile-desc {
	color: rgba(79, 93, 79, 0.6);
	font-size: 14px;
}
/* Accommodation Section Styles */
.accommodation-section {
	background: hsl(40 39% 91%);
	padding: 80px 20px;
}

.accommodation-container {
	max-width: 1024px;
	margin: 0 auto;
}

.accommodation-header {
	text-align: center;
	margin-bottom: 64px;
	opacity: 1;
	transform: none;
}

.accommodation-header svg {
	width: 32px;
	height: 32px;
	margin: 0 auto 16px;
	color: #4f5d4f;
	display: block;
}

.accommodation-header h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 36px;
	color: #4f5d4f;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.accommodation-header h2 {
		font-size: 48px;
	}
}

.accommodation-header p {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	letter-spacing: 0.5px;
}

.accommodation-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.accommodation-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card-elegant {
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	opacity: 1;
	transform: none;
}

.card-elegant:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(79, 93, 79, 0.15);
}

.card-elegant h3 {
	font-family: 'Lora', serif;
	font-size: 20px;
	color: #4f5d4f;
	margin-bottom: 8px;
}

.card-elegant p {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	font-size: 14px;
	margin-bottom: 16px;
}

.btn-accommodation {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 12px;
	height: 36px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(79, 93, 79, 0.4);
	border-radius: 6px;
	background: white;
	color: #4f5d4f;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-accommodation:hover {
	background: #4f5d4f;
	color: white;
	border-color: #4f5d4f;
}

.btn-accommodation svg {
	width: 16px;
	height: 16px;
}

.btn-accommodation:hover svg {
	stroke: white;
}
/* FAQ Section Styles */
.faq-section {
	background: hsl(40 39% 91%);
	padding: 80px 20px;
}

.faq-container {
	max-width: 768px;
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	margin-bottom: 48px;
	opacity: 1;
	transform: none;
}

.faq-header svg {
	width: 32px;
	height: 32px;
	margin: 0 auto 16px;
	color: #4f5d4f;
	display: block;
}

.faq-header h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 36px;
	color: #4f5d4f;
}

@media (min-width: 768px) {
	.faq-header h2 {
		font-size: 48px;
	}
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(79, 93, 79, 0.3);
	padding: 0 24px;
	border-radius: 8px;
	opacity: 1;
	transform: none;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	font-family: 'Lora', serif;
	font-size: 18px;
	color: #4f5d4f;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.faq-question svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.faq-question[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

.faq-answer {
	overflow: hidden;
	transition: all 0.2s ease;
}

.faq-answer[hidden] {
	display: none;
}

.faq-answer-content {
	padding-bottom: 16px;
	font-family: 'Lora', serif;
	font-size: 14px;
	color: rgba(79, 93, 79, 0.7);
	line-height: 1.6;
}

/* Animation for accordion */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer:not([hidden]) .faq-answer-content {
	animation: slideDown 0.2s ease forwards;
}

/* Gifts Section Styles */
.gifts-section {
	background: hsl(40 39% 91%);
	padding: 80px 20px;
	position: relative;
}

.gifts-container {
	max-width: 672px;
	margin: 0 auto;
}

.gifts-header {
	text-align: center;
	margin-bottom: 48px;
	opacity: 1;
	transform: none;
}

.gifts-header h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 36px;
	color: #4f5d4f;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.gifts-header h2 {
		font-size: 48px;
	}
}

.gifts-header p {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.8);
	line-height: 1.6;
	max-width: 512px;
	margin: 0 auto;
}

.gifts-header p br {
	display: none;
}

@media (min-width: 768px) {
	.gifts-header p br {
		display: block;
	}
}

.gifts-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	opacity: 1;
	transform: none;
}

.gifts-button {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.gifts-button:hover {
	background: rgba(79, 93, 79, 0.05);
}

.gifts-button span {
	font-family: 'Lora', serif;
	font-size: 18px;
	color: #4f5d4f;
}

.gifts-button svg {
	width: 20px;
	height: 20px;
	color: rgba(79, 93, 79, 0.6);
	transition: transform 0.3s ease;
}

.gifts-button[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

.gifts-content {
	overflow: hidden;
	transition: all 0.3s ease;
}

.gifts-content[hidden] {
	display: none;
}

.gifts-content-inner {
	padding: 0 24px 24px 24px;
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	line-height: 1.6;
}

.gifts-content-inner p {
	margin-bottom: 16px;
}

.gifts-content-inner p:last-child {
	margin-bottom: 0;
}

.bank-details {
	background: rgba(79, 93, 79, 0.05);
	padding: 16px;
	border-radius: 8px;
	margin-top: 16px;
}

.bank-details p {
	margin-bottom: 8px;
	font-family: monospace;
	font-size: 14px;
}

.bank-details p:last-child {
	margin-bottom: 0;
}

/* Animation */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gifts-content:not([hidden]) .gifts-content-inner {
	animation: slideDown 0.3s ease forwards;
}
/* RSVP Section Styles */
.rsvp-section {
	background: hsl(40 39% 91%);
	padding: 80px 20px;
}

.rsvp-container {
	max-width: 576px;
	margin: 0 auto;
}

.rsvp-header {
	text-align: center;
	margin-bottom: 48px;
	opacity: 1;
	transform: none;
}

.rsvp-header img {
	width: 192px;
	margin: 0 auto 24px;
	display: block;
}

.rsvp-header h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 36px;
	color: #4f5d4f;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.rsvp-header h2 {
		font-size: 48px;
	}
}

.rsvp-header p {
	font-family: 'Lora', serif;
	color: rgba(79, 93, 79, 0.7);
	letter-spacing: 0.5px;
}

.rsvp-form {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(79, 93, 79, 0.3);
	border-radius: 8px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	opacity: 1;
	transform: none;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 14px;
	color: #4f5d4f;
	font-weight: 500;
}

.form-input {
	height: 40px;
	width: 100%;
	border-radius: 6px;
	border: 1px solid rgba(79, 93, 79, 0.3);
	padding: 0 12px;
	background: hsl(40 39% 91%);
	color: #4f5d4f;
	font-size: 14px;
}

.form-input:focus {
	outline: none;
	border-color: #4f5d4f;
	outline: 2px solid rgba(79, 93, 79, 0.2);
}

.form-input::placeholder {
	color: rgba(79, 93, 79, 0.5);
}

.form-textarea {
	width: 100%;
	border-radius: 6px;
	border: 1px solid rgba(79, 93, 79, 0.3);
	padding: 8px 12px;
	background: hsl(40 39% 91%);
	color: #4f5d4f;
	font-size: 14px;
	min-height: 80px;
	resize: vertical;
}

.form-textarea:focus {
	outline: none;
	border-color: #4f5d4f;
}

.form-number {
	width: 96px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid rgba(79, 93, 79, 0.3);
	padding: 0 12px;
	background: hsl(40 39% 91%);
	color: #4f5d4f;
}

/* Radio Group */
.radio-group {
	display: flex;
	gap: 24px;
	margin-top: 8px;
}

.radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.radio-button {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #4f5d4f;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.radio-button[data-checked='true'] {
	background: #4f5d4f;
}

.radio-button[data-checked='true'] svg {
	display: block;
}

.radio-button svg {
	width: 10px;
	height: 10px;
	fill: white;
	display: none;
}

.radio-label {
	font-size: 14px;
	color: #4f5d4f;
	cursor: pointer;
}

/* Checkbox Group */
.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 8px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkbox-button {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #4f5d4f;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.checkbox-button[data-checked='true'] {
	background: #4f5d4f;
}

.checkbox-button[data-checked='true'] svg {
	display: block;
}

.checkbox-button svg {
	width: 10px;
	height: 10px;
	stroke: white;
	stroke-width: 3;
	display: none;
}

.checkbox-label {
	font-size: 14px;
	color: #4f5d4f;
	cursor: pointer;
}

/* Alert Icon */
.alert-icon {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.alert-icon svg {
	width: 16px;
	height: 16px;
	color: #ffd700;
}

.alert-icon label {
	font-size: 16px;
	color: #4f5d4f;
	font-weight: 500;
}

.alert-text {
	font-size: 14px;
	color: rgba(79, 93, 79, 0.7);
	margin-bottom: 16px;
}

/* Submit Button */
.submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 40px;
	padding: 0 16px;
	background: #4f5d4f;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.submit-button:hover {
	background: rgba(79, 93, 79, 0.9);
}

.submit-button svg {
	width: 16px;
	height: 16px;
}

/* Hidden inputs for accessibility */
.hidden-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}
/* Footer Styles */
.footer {
	background: #4f5d4f;
	padding: 64px 20px;
	text-align: center;
}

.footer-content {
	opacity: 1;
	transform: none;
}

.footer-heart {
	width: 24px;
	height: 24px;
	margin: 0 auto 16px;
	color: rgba(255, 255, 255, 0.7);
	display: block;
}

.footer-heart svg {
	width: 100%;
	height: 100%;
}

.footer-couple {
	font-family: 'Great Vibes', cursive;
	font-size: 30px;
	color: white;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.footer-couple {
		font-size: 36px;
	}
}

.footer-date {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Lora', serif;
	letter-spacing: 0.5px;
}

.footer-credit {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 32px;
	font-family: 'Lora', serif;
}

.footer-credit a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-credit a:hover {
	color: white;
	text-decoration: underline;
}
