/*
 * File: coming.css (Updated for Light Theme and Yellow Accent)
 * Description: Clean, modern, light-mode Coming Soon page with Wushu theme.
 */

/* Define the new colors for the light theme */
:root {
  --accent-yellow: #daa520; /* Deep Golden Rod for better contrast than pure yellow */
  --background-light: #ffffff; /* Crisp White Background */
  --container-bg: #fcfcfc; /* Near-white background for container subtlety */
  --text-dark: #222222; /* Near-Black for high contrast readability */
  --text-muted: #555555; /* Dark Gray for paragraphs */
}

/* 1. Global Reset & Modern Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f4f4f4; /* Very light gray page background */

  /* Modern Centering using Flexbox */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* 2. Container & Layout */
.container {
  background: var(--container-bg);
  padding: 80px 50px;
  border-radius: 8px;
  /* Subtle shadow for depth */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 550px;
  width: 90%;
  text-align: center;
}

/* 3. Header & Typography */
header h1 {
  font-size: 2.2em;
  /* Golden Yellow Accent for the Title */
  color: var(--accent-yellow);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

main h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

main p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* 4. Footer & Social Links */
footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee; /* Light separator line */
  font-size: 0.9em;
  color: var(--text-muted);
}

footer p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.copyright {
  margin-top: 20px;
  font-size: 0.8em;
  color: #aaaaaa;
}

.social-links a {
  /* Golden Yellow Accent for links */
  color: var(--accent-yellow);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 700;
  transition: color 0.2s;
}

.social-links a:hover {
  /* Slightly darker yellow on hover */
  color: #b8860b;
}

/* 5. Media Query for responsiveness */
@media (max-width: 480px) {
  .container {
    padding: 50px 20px;
  }

  main h2 {
    font-size: 2em;
  }
}
