/* Web Hosting Tools - Subtle Enhancements */

/* Page header styling */
.page-header {
	margin-bottom: 32px;
	text-align: center;
}

.page-title {
	font-size: 28px;
	font-weight: 700;
	color: #e6eef6;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.page-title::before {
	font-size: 32px;
}

.page-subtitle {
	font-size: 16px;
	color: rgba(230, 238, 246, 0.7);
	margin: 0;
	font-weight: 400;
}

/* Enhanced form controls - subtle improvements */
.web-hosting-form {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border-radius: 12px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 24px;
}

.web-hosting-form .field {
	margin-bottom: 20px;
}

.web-hosting-form label {
	display: block;
	font-weight: 500;
	color: #e6eef6;
	margin-bottom: 6px;
	font-size: 14px;
}

.web-hosting-form input[type="text"],
.web-hosting-form input[type="url"],
.web-hosting-form input[type="number"] {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	color: #e6eef6;
	font-size: 15px;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.web-hosting-form input[type="text"]:focus,
.web-hosting-form input[type="url"]:focus,
.web-hosting-form input[type="number"]:focus {
	outline: none;
	border-color: #e50914;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.1);
}

.web-hosting-form input[type="text"]::placeholder,
.web-hosting-form input[type="url"]::placeholder,
.web-hosting-form input[type="number"]::placeholder {
	color: rgba(230, 238, 246, 0.5);
}

.web-hosting-form .help {
	color: rgba(230, 238, 246, 0.7);
	font-size: 12px;
	margin-top: 4px;
	font-style: italic;
}

/* Enhanced buttons */
.web-hosting-form .btn {
	background: linear-gradient(135deg, #e50914, #ff4757);
	border: none;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(229, 9, 20, 0.2);
}

.web-hosting-form .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
	background: linear-gradient(135deg, #ff4757, #e50914);
}

.web-hosting-form .btn:active {
	transform: translateY(0);
}

/* Results section styling */
.results-container {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
	border-radius: 12px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 24px;
}

.results-container h3 {
	color: #e50914;
	margin-bottom: 16px;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.results-container h3::before {
	content: "📊";
	font-size: 20px;
}

.results-container .result-group {
	margin-bottom: 20px;
}

.results-container .result-group h4 {
	color: #e50914;
	font-size: 14px;
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.results-container .output {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	padding: 12px;
	font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
	font-size: 13px;
	color: #a8d8ea;
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 8px;
	word-break: break-all;
}

/* Tool descriptions */
.tool-description {
	background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), rgba(255, 71, 87, 0.03));
	border-radius: 8px;
	padding: 16px;
	border-left: 3px solid #e50914;
	margin-bottom: 24px;
}

.tool-description h2 {
	color: #e6eef6;
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 600;
}

.tool-description p {
	color: rgba(230, 238, 246, 0.8);
	line-height: 1.5;
	margin: 0;
}

/* Status indicators */
.status-success {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
	border: 1px solid rgba(76, 175, 80, 0.3);
	border-radius: 8px;
	padding: 12px;
	margin: 12px 0;
	color: #4CAF50;
}

.status-success::before {
	content: "✅";
	margin-right: 8px;
	font-size: 16px;
}

.status-error {
	background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
	border: 1px solid rgba(244, 67, 54, 0.3);
	border-radius: 8px;
	padding: 12px;
	margin: 12px 0;
	color: #f44336;
}

.status-error::before {
	content: "❌";
	margin-right: 8px;
	font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.web-hosting-form {
		padding: 20px;
	}

	.results-container {
		padding: 20px;
	}

	.tool-description {
		padding: 12px;
	}

	.tool-description h2 {
		font-size: 18px;
	}
}

/* Tool grid and cards for index page */
.tool-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.tool-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: block;
	position: relative;
	overflow: hidden;
}

.tool-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #e50914, #ff4757);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.tool-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(229, 9, 20, 0.15);
	border-color: rgba(229, 9, 20, 0.2);
}

.tool-card:hover::before {
	transform: scaleX(1);
}

.tool-card h3 {
	color: #e6eef6;
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.tool-card p {
	color: rgba(230, 238, 246, 0.7);
	line-height: 1.5;
	margin-bottom: 20px;
	font-size: 14px;
}

.tool-card .btn {
	background: linear-gradient(135deg, #e50914, #ff4757);
	border: none;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(229, 9, 20, 0.2);
	display: inline-block;
	text-decoration: none;
}

.tool-card .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
	background: linear-gradient(135deg, #ff4757, #e50914);
}