/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 


  
/* Full screen background with dark overlay */
.ace-maintenance {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #111 no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.ace-maintenance::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* subtle overlay */
  z-index: -1; /* push behind content */
}

/* Content wrapper */
.ace-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  animation: fadeIn 1s ease-in-out;
}

/* Logo styled as circle */
.ace-logo img {
  width: 160px;
  height: 160px;
  object-fit: cover;       /* ensures image fills circle */
  border-radius: 50%;      /* makes it circular */
  border: 4px solid #fff;  /* white border for contrast */
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.ace-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

/* Title styling with gradient that works on most images */
.ace-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #FFD700, #FF8C00, #FF4500); /* gold → orange → red */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: fadeInDown 1s ease;
}

/* Description styling */
.ace-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease;
}

/* Email form */
.ace-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ace-form input[type="email"] {
  padding: 12px;
  width: 60%;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: box-shadow 0.3s, transform 0.2s;
}
.ace-form input[type="email"]:focus {
  box-shadow: 0 0 10px rgba(255,255,255,0.9);
  transform: scale(1.02);
}
.ace-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff5722, #e64a19);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.ace-form button:hover {
  background: linear-gradient(135deg, #ff7043, #d84315);
  transform: scale(1.05);
}

/* Preview note */
.ace-preview-note {
  margin-top: 15px;
  font-size: 0.9em;
  color: #ddd;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}