/*
 * ItsMyLinks — main stylesheet.
 *
 * Single breakpoint at 768px (per the portfolio CSS discipline). One font
 * family (Antic Slab 400) loaded via @import below. NO multi-weight stacks.
 *
 * Component scope:
 *   .iml-site-*         site chrome (header, footer)
 *   .iml-profile-*      single-profile.php (bot interstitial + full profile)
 *   .iml-slot           individual link tile
 *   .iml-fallback-*     index.php fallback render
 */

@import url('https://fonts.googleapis.com/css2?family=Antic+Slab&display=swap');

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Antic Slab', serif;
	background: #ffffff;
	color: #111111;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ---------- Site chrome ---------- */

.iml-site-header,
.iml-site-footer {
	padding: 1rem;
	border-bottom: 1px solid #eee;
}

.iml-site-footer {
	border-bottom: 0;
	border-top: 1px solid #eee;
	text-align: center;
	font-size: 0.85rem;
	color: #666;
}

.iml-site-header-inner,
.iml-site-footer-inner {
	max-width: 640px;
	margin: 0 auto;
}

.iml-site-logo {
	font-weight: normal;
	font-size: 1.25rem;
}

/* ---------- Profile page ---------- */

.iml-profile-main {
	padding: 2rem 1rem;
}

.iml-profile-container {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}

.iml-profile-name {
	font-size: 2rem;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

.iml-profile-handle {
	color: #888;
	margin: 0 0 1.5rem;
	font-size: 1rem;
}

.iml-profile-tagline {
	color: #555;
	margin: 0 0 2rem;
	font-size: 1rem;
}

.iml-profile-slots {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.iml-slot {
	display: block;
	padding: 0.9rem 1.25rem;
	background: #111111;
	color: #ffffff;
	border-radius: 8px;
	font-size: 1rem;
	transition: opacity 0.15s ease;
}

.iml-slot:hover,
.iml-slot:focus {
	opacity: 0.85;
}

.iml-slot--social { background: #1f1f1f; }
.iml-slot--spicy  { background: #c2185b; }
.iml-slot--premium { background: #6a1b9a; }

/* ---------- Single breakpoint at 768px ---------- */

@media (min-width: 769px) {
	.iml-profile-container { max-width: 560px; }
	.iml-profile-name { font-size: 2.5rem; }
	.iml-slot { font-size: 1.1rem; padding: 1rem 1.5rem; }
}

/* ---------- Admin slot table (form-table override on user edit) ---------- */

.iml-slot-table td input[type="url"] { margin-bottom: 0.5rem; }
