/* basis */
* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Soleil';
  src: url('fonts/SoleilBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background: #616D38;
  color: #FFF6DC;
  font-family: Soleil;
  font-weight: 700;

  /* responsive tekst */
  font-size: clamp(18px, 3vw, 34px);

  /* layout */
  margin: 0;
  min-height: 100vh;
  padding: clamp(16px, 4vw, 48px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);

  text-align: center;
}

.Pina-logo {
  width: clamp(240px, 60vw, 620px);
  height: auto;
  display: block;
  color: #FFF6DC;

  /* optische correctie */
  /* transform: translateX(15%); */
}
.logo {
  display: flex;
  justify-content: center;
}

/* alleen nodig bij inline SVG */
.Pina-logo path {
  fill: currentColor !important;
}

/* Instagram */
.instagram {
  width: clamp(44px, 9vw, 72px);
  height: auto;
  display: block;
}


/* Instagram klikgebied */
.Insta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* adres + email */
.adres,
.email {
  font-size: clamp(16px, 2.4vw, 28px);
  line-height: 1.35;
}

/* email link */
.email a {
  color: #FFF6DC;
  text-decoration: none;
  font-weight: 700;
}

.email a:hover {
  text-decoration: underline;
}
