/* Status AI header and footer styles */

.status-ai-header {
	background-color: #ffffff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.status-ai-header .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.status-ai-header .header-container {
	padding: 15px 0;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
}

.status-ai-header .logo h1 {
	font-size: 1.25rem;
	color: #0d7c76;
	margin: 0;
	font-weight: 600;
}

.status-ai-header .logo span {
	color: #12b4aa;
}

.status-ai-header nav {
	margin-left: auto;
}

.status-ai-header nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
}

.status-ai-header nav ul li a {
	text-decoration: none;
	color: #1e293b;
	font-weight: 500;
	font-size: 0.95rem;
	line-height: 1.25;
	transition: color 0.3s ease;
}

.status-ai-header nav ul li a:hover,
.status-ai-header nav ul li a:focus {
	color: #12b4aa;
}

.status-ai-header .mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.75rem;
	cursor: pointer;
	color: #1e293b;
}

.status-ai-footer {
	background-color: #0d7c76;
	color: #ffffff;
	padding: 40px 0 20px;
}

.status-ai-footer .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.status-ai-footer .footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
	align-items: flex-start;
}

.status-ai-footer h3,
.status-ai-footer h4 {
	margin: 0 0 12px;
	font-size: 1.15rem;
	font-weight: 600;
}

.status-ai-footer .footer-info p {
	margin: 0 0 10px;
	font-size: 0.95rem;
	line-height: 1.45;
}

.status-ai-footer .footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.status-ai-footer .footer-links ul li {
	margin-bottom: 10px;
}

.status-ai-footer .footer-links ul li a {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.status-ai-footer .footer-links ul li a:hover,
.status-ai-footer .footer-links ul li a:focus {
	color: #ffffff;
}

.status-ai-footer .social-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.status-ai-footer .social-link {
	display: flex;
	align-items: center;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.status-ai-footer .social-link i {
	margin-right: 8px;
	font-style: normal;
}

.status-ai-footer .social-link:hover,
.status-ai-footer .social-link:focus {
	color: #ffffff;
	transform: translateX(4px);
}

.status-ai-footer .privacy-notice {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: center;
}

.status-ai-footer .privacy-notice a {
	color: #cbd5e1;
	text-decoration: underline;
}

.status-ai-footer .privacy-notice a:hover,
.status-ai-footer .privacy-notice a:focus {
	color: #ffffff;
}

.status-ai-footer .footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #334155;
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.status-ai-header nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #ffffff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		padding: 20px 0;
	}

	.status-ai-header nav.is-active {
		display: block;
	}

	.status-ai-header nav ul {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.status-ai-header .mobile-menu-btn {
		display: inline-flex;
	}

	.status-ai-header .header-container {
		position: relative;
	}
}

@media (max-width: 600px) {
	.status-ai-footer .footer-container {
		grid-template-columns: 1fr;
	}

	.status-ai-footer .privacy-notice {
		text-align: left;
		font-size: 0.85rem;
	}
}

