/* Optional: use your existing theme tokens if you like */
:root {
  --text: #fff;
  --text-muted: rgba(255,255,255,.85);
  --shadow: 0 20px 40px rgba(0,0,0,.55);
  --speed: .25s;
}

/* Reset basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #000;
}

/* Full-screen wrapper */
.splash {
  position: relative;
  min-height: 100vh;
  padding: 2rem 5vw;
  display: flex;
  align-items: center;      /* vertical center for main content */
  justify-content: center;  /* horizontal center for main content */
  overflow: hidden;
}

/* Background image layer */
.splash-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("../pics/frontangle-1.jpg"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Dark overlay for legibility */
.splash::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: -1;
}

/* Logo in the top-left */
.splash-logo {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  left: clamp(16px, 3vw, 32px);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.splash-logo img {
  display: block;
  height: 100px;
  width: auto;
}

/* Centered content block */
.splash-center {
  text-align: center;
  max-width: 640px;
  padding: 2.25rem 2.5rem;
  border-radius: 18px;
  background: rgba(0,0,0,.30);
  box-shadow: var(--shadow);
  
}

.splash-center h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.splash-center p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted);
}

/* Social icons at bottom-center */
.splash-social {
  position: absolute;
  bottom: clamp(20px, 3vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
 
 
  text-decoration: none;
  transition:
    transform var(--speed) ease,
    border-color var(--speed) ease,
    background var(--speed) ease,
    box-shadow var(--speed) ease;
}

.social-link img {
  display: block;
  width: 30px;
  height: 30px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(0,0,0,.85);
  box-shadow: 0 0 0 1px rgba(255,255,255,.4);
  outline: none;
}

/* Small-screen tweaks */
@media (max-width: 600px) {
  .splash-center {
    padding: 1.75rem 1.5rem;
  }

  .splash-logo img {
    height: 52px;
  }
}
.splash-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.8);
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    background var(--speed) ease,
    color var(--speed) ease,
    transform var(--speed) ease,
    box-shadow var(--speed) ease,
    border-color var(--speed) ease;
}

.splash-cta:hover,
.splash-cta:focus-visible {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.7);
  outline: none;
}
