/* Reset and Font Setup */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
		sans-serif;
}

body {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;

	/* REPEATING BACKGROUND IMAGE */
	background-image: url("assets/background_pattern.png"); /* Path to your tileable pattern image */
	background-repeat: repeat; /* Repeats both horizontally and vertically */
	background-size: 320px auto; /* Adjust size of the pattern tile */
	background-position: center;
}

/* Card Container */
.card-container {
	background-color: #e5e5e5;
	width: 100%;
	max-width: 480px;
	padding: 40px 32px;
	border-radius: 28px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
	text-align: center;
}

/* Header & Logo */
.header {
	margin-bottom: 28px;
}

.logo {
	max-width: 200px;
	height: auto;
	margin-bottom: 16px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 8px;
}

.description {
	font-size: 0.92rem;
	color: #111111;
	line-height: 1.35;
	margin-bottom: 16px;
}

/* Social Icons */
.social-links {
	display: flex;
	justify-content: center;
	gap: 16px;
	font-size: 1.6rem;
}

.social-links a {
	color: #000000;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.social-links a:hover {
	opacity: 0.7;
}

/* Links List */
.links-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.link-btn {
	display: block;
	width: 100%;
	padding: 16px 20px;
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	transition:
		background-color 0.2s ease,
		transform 0.15s ease;
}

/* HOVER STATE (As shown in Image 2) */
.link-btn:hover {
	background-color: #f1cfc3; /* Soft peach/blush hover color from image 2 */
}

/* Primary "Join Us" Button */
.link-btn.join-btn {
	background-color: #f26839; /* Distinct orange accent color */
	color: #ffffff;
	font-weight: 600;
	margin-top: 4px;
}

.link-btn.join-btn:hover {
	background-color: #e05527; /* Darker orange on hover */
}
