body {
margin: 0;
padding: 0;
min-height: 100vh;
background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
font-family: 'Raleway', sans-serif;
color: #d4af37;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('https://images.unsplash.com/photo-1560448075-bb485b067938?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
opacity: 0.1;
z-index: -1;
}
.maintenance-container {
padding: 2rem;
width: 100%;
position: relative;
}
.logo-container {
margin-bottom: 3rem;
}
.company-name {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 700;
color: #d4af37;
margin-bottom: 0.5rem;
letter-spacing: 2px;
}
.company-slogan {
font-family: 'Raleway', sans-serif;
font-size: 1.2rem;
color: #a3a3a3;
font-weight: 300;
letter-spacing: 1px;
}
.maintenance-content {
background: rgba(28, 28, 28, 0.95);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 3rem 2rem;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
border: 1px solid rgba(212, 175, 55, 0.1);
}
.icon-container {
background: linear-gradient(135deg, #d4af37 0%, #f4e03d 100%);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
}
.maintenance-icon {
font-size: 3rem;
color: #1a1a1a;
animation: bounce 2s ease-in-out infinite;
}
.maintenance-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1.5rem;
color: #fff;
}
.maintenance-text {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #a3a3a3;
line-height: 1.6;
}
.progress {
height: 8px;
background: rgba(212, 175, 55, 0.1);
border-radius: 10px;
margin: 2rem auto;
width: 80%;
overflow: hidden;
}
.progress-bar {
background: linear-gradient(90deg, #d4af37, #f4e03d);
}
.countdown {
display: flex;
justify-content: center;
gap: 2rem;
margin: 2rem 0;
}
.time-block {
display: flex;
flex-direction: column;
align-items: center;
}
.time-block span:first-child {
font-size: 2.5rem;
font-weight: bold;
background: rgba(255, 255, 255, 0.1);
padding: 1rem;
border-radius: 10px;
min-width: 80px;
}
.time-label {
margin-top: 0.5rem;
font-size: 0.9rem;
}
.contact-info {
margin-top: 2rem;
}
.contact-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.btn-outline-premium {
border: 1px solid rgba(212, 175, 55, 0.3);
color: #d4af37;
padding: 1rem 1.5rem;
transition: all 0.3s ease;
font-weight: 500;
letter-spacing: 1px;
display: flex;
align-items: center;
gap: 1rem;
background: rgba(212, 175, 55, 0.05);
min-width: 280px;
}
.btn-outline-premium:hover {
background: rgba(212, 175, 55, 0.15);
border-color: #d4af37;
color: #d4af37;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}
.icon-wrapper {
background: rgba(212, 175, 55, 0.1);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.btn-outline-premium:hover .icon-wrapper {
background: rgba(212, 175, 55, 0.2);
}
.contact-text {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
}
.contact-label {
font-size: 0.8rem;
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 1px;
}
.contact-value {
font-size: 1rem;
font-weight: 600;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
@media (max-width: 768px) {
.company-name {
font-size: 2.5rem;
}
.company-slogan {
font-size: 1rem;
}
.maintenance-content {
padding: 2rem 1rem;
}
.countdown {
gap: 1rem;
}
.time-block span:first-child {
font-size: 2rem;
min-width: 70px;
padding: 1rem;
}
.contact-buttons {
flex-direction: column;
gap: 1rem;
}
.btn-outline-premium {
width: 100%;
min-width: auto;
justify-content: flex-start;
}
}