:root {
  --orange: #ff6a00;
  --orange-light: #ff9d4d;
  --orange-bright: #ffd2b0;
  --orange-dark: #cc5500;
  --black: #000000;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: #000;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.coming-soon {
  min-height: 100vh;
  width: 100%;
  padding: 40px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 60px);

  text-align: center;
}

/* Logo */
.logo {
  width: min(78vw, 760px);
  height: auto;
  display: block;
}

/* COMMING SOON met glimmend metallic effect */
h1 {
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(4px, 1vw, 14px);
  line-height: 1;

  background: linear-gradient(
    90deg,
    var(--orange-dark) 0%,
    var(--orange) 20%,
    var(--orange-light) 35%,
    #ffffff 50%,
    var(--orange-light) 65%,
    var(--orange) 80%,
    var(--orange-dark) 100%
  );

  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: shine 4s linear infinite;

  text-shadow:
    0 0 10px rgba(255, 106, 0, 0.45),
    0 0 20px rgba(255, 106, 0, 0.25),
    0 0 40px rgba(255, 106, 0, 0.15);
}

@keyframes shine {
  0% {
    background-position: -150% center;
  }
  100% {
    background-position: 150% center;
  }
}

/* Contact box */
.contact-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 18px;
  padding: 24px 36px;
  min-width: min(90vw, 420px);

  display: flex;
  flex-direction: column;
  gap: 12px;

  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 106, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-info p {
  margin: 0;
  color: var(--white);
}

.contact-info a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--orange-light);
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

/* Tablet */
@media (max-width: 900px) {
  .coming-soon {
    padding: 32px 20px;
  }

  .logo {
    width: min(82vw, 620px);
  }
}

/* Mobiel */
@media (max-width: 600px) {
  .coming-soon {
    padding: 28px 18px;
    gap: 32px;
  }

  .logo {
    width: 88vw;
  }

  h1 {
    letter-spacing: 4px;
  }

  .contact-info {
    width: 100%;
    padding: 20px 24px;
    font-size: 1rem;
  }
}

/* Kleine telefoons */
@media (max-width: 380px) {
  .logo {
    width: 92vw;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .contact-info {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
}