/* ==========================================================================
   Homepage Styles - TempestXI
   ========================================================================== */

/* Hero Section - extends base.css hero styles */
.hero-content {
  text-align: center;
  padding: 0 0 20px;
}

.hero-tagline {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}

/* Homepage Main Content */
.homepage-content {
  padding: 30px 0 40px;
}

/* Server Status Section */
.server-status-section {
  background: linear-gradient(180deg, #faf6ed 0%, #f5e6c8 100%);
  border: 1px solid #c9a227;
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.status-indicator.online .status-dot {
  background: var(--online);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-glow 2s infinite;
}

.status-indicator.offline .status-dot {
  background: var(--offline);
  animation: none;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.status-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
}

.status-indicator.online .status-text {
  color: var(--online);
}

.status-indicator.offline .status-text {
  color: var(--offline);
}

/* Welcome Section */
.welcome-section {
  max-width: 750px;
  margin: 20px auto 8px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.welcome-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
  margin: 0 auto 20px;
}

.welcome-section h2 {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.welcome-section p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  font-style: italic;
}

.welcome-section p:last-child {
  margin-bottom: 0;
}

.welcome-section::after {
  content: '\2726';
  display: block;
  margin-top: 20px;
  color: #c9a227;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content {
    padding: 16px 0;
  }

  .server-status-section {
    padding: 16px;
    margin: 0 auto;
  }
}
