/*
Theme Name:  Wallwidemedia Coming Soon
Theme URI:   https://wallwidemedia.com
Author:      Wallwidemedia
Author URI:  https://wallwidemedia.com
Description: A professional coming soon theme for Wallwidemedia.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wallwidemedia
Tags:        coming-soon, one-page, full-width-template
*/

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Body ── */
body {
  min-height: 100vh;
  background: #1a2744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  padding: 3rem 1.5rem;
}

/* ── Card ── */
.wwm-card {
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: 5rem 3.5rem;
  opacity: 0;
  animation: wwmFadeIn 1.2s ease 0.2s forwards;
}

/* ── Brand ── */
.wwm-brand {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3rem;
}

/* ── Headline ── */
.wwm-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
}

.wwm-headline .wwm-accent {
  color: #e05a2b;
  font-style: italic;
}

/* ── Body text ── */
.wwm-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

/* ── Notify button ── */
.wwm-notify-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-bottom: 2.5rem;
  text-decoration: none;
}

.wwm-notify-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ── Socials ── */
.wwm-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.wwm-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.wwm-socials a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.wwm-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ── Animation ── */
@keyframes wwmFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .wwm-card {
    padding: 3rem 1.5rem;
  }
}
