/* Classic WoW Footer Theme */

/* Override default footer styles */
.footer {
	background: #0f0f0f !important;
	border-top: 2px solid #2a2a2a !important;
	margin: 40px 0 0 0 !important;
	width: 100% !important;
	height: auto !important;
	display: block !important;
	overflow: visible !important;
}

/* Reset old footer structure */
.footer .aw_row {
	display: none !important;
}

/* Footer Main Section */

.footer-main {
	background: #1a1a1a;
	padding: 40px 0 30px;
	border-bottom: 1px solid #252525;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

/* Footer Column */
.footer-column {
	padding: 0 15px;
}

.footer-title {
	font-size: 13px;
	font-weight: 600;
	color: #e5cc9f;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 18px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #2a2a2a;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #c9a860;
}

/* Footer List (Server Info) */
.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	padding: 6px 0;
	font-size: 12px;
	color: #999;
	border-bottom: 1px solid #222;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-list li:last-child {
	border-bottom: none;
}

.footer-label {
	color: #888;
	font-weight: 500;
}

.footer-value {
	color: #c9a860;
	font-weight: 600;
}

/* Footer Links */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #999;
	text-decoration: none;
	transition: all 0.2s ease;
	padding: 4px 0;
}

.footer-links a:hover {
	color: #e5cc9f;
	padding-left: 5px;
}

.footer-links a i {
	font-size: 11px;
	color: #666;
	transition: color 0.2s ease;
}

.footer-links a:hover i {
	color: #c9a860;
}

/* Footer Stats */
.footer-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 5px;
}

.stat-item {
	background: #202020;
	padding: 15px 12px;
	border-radius: 3px;
	border: 1px solid #2a2a2a;
	text-align: center;
	transition: all 0.2s ease;
}

.stat-item:hover {
	background: #252525;
	border-color: #333;
}

.stat-number {
	font-size: 20px;
	font-weight: 700;
	color: #c9a860;
	margin-bottom: 5px;
	font-family: 'Courier New', monospace;
}

.stat-label {
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
	background: #151515;
	padding: 25px 0;
	position: relative;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-copyright {
	flex: 1;
}

.footer-copyright p {
	margin: 0 0 8px 0;
	font-size: 12px;
	color: #888;
	line-height: 1.5;
}

.footer-copyright strong {
	color: #c9a860;
}

.footer-disclaimer {
	font-size: 10px !important;
	color: #666 !important;
	font-style: italic;
	max-width: 600px;
}

.footer-credits {
	text-align: right;
}

.powered-by {
	font-size: 11px;
	color: #777;
	letter-spacing: 0.5px;
}

.powered-by strong {
	color: #999;
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: #2a2a2a;
	border: 1px solid #3a3a3a;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: #333;
	border-color: #444;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.back-to-top i {
	font-size: 16px;
	color: #c9a860;
}

.back-to-top:hover i {
	color: #e5cc9f;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}
}

@media (max-width: 768px) {
	.footer-main {
		padding: 30px 0 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.footer-column {
		padding: 0 10px;
	}

	.footer-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.stat-item {
		padding: 12px 10px;
	}

	.stat-number {
		font-size: 18px;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.footer-credits {
		text-align: center;
	}

	.footer-disclaimer {
		max-width: 100%;
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	.back-to-top i {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.footer-main {
		padding: 25px 0 15px;
	}

	.footer-title {
		font-size: 12px;
		margin-bottom: 14px;
		padding-bottom: 8px;
	}

	.footer-list li,
	.footer-links a {
		font-size: 11px;
	}

	.footer-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.stat-item {
		padding: 10px 8px;
	}

	.stat-number {
		font-size: 16px;
	}

	.stat-label {
		font-size: 9px;
	}

	.footer-copyright p {
		font-size: 11px;
	}

	.footer-disclaimer {
		font-size: 9px !important;
	}

	.back-to-top {
		bottom: 15px;
		right: 15px;
		width: 38px;
		height: 38px;
	}
}

/* Scroll behavior for back to top */
html {
	scroll-behavior: smooth;
}

/* Print styles */
@media print {
	.footer-main {
		page-break-before: always;
	}

	.back-to-top {
		display: none;
	}

	.footer-links a {
		color: #000;
	}
}


