/*
Theme Name: Solid Chapter Coming Soon
Theme URI: https://solidchapter.com
Author: The Solid Chapter
Description: One-page coming-soon theme for The Solid Chapter — official Tamil creator merch. Shows the coming-soon page on every URL until the full store launches.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.0
License: GNU General Public License v2 or later
Text Domain: solid-chapter-coming-soon
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, #26262b 0%, #161618 60%, #0e0e10 100%);
  color: #f2f2f2;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  overflow-x: hidden;
}

/* keep the page clean even when the WP admin bar is present */
html { margin-top: 0 !important; }

.sc-logo {
  width: min(300px, 62vw);
  height: auto;
  animation: sc-rise 1s ease both;
}

.sc-tag {
  margin-top: 34px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #e12b38;
  animation: sc-rise 1s 0.15s ease both;
}

h1 {
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 5.4vw, 3rem);
  letter-spacing: -0.01em;
  animation: sc-rise 1s 0.25s ease both;
}

.sc-sub {
  margin-top: 14px;
  max-width: 440px;
  color: #9a9aa2;
  font-size: 0.98rem;
  line-height: 1.65;
  animation: sc-rise 1s 0.35s ease both;
}

.sc-bar {
  margin-top: 34px;
  width: min(260px, 60vw);
  height: 3px;
  border-radius: 3px;
  background: #2c2c31;
  overflow: hidden;
  animation: sc-rise 1s 0.45s ease both;
}
.sc-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 42%;
  border-radius: 3px;
  background: #e12b38;
  animation: sc-load 2.6s ease-in-out infinite alternate;
}

.sc-socials {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: sc-rise 1s 0.55s ease both;
}
.sc-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8d8dc;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border: 1px solid #34343a;
  border-radius: 999px;
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.sc-socials a:hover {
  border-color: #e12b38;
  color: #fff;
  transform: translateY(-2px);
}

.sc-foot {
  margin-top: 48px;
  color: #55555c;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  animation: sc-rise 1s 0.65s ease both;
}

@keyframes sc-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sc-load {
  from { width: 12%; }
  to { width: 88%; }
}

@media (prefers-reduced-motion: reduce) {
  .sc-logo, .sc-tag, h1, .sc-sub, .sc-bar, .sc-socials, .sc-foot { animation: none; }
  .sc-bar::after { animation: none; width: 42%; }
}
