@charset "UTF-8";

/*======
*
* Enhanced Typography System
* Custom typography enhancements for EventChamp theme
*
======*/

/* Enhanced Text Elements */
.display-1 {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: #1a1a1a;
}

.display-2 {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #1a1a1a;
}

.display-3 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #1a1a1a;
}

/* Enhanced Paragraph Styles */
.intro-text {
	font-size: 1.375rem;
	line-height: 1.6;
	color: #2c2c2c;
	font-weight: 400;
	margin-bottom: 2rem;
}

.excerpt-text {
	font-size: 1.125rem;
	line-height: 1.65;
	color: #4a4a4a;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.caption-text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #6c757d;
	font-style: italic;
	margin-bottom: 1rem;
}

/* Enhanced Quote Styles */
.quote-large {
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 300;
	font-style: italic;
	color: #2c2c2c;
	border-left: 4px solid #007cba;
	padding-left: 2rem;
	margin: 2.5rem 0;
	position: relative;
}

.quote-large::before {
	content: """;
	font-size: 4rem;
	line-height: 1;
	color: #007cba;
	position: absolute;
	left: -1rem;
	top: -1rem;
	font-family: Georgia, serif;
}

/* Enhanced List Styles */
.list-styled {
	list-style: none;
	padding-left: 0;
}

.list-styled li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.list-styled li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: #007cba;
	font-weight: 600;
}

.list-checkmark {
	list-style: none;
	padding-left: 0;
}

.list-checkmark li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.list-checkmark li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: 600;
}

/* Enhanced Button Typography */
.btn-text {
	font-weight: 600;
	letter-spacing: 0.025em;
	text-transform: none;
}

.btn-text-small {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.015em;
}

.btn-text-large {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.025em;
}

/* Enhanced Link Styles */
.link-underline {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.link-underline:hover {
	border-bottom-color: currentColor;
	text-decoration: none;
}

.link-arrow::after {
	content: " →";
	transition: transform 0.2s ease;
}

.link-arrow:hover::after {
	transform: translateX(3px);
}

/* Enhanced Tag/Badge Typography */
.tag-text {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1;
}

.badge-text {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	line-height: 1.2;
}

/* Enhanced Code Typography */
code {
	font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
	font-size: 0.875em;
	background: #f8f9fa;
	padding: 0.125rem 0.25rem;
	border-radius: 0.25rem;
	color: #e83e8c;
}

pre {
	font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
	font-size: 0.875rem;
	line-height: 1.5;
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 0.5rem;
	overflow-x: auto;
	color: #495057;
	border: 1px solid #e9ecef;
}

/* Enhanced Table Typography */
.table-enhanced {
	font-size: 0.875rem;
	line-height: 1.5;
}

.table-enhanced th {
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	font-size: 0.75rem;
	padding: 1rem 0.75rem;
}

.table-enhanced td {
	padding: 0.75rem;
	color: #4a4a4a;
}

/* Enhanced Form Typography */
.form-label {
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.015em;
}

.form-help-text {
	font-size: 0.75rem;
	color: #6c757d;
	line-height: 1.5;
	margin-top: 0.25rem;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
	.display-1 {
		font-size: 3rem;
	}
	
	.display-2 {
		font-size: 2.5rem;
	}
	
	.display-3 {
		font-size: 2rem;
	}
	
	.intro-text {
		font-size: 1.25rem;
	}
	
	.quote-large {
		font-size: 1.25rem;
		padding-left: 1.5rem;
	}
	
	.quote-large::before {
		font-size: 3rem;
		left: -0.75rem;
		top: -0.75rem;
	}
}

@media (max-width: 480px) {
	.display-1 {
		font-size: 2.5rem;
	}
	
	.display-2 {
		font-size: 2rem;
	}
	
	.display-3 {
		font-size: 1.75rem;
	}
	
	.intro-text {
		font-size: 1.125rem;
	}
}

/* Enhanced Header Logo Typography */
.gt-logo.gt-text-logo a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
}

.gt-logo.gt-text-logo .gt-site-title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
	transition: color 0.2s ease;
}

.gt-logo.gt-text-logo .gt-site-description {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
	color: #6c757d;
	font-style: italic;
	transition: color 0.2s ease;
}

.gt-logo.gt-text-logo a:hover .gt-site-title,
.gt-logo.gt-text-logo a:focus .gt-site-title {
	color: #007cba;
}

.gt-logo.gt-text-logo a:hover .gt-site-description,
.gt-logo.gt-text-logo a:focus .gt-site-description {
	color: #495057;
}

/* Mobile responsive header typography */
@media (max-width: 768px) {
	.gt-logo.gt-text-logo .gt-site-title {
		font-size: 1.5rem;
	}
	
	.gt-logo.gt-text-logo .gt-site-description {
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.gt-logo.gt-text-logo .gt-site-title {
		font-size: 1.25rem;
	}
	
	.gt-logo.gt-text-logo .gt-site-description {
		font-size: 0.7rem;
	}
}

/* Dark theme support for header */
.gt-dark .gt-logo.gt-text-logo .gt-site-title {
	color: #ffffff;
}

.gt-dark .gt-logo.gt-text-logo .gt-site-description {
	color: #b0b3b8;
}

.gt-dark .gt-logo.gt-text-logo a:hover .gt-site-title,
.gt-dark .gt-logo.gt-text-logo a:focus .gt-site-title {
	color: #64b5f6;
}

.gt-dark .gt-logo.gt-text-logo a:hover .gt-site-description,
.gt-dark .gt-logo.gt-text-logo a:focus .gt-site-description {
	color: #ffffff;
}

/* Print Styles */
@media print {
	body {
		font-size: 12pt;
		line-height: 1.4;
		color: #000;
	}
	
	h1, h2, h3, h4, h5, h6 {
		color: #000;
		page-break-after: avoid;
	}
	
	p {
		orphans: 3;
		widows: 3;
	}
	
	blockquote {
		page-break-inside: avoid;
	}
	
	.gt-logo.gt-text-logo .gt-site-title,
	.gt-logo.gt-text-logo .gt-site-description {
		color: #000 !important;
	}
}