* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #ffffff;
	padding: 20px;
	position: relative;
}

.container {
	max-width: 800px;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 100px;
}

.title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: bold;
	font-family: "Caveat", cursive;
}

h1 {
	font-size: 52;
	margin-bottom: 4px;
	margin-top: 24px;
	font-weight: 500;
	letter-spacing: -1px;
}

.intro {
	font-size: 20px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 40px;
	max-width: 600px;
}

.highlight {
	color: #000;
	font-weight: 500;
}

.buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

.schedule-btn:hover {
	background: rgba(0, 0, 0, 0.02);
}

.social-links {
	background: white;
	padding: 12px 24px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	display: flex;
	gap: 24px;
	align-items: center;
}

.social-links a {
	color: #666;
	transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-links a:hover {
	color: #000;
	transform: translateY(-2px);
}

.dash {
	margin: 0 4px;
	color: #999;
}

#profile {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.dock {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(12px);
	border-radius: 8px;
	padding: 12px 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 1000;
	transition: background 0.3s ease;
}

.dock:hover {
	background: rgba(255, 255, 255, 0.6);
}

.dock-list {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dock-list li {
	position: relative;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
	will-change: transform;
}

.dock-list li:hover {
	transform: translateY(-6px) scale(1.08);
}

.dock-list li::before {
	/* Tooltip or label */
	content: attr(data-label);
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	white-space: nowrap;
}

.dock-list li:hover::before {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.dock-list img {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	transition: filter 0.3s ease, box-shadow 0.3s ease;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.dock-list a:hover img {
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.dock-list:hover li:not(:hover) {
	transform: scale(0.95);
	opacity: 0.8;
}
