/* ==========================================================================
   Blistar BV — placeholderpagina
   Hebbit strategische marketingcommunicatie · september 2026
   ========================================================================== */

:root {
  --ink:        #05090c;   /* diepzwart met een blauwe ondertoon */
  --ink-deep:   #0b1319;   /* horizon / waterlijn */
  --foam:       #f1f4f3;   /* gebroken wit, hoofdtekst */
  --mist:       rgba(241, 244, 243, 0.60);  /* secundaire tekst */
  --haze:       rgba(241, 244, 243, 0.14);  /* haarlijnen */
  --lime:       #afcb07;   /* Blistar-groen, exact uit het logo */
  --measure:    52ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  background-color: var(--ink);
  background-image:
    radial-gradient(90% 60% at 50% 10%, rgba(24, 44, 56, 0.34) 0%, rgba(5, 9, 12, 0) 65%),
    linear-gradient(180deg, rgba(5, 9, 12, 0) 60%, var(--ink-deep) 100%);
  background-repeat: no-repeat;
  position: relative;
  color: var(--foam);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(0.98rem, 0.93rem + 0.22vw, 1.06rem);
  line-height: 1.68;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* fijne korrel, zodat het zwart niet vlak en digitaal oogt */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* een nauwelijks zichtbare waterlijn onderin; scrollt mee met de pagina */
body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(175, 203, 7, 0) 0%,
    rgba(175, 203, 7, 0.30) 50%,
    rgba(175, 203, 7, 0) 100%);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
  margin: auto;
}

/* --- logo ---------------------------------------------------------------- */

.logo {
  display: block;
  width: clamp(10.5rem, 26vw, 15rem);
  height: auto;
  margin: 0 auto;
}

/* --- Care for Yachts ----------------------------------------------------- */

.tagline {
  margin: clamp(1.6rem, 3.4vw, 2.25rem) 0 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-variant-caps: small-caps;
  font-variant: small-caps;
  font-weight: normal;
  font-size: clamp(1rem, 0.85rem + 0.8vw, 1.35rem);
  letter-spacing: 0.34em;
  text-indent: 0.34em;   /* compenseert de laatste letterspatie */
  line-height: 1.3;
  color: var(--foam);
}

/* --- lopende tekst ------------------------------------------------------- */

.intro {
  max-width: var(--measure);
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
}

.intro p { margin: 0 0 1.15em; text-wrap: pretty; }

/* tweede taalblok: eigen ruimte, met een fijne scheiding erboven */
.intro + .intro {
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-top: clamp(1.5rem, 3.5vw, 2.25rem);
  border-top: 1px solid var(--haze);
}
.intro p:last-child { margin-bottom: 0; }

.intro .lead { color: var(--foam); }
.intro .notice { color: var(--mist); }

/* --- contactgegevens ----------------------------------------------------- */

.contact {
  max-width: 40rem;
  margin: clamp(2rem, 4.5vw, 2.9rem) auto 0;
  padding-top: clamp(1.35rem, 3vw, 1.9rem);
  border-top: 1px solid var(--haze);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--mist);
  font-style: normal;
}

.contact .company {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--foam);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact .row { display: block; }

.contact .sep {
  display: inline-block;
  padding: 0 0.7em;
  color: rgba(241, 244, 243, 0.28);
}

.contact a {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid rgba(175, 203, 7, 0.35);
  padding-bottom: 0.1em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--foam);
  border-color: var(--lime);
}

.contact a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}

/* --- entree: één rustige beweging bij het laden -------------------------- */

.page > * {
  animation: rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.page > .logo    { animation-delay: 0.05s; }
.page > .tagline { animation-delay: 0.35s; }
.page > .intro   { animation-delay: 0.5s;  }
.page > .contact { animation-delay: 0.65s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(0.9rem); }
  to   { opacity: 1; transform: none; }
}

/* --- kleinere schermen --------------------------------------------------- */

@media (max-width: 34rem) {
  body { font-size: 0.95rem; }

  .contact { line-height: 1.9; }
  .contact .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact .row > .sep { display: none; }

  body::after { bottom: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .page > * { animation: none; }
  .contact a { transition: none; }
}
