<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
/* CORE VARIABLES & RESET */
:root {
--primary-color: #4f46e5;
--primary-hover: #4338ca;
--bg-color: #f3f4f6;
--card-bg: #ffffff;
--text-main: #111827;
--text-sub: #6b7280;
--shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
background-size: 20px 20px;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
color: var(--text-main);
}
/* CARD CONTAINER */
.maintenance-card {
background: var(--card-bg);
max-width: 500px;
width: 100%;
padding: 40px;
border-radius: 16px;
box-shadow: var(--shadow);
text-align: center;
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.5);
}
/* ANIMATED ICON */
.icon-container {
width: 80px;
height: 80px;
background: #e0e7ff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px auto;
}
.gear-icon {
width: 40px;
height: 40px;
color: var(--primary-color);
animation: spin 4s linear infinite;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
/* TYPOGRAPHY */
h1 {
font-size: 24px;
font-weight: 700;
margin-bottom: 12px;
color: var(--text-main);
}
p {
font-size: 16px;
line-height: 1.6;
color: var(--text-sub);
margin-bottom: 30px;
}
/* BUTTONS */
.btn {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn:hover {
background-color: var(--primary-hover);
}
.btn:active {
transform: scale(0.98);
}
/* FOOTER INFO */
.footer {
margin-top: 30px;
font-size: 12px;
color: #9ca3af;
border-top: 1px solid #f3f4f6;
padding-top: 20px;
}
/* RESPONSIVE TWEAKS */
@media (max-width: 480px) {
.maintenance-card {
padding: 30px 20px;
}
h1 {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="maintenance-card">
<div class="icon-container">
<svg class="gear-icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
</div>
<h1>We are under maintenance</h1>
<p>We are currently improving our site to give you a better experience. We should be back shortly. Thank you for your patience.</p>
<a href="mailto:support@yourdomain.com" class="btn">Contact Support</a>
<div class="footer">
© 2024 Shilpomart. All rights reserved.
</div>
</div>
</body>
</html>