* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: #0f1c2e; /* bleu nuit Bornzz */
  color: #f0e4cf;      /* ivoire Bornzz */
}

.page {
  width: 100vw;
  height: 100vh;
  padding: 2vh 2vw; /* 2% hauteur et 2% largeur écran */
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}


/* Cadre rouge responsive */
.frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 6px solid #d1203b; /* rouge Bornzz, épaisseur fixe */
  display: flex;
  padding: clamp(24px, 5vw, 48px);
}


.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Bloc central */
.center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: auto;
  margin-bottom: auto;
}

.logo {
  width: min(220px, 60vw);
  height: auto;
}

.tagline {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.socials {
  display: flex;
  gap: 16px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #f0e4cf;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f0e4cf;
  font-weight: 600;
  font-size: 1.1rem;
}

.social:hover {
  background: #f0e4cf;
  color: #0f1c2e;
}
