/* ============================================================
   PETER KUIPERS — Landing Page Styles
   Font: Public Sans (Google Fonts)
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --gold:          #C4A77D;
  --gold-light:    #D4BC99;
  --gold-dim:      rgba(196, 167, 125, 0.15);
  --navy:          #0d1520;
  --white:         #ffffff;
  --white-dim:     rgba(255, 255, 255, 0.5);
  --white-faint:   rgba(255, 255, 255, 0.1);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Public Sans', sans-serif;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 32px 56px;
  overflow: hidden;
}

/* Leather background texture */
.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/blue_leather.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Subtle vignette overlay */
.page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    rgba(20, 35, 60, 0.18) 0%,
    rgba(8, 13, 22, 0.45) 100%
  );
  z-index: 0;
}

/* ── CONTENT ── */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  gap: 0;
}

/* ── LOGO ── */
.logo {
  width: min(520px, 72vw);
  display: block;
  animation: fadeUp 0.8s 0.1s ease both;
}

/* ── TAGLINE ── */
.tagline {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 167, 125, 0.85);
  letter-spacing: 0.03em;
  margin-top: 10px;
  animation: fadeUp 0.8s 0.25s ease both;
}

/* ── PILLARS ── */
.pillars {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.8s 0.4s ease both;
}

.pillar {
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  padding: 0 14px;
}

.sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1;
}

/* ── MOCKUP IMAGE ── */
.mockup-wrap {
  margin-top: 52px;
  animation: fadeUp 0.8s 0.55s ease both;
}

.mockup {
  width: min(620px, 78vw);
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.65));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.mockup:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.8));
}

/* ── DOWNLOAD BUTTON ── */
.btn-wrap {
  margin-top: 32px;
  animation: fadeUp 0.8s 0.7s ease both;
}

.btn {
  display: inline-block;
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 167, 125, 0.9);
  border: 1px solid rgba(196, 167, 125, 0.45);
  padding: 11px 36px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  background: rgba(196, 167, 125, 0.12);
  border-color: rgba(196, 167, 125, 0.8);
  color: #fff;
  letter-spacing: 0.32em;
}

/* ── LAUNCHING SOON ── */
.launching {
  margin-top: 44px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(196, 167, 125, 0.85);
  animation: fadeUp 0.8s 0.85s ease both;
}

/* ── REGIONS ── */
.regions {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1s ease both;
}

.region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.region svg {
  width: clamp(80px, 10vw, 120px);
  height: clamp(66px, 8.5vw, 100px);
  fill: rgba(255, 255, 255, 0.9);
  transition: fill 0.2s, transform 0.2s;
}

.region:hover svg {
  fill: #fff;
  transform: scale(1.06);
}

.region-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

/* ── FOOTER ── */
.footer {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 820px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  animation: fadeUp 0.8s 1.15s ease both;
}

.footer a {
  color: rgba(196, 167, 125, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .pillars {
    gap: 8px 0;
  }
  .pillar {
    padding: 0 8px;
  }
  .regions {
    gap: 28px;
  }
}
