/*
Theme Name: Amoovo Maintenance
Description: A simple maintenance theme for Amoovo R&D
Version: 1.0
Author: Your Name
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
  line-height: 1.6;
}

.maintenance-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  margin-bottom: 50px;
}

.logo {
  margin-bottom: 30px;
}

.bulb-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.bulb-icon::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 50px;
  background: #ffd700;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 10px;
  left: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bulb-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 8px;
  background: #ccc;
  border-radius: 4px;
  bottom: 10px;
  left: 25px;
}

.rays {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ray {
  position: absolute;
  width: 3px;
  height: 15px;
  background: #ffd700;
  border-radius: 2px;
  transform-origin: 50% 40px;
}

.ray:nth-child(1) {
  transform: rotate(0deg);
  top: 0;
  left: 38px;
}
.ray:nth-child(2) {
  transform: rotate(45deg);
  top: 8px;
  right: 8px;
}
.ray:nth-child(3) {
  transform: rotate(90deg);
  right: 0;
  top: 38px;
}
.ray:nth-child(4) {
  transform: rotate(135deg);
  bottom: 8px;
  right: 8px;
}
.ray:nth-child(5) {
  transform: rotate(180deg);
  bottom: 0;
  left: 38px;
}
.ray:nth-child(6) {
  transform: rotate(225deg);
  bottom: 8px;
  left: 8px;
}
.ray:nth-child(7) {
  transform: rotate(270deg);
  left: 0;
  top: 38px;
}
.ray:nth-child(8) {
  transform: rotate(315deg);
  top: 8px;
  left: 8px;
}

.company-name {
  font-size: 36px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.tagline {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-weight: 300;
}

.maintenance-title {
  font-size: 24px;
  font-weight: bold;
  color: #34495e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.maintenance-message {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.contact-info {
  font-size: 14px;
  color: #7f8c8d;
}

.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.facebook {
  background: #1877f2;
}
.whatsapp {
  background: #25d366;
}
.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.tiktok {
  background: #000000;
}

@media (max-width: 768px) {
  .maintenance-container {
    padding: 40px 20px;
    margin-bottom: 30px;
  }

  .company-name {
    font-size: 28px;
  }

  .maintenance-title {
    font-size: 20px;
  }

  .social-footer {
    gap: 20px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
