/**
 * Header and Footer Styles
 * Minimal styling for site header and footer
 *
 * @package Nullbound
 * @since 1.0.0
 */

/* Site Header - transparent so particle canvas shows through */
.site-header {
	position: relative;
	z-index: 1000;
	padding: 1.5rem 2rem;
	background-color: transparent !important;
	background: transparent !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.header-container {
	max-width: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: transparent;
}

/* Site Logo - Hidden */
.site-logo {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
}

.logo-link {
	display: inline-block;
	color: #00FFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
	line-height: 1;
}

.logo-link:hover {
	opacity: 0.7;
}

.logo-link:focus {
	outline: 2px solid #00FFFF;
	outline-offset: 2px;
}

.logo-link img {
	max-height: 50px;
	width: auto;
	height: auto;
	display: block;
}

.logo-text {
	color: #00FFFF;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
	display: inline-block;
}

/* Site Footer - transparent so particle canvas shows through */
.site-footer {
	background-color: transparent !important;
	background: transparent !important;
	border-top: 1px solid rgba(0, 255, 255, 0.2);
	padding: 3rem 2rem 2rem;
	margin-top: 4rem;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative;
	z-index: 100;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	background: transparent;
}

/* Footer Widgets */
.footer-widgets {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-widgets .widget {
	margin-bottom: 1.5rem;
}

.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets .widget-title {
	font-family: 'JetBrains Mono', monospace;
	font-size: 1.125rem;
	font-weight: 600;
	color: #00FFFF;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-widgets .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widgets .widget ul li {
	margin-bottom: 0.5rem;
}

.footer-widgets .widget a {
	color: #00FFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
	font-family: 'JetBrains Mono', monospace;
}

.footer-widgets .widget a:hover {
	opacity: 0.7;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-widgets .widget p {
	color: #00FFFF;
	font-family: 'JetBrains Mono', monospace;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 2rem;
}

/* Footer Copyright */
.footer-copyright {
	text-align: center;
}

.footer-copyright p {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875rem;
	color: #00FFFF;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.8;
}

/* Footer Social Icons */
.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #00FFFF;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.social-icon:hover {
	color: #00FFFF;
	transform: translateY(-2px);
	filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.social-icon:focus {
	outline: 2px solid #00FFFF;
	outline-offset: 2px;
}

.social-icon i {
	font-size: 24px;
	line-height: 1;
	transition: transform 0.3s ease;
	display: inline-block;
}

.social-icon:hover i {
	transform: scale(1.1);
}

/* Mobile Responsive */
@media screen and (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}

	.footer-copyright {
		text-align: left;
	}

	.footer-social {
		justify-content: flex-end;
	}
}

@media screen and (max-width: 767px) {
	.site-header {
		padding: 1rem 1.5rem;
	}

	.site-logo {
		font-size: 1.25rem;
	}

	.logo-link img {
		max-height: 40px;
	}

	.site-footer {
		padding: 2rem 1.5rem 1.5rem;
		margin-top: 2rem;
	}

	.footer-widgets {
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.footer-social {
		gap: 1rem;
	}

	.social-icon {
		width: 36px;
		height: 36px;
	}

	.social-icon i {
		font-size: 20px;
	}
}

@media screen and (max-width: 480px) {
	.site-header {
		padding: 0.75rem 1rem;
	}

	.site-logo {
		font-size: 1rem;
	}

	.logo-link img {
		max-height: 35px;
	}

	.site-footer {
		padding: 1.5rem 1rem;
	}

	.footer-copyright p {
		font-size: 0.75rem;
	}

	.footer-social {
		gap: 0.75rem;
	}

	.social-icon {
		width: 32px;
		height: 32px;
	}

	.social-icon i {
		font-size: 18px;
	}
}

