:root {
	--font-heading-latin: 'Segoe Script', 'Snell Roundhand', 'Apple Chancery';
	--font-heading-ja: 'Yu Mincho', 'Hiragino Mincho ProN', serif;

	--font-body-latin: 'Segoe UI', 'Roboto', 'Helvetica Neue';
	--font-body-ja: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;

	/* Colors */
	--color-primary: #c0a080;
	--color-primary-dark: #b09070;
	--color-text: #4a4a4a;
	--color-text-light: #6a6a6a;
	--color-white: #ffffff;
	--color-bg-light: #f5f5f5;
	--color-border: #e0e0e0;
	--color-shadow: rgba(0, 0, 0, 0.05);
	--color-shadow-dark: rgba(0, 0, 0, 0.1);
	--color-primary-shadow: rgba(192, 160, 128, 0.3);
	--color-primary-shadow-dark: rgba(192, 160, 128, 0.4);
}

body {
	padding: 0;
	font-family: var(--font-body-latin), var(--font-body-ja);
	color: var(--color-text);
	background-color: var(--color-bg-light);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: var(--font-heading-latin), var(--font-heading-ja);
	letter-spacing: 0.02em;
}

/* Layout Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

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

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

.section {
	padding: 128px 32px;
	position: relative;
	z-index: 1;
}

.section-bg {
	background-color: rgba(255, 255, 255, 0.9);
}

.section-margin {
	margin: 64px 0;
}

.section-margin-sm {
	margin: 32px 0;
}

/* Typography */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-primary {
	color: var(--color-primary);
}

.text-light {
	color: var(--color-text-light);
}

.text-white {
	color: var(--color-white);
}

.heading-xl {
	font-size: 56px;
	line-height: 1.4;
}

.heading-lg {
	font-size: 40px;
	line-height: 1.4;
}

.heading-md {
	font-size: 32px;
	line-height: 1.4;
}

.heading-sm {
	font-size: 24px;
	line-height: 1.4;
}

.text-lg {
	font-size: 21px;
}

.text-md {
	font-size: 19px;
}

.text-base {
	font-size: 16px;
}

.text-sm {
	font-size: 14px;
}

.text-xs {
	font-size: 13px;
}

.letter-spacing-sm {
	letter-spacing: 0.5px;
}

.letter-spacing-md {
	letter-spacing: 1px;
}

.letter-spacing-lg {
	letter-spacing: 2px;
}

.letter-spacing-xl {
	letter-spacing: 3px;
}

.line-height-lg {
	line-height: 2;
}

.line-height-md {
	line-height: 1.8;
}

.line-height-base {
	line-height: 1.6;
}

/* Spacing */
.mb-8 {
	margin-bottom: 8px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mb-32 {
	margin-bottom: 32px;
}

.mb-36 {
	margin-bottom: 36px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-48 {
	margin-bottom: 48px;
}

.mb-64 {
	margin-bottom: 64px;
}

.mt-16 {
	margin-top: 16px;
}

.mt-32 {
	margin-top: 32px;
}

.p-16 {
	padding: 16px;
}

.p-24 {
	padding: 24px;
}

.p-32 {
	padding: 32px;
}

.p-48 {
	padding: 48px;
}

.px-32 {
	padding-left: 32px;
	padding-right: 32px;
}

.px-48 {
	padding-left: 48px;
	padding-right: 48px;
}

.px-56 {
	padding-left: 56px;
	padding-right: 56px;
}

.py-16 {
	padding-top: 16px;
	padding-bottom: 16px;
}

.py-32 {
	padding-top: 32px;
	padding-bottom: 32px;
}

/* Flexbox & Grid */
.flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.gap-8 {
	gap: 8px;
}

.gap-16 {
	gap: 16px;
}

.gap-24 {
	gap: 24px;
}

.gap-32 {
	gap: 32px;
}

.grid {
	display: grid;
}

.grid-auto-fill {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Cards & Containers */
.card {
	background-color: var(--color-white);
	border-radius: 10px;
	box-shadow: 0 15px 35px var(--color-shadow);
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px var(--color-shadow-dark);
}

.card-sm {
	box-shadow: 0 10px 30px var(--color-shadow);
}

.card-sm:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px var(--color-shadow-dark);
}

.backdrop-blur {
	backdrop-filter: blur(5px);
}

.bg-white-80 {
	background-color: rgba(255, 255, 255, 0.8);
}

.bg-white-90 {
	background-color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 5px;
	font-size: 16px;
	padding: 16px 32px;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 5px 15px var(--color-primary-shadow);
}

.btn-primary:hover {
	background-color: var(--color-primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px var(--color-primary-shadow-dark);
}

.btn-primary:disabled {
	background-color: #cccccc;
	transform: none;
	box-shadow: none;
	cursor: not-allowed;
}

.btn-lg {
	padding: 16px 56px;
	font-size: 15px;
}

.btn-full {
	width: 100%;
}

/* Forms */
.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	margin-bottom: 13px;
	font-size: 14px;
	color: var(--color-text-light);
	letter-spacing: 1px;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: 5px;
	font-size: 16px;
	background-color: var(--color-white);
	color: var(--color-text);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.1);
}

/* Animations */
.transition-all {
	transition: all 0.3s ease;
}

.transition-transform {
	transition: transform 0.3s ease;
}

.hover-scale:hover {
	transform: scale(1.03);
}

.hover-scale-lg:hover {
	transform: scale(1.1);
}

/* Utilities */
.opacity-70 {
	opacity: 0.7;
}

.opacity-30 {
	opacity: 0.3;
}

.z-1 {
	z-index: 1;
}

.z-minus-1 {
	z-index: -1;
}

.position-relative {
	position: relative;
}

.position-fixed {
	position: fixed;
}

.position-absolute {
	position: absolute;
}

.overflow-hidden {
	overflow: hidden;
}

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

.h-screen {
	height: 100vh;
}

.min-h-screen {
	min-height: 100vh;
}

.max-w-full {
	max-width: 100%;
}

.object-cover {
	object-fit: cover;
}

/* Position Utilities */
.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.bottom-32 {
	bottom: 32px;
}

/* Width Utilities */
.w-120 {
	width: 120px;
}

.w-280 {
	width: 280px;
}

.max-w-800 {
	max-width: 800px;
}

/* Height Utilities */
.h-280 {
	height: 280px;
}

.h-auto {
	height: auto;
}

.min-h-220 {
	min-height: 220px;
}

/* Flex Utilities */
.flex-1 {
	flex: 1;
}

/* Text Utilities */
.text-right {
	text-align: right;
}

.font-weight-600 {
	font-weight: 600;
}

.font-weight-500 {
	font-weight: 500;
}

.font-weight-400 {
	font-weight: 400;
}

/* Padding Utilities */
.pr-30 {
	padding-right: 30px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-32 {
	padding-left: 32px;
}

/* Border Utilities */
.border-radius-50 {
	border-radius: 50%;
}

/* Display Utilities */
.inline-block {
	display: inline-block;
}

.block {
	display: block;
}

/* Cursor Utilities */
.cursor-pointer {
	cursor: pointer;
}

.cursor-not-allowed {
	cursor: not-allowed;
}

/* Transform Utilities */
.transform-none {
	transform: none;
}

/* Box Shadow Utilities */
.shadow-none {
	box-shadow: none;
}

/* Font Size Utilities */
.text-2xl {
	font-size: 28px;
}

.text-3xl {
	font-size: 32px;
}

.text-4xl {
	font-size: 40px;
}

.text-5xl {
	font-size: 48px;
}

/* Icon Utilities */
.icon-size {
	width: 60px;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.icon-size-sm {
	width: 20px;
	height: 20px;
}

.icon-size-xs {
	width: 12px;
	height: 12px;
}

/* Animation Utilities */
.animation-bounce {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Pseudo Element Utilities */
.before-absolute::before {
	content: '';
	position: absolute;
}

.after-absolute::after {
	content: '';
	position: absolute;
}

/* Transform Utilities */
.translate-x-minus-50 {
	transform: translateX(-50%);
}

.translate-center {
	transform: translate(-50%, -50%);
}

.rotate-45 {
	transform: rotate(45deg);
}

/* Border Utilities */
.border-2 {
	border-width: 2px;
}

.border-solid {
	border-style: solid;
}

.border-primary {
	border-color: var(--color-primary);
}

.border-right-2 {
	border-right-width: 2px;
}

.border-bottom-2 {
	border-bottom-width: 2px;
}

.border-right-primary {
	border-right-color: var(--color-primary);
}

.border-bottom-primary {
	border-bottom-color: var(--color-primary);
}

/* Background Utilities */
.bg-primary {
	background-color: var(--color-primary);
}

.bg-primary-30 {
	background-color: rgba(192, 160, 128, 0.3);
}

/* Main Layout */
.main-layout {
	overflow-x: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Section Width */
.section-width {
	width: 100%;
}

/* Margin Utilities */
.mx-12 {
	margin-left: 12px;
	margin-right: 12px;
}

/* Width Percentage */
.w-90 {
	width: 90%;
}

/* Max Width Utilities */
.max-w-280 {
	max-width: 280px;
}

/* Background Image Utilities */
.bg-contain {
	background-size: contain;
}

.bg-no-repeat {
	background-repeat: no-repeat;
}

.bg-center {
	background-position: center;
}

/* Icon Background Images */
.icon-date {
	background-image: url('https://i.imgur.com/JXQQqjY.png');
}

.icon-venue {
	background-image: url('https://i.imgur.com/8vQYCYQ.png');
}

.icon-dress {
	background-image: url('https://i.imgur.com/ZBLFzwg.png');
}

/* Responsive Typography */
@media (max-width: 768px) {
	.md-text-3xl {
		font-size: 32px;
	}

	.md-mx-12 {
		margin-left: 12px;
		margin-right: 12px;
	}

	.md-w-90 {
		width: 90%;
	}

	.md-w-full {
		width: 100%;
	}

	.md-max-w-280 {
		max-width: 280px;
	}

	.md-flex-column {
		flex-direction: column;
	}

	.md-gap-0 {
		gap: 0;
	}

	.md-gap-16 {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.sm-text-2xl {
		font-size: 24px;
	}

	.sm-h-auto {
		height: auto;
	}

	.sm-min-h-220 {
		min-height: 220px;
	}

	.sm-flex-column {
		flex-direction: column;
	}

	.sm-gap-0 {
		gap: 0;
	}

	.sm-gap-16 {
		gap: 16px;
	}

	.sm-text-left {
		text-align: left;
	}

	.sm-pl-32 {
		padding-left: 32px;
	}

	.sm-pl-0 {
		padding-left: 0;
	}

	.sm-pr-0 {
		padding-right: 0;
	}

	.sm-mb-8 {
		margin-bottom: 8px;
	}

	.sm-w-full {
		width: 100%;
	}

	.sm-left-0::before {
		left: 0;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.section {
		padding: 64px 24px;
	}

	.heading-xl {
		font-size: 40px;
	}

	.heading-lg {
		font-size: 32px;
	}

	.heading-md {
		font-size: 28px;
	}

	.text-lg {
		font-size: 18px;
	}

	.btn-lg {
		padding: 14px 48px;
	}

	.container,
	.container-sm,
	.container-xs {
		padding: 0 24px;
	}

	.grid-auto-fill {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.p-48 {
		padding: 32px 24px;
	}

	.py-32 {
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

@media (max-width: 480px) {
	.heading-xl {
		font-size: 32px;
	}

	.heading-lg {
		font-size: 28px;
	}

	.heading-md {
		font-size: 24px;
	}

	.btn-lg {
		padding: 13px 32px;
	}

	.grid-auto-fill {
		grid-template-columns: 1fr;
	}
}
