/* ---------------------------
   Yadez Coming Soon Styles
   Minimal Brutalism Aesthetic
---------------------------- */

:root {
  --navy: #1a243d;
  --gold: #d4a74c;
  --white: #ffffff;
  --offwhite: #f2f2f2;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
}

/* Center layout */

.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  text-align: center;
}

/* Logo (larger now) */

.logo {
  width: 240px;
  height: auto;
  margin-bottom: 25px;
}

/* Main Heading */

h1 {
  font-size: 3rem;
  margin: 10px 0 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Sub text */

.brand p {
  color: var(--offwhite);
  font-size: 1rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Footer */

.footer {
  margin-top: 40px;
  padding-top: 10px;
  border-top: none;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--offwhite);
}

/* Social Links */

.social-links {
  margin-bottom: 8px;
}

.social-links a {
  color: var(--gold);   /* same gold as heading */
  text-decoration: underline;
  margin: 0 14px;
  font-weight: bold;
}

/* Mobile */

@media (max-width: 480px) {

  h1 {
    font-size: 2rem;
  }

  .logo {
    width: 180px;
  }

}