/* Shared styles for Property WorkOrder landing pages */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	padding: 2rem 0;
	text-align: center;
	color: white;
}

.logo {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

main {
	background: white;
	border-radius: 20px 20px 0 0;
	padding: 3rem 0;
	margin-top: 2rem;
}

/* Button styles */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	background: #667eea;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	transition: all 0.3s ease;
	margin: 0.5rem;
}

.btn:hover {
	background: #5a6fd8;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background: transparent;
	border: 2px solid #667eea;
	color: #667eea;
}

.btn-secondary:hover {
	background: #667eea;
	color: white;
}

/* Footer styles */
footer {
	text-align: center;
	padding: 2rem 0;
	color: #FFF;
	border-top: 1px solid #eee;
	margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.logo {
		font-size: 2rem;
	}

	.tagline {
		font-size: 1.2rem;
	}
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.feature {
	text-align: center;
	padding: 2rem;
	border-radius: 10px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.cta {
	text-align: center;
	margin: 3rem 0;
}

@media (max-width: 768px) {
	.features {
		grid-template-columns: 1fr;
	}
}
