@font-face {
  font-family: "DovesType";
  src: url("./DovesType-Headline.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --bg: #B3871A;
  --text: #ffffff;
  --circle: #7BB31A;

  /* SPACING SYSTEM */

  --space-xs: 12px;
  --space-sm: 24px;
  --space-md: 40px;
  --space-lg: 56px;
  --space-xl: 80px;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);

  overflow-x: hidden;

  position: relative;

  font-family: "DovesType", serif;
}

/* BACKGROUND */

.circles {
  position: fixed;
  inset: 0;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}

.circle {
  position: absolute;

  border-radius: 50%;

  background: var(--circle);

  will-change: transform;
}

/* LAYOUT */

.content {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: var(--space-xl) 24px;
}

.container {
  width: 100%;
  max-width: 1200px;

  text-align: center;
}

/* TITLE */

h1 {
  font-size: clamp(4rem, 6vw, 5rem);

  line-height: 0.92;

  text-transform: uppercase;

  letter-spacing: 0.06em;

  font-weight: normal;

  margin-bottom: var(--space-md);
}

/* INTRO */

.intro {
  width: 100%;
  max-width: 760px;

  margin-inline: auto;
  margin-bottom: var(--space-lg);

  font-size: 1.7rem;

  line-height: 1.22;

  letter-spacing: 0.02em;

  font-weight: normal;
}

/* DATE */

.date {
  font-size: 2.5rem;

  line-height: 1.1;

  letter-spacing: 0.04em;

  font-weight: normal;

  margin-bottom: var(--space-lg);
}

/* INFO */

.info-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: var(--space-md);

  max-width: 900px;

  margin: 0 auto 40px auto;
}

.section-title {
  font-size: 1rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  margin-bottom: var(--space-xs);

  font-weight: normal;
}

.section-content {
  font-size: 1.3rem;

  line-height: 1.2;

  letter-spacing: 0.01em;
}

/* INSTAGRAM */

.instagram {
  margin-bottom: var(--space-md);
}

.instagram a {
  color: white;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  text-decoration: none;

  font-size: 1.1rem;
}

.instagram svg {
  width: 22px;
  height: 22px;

  fill: currentColor;

  flex-shrink: 0;
}

/* LOGOS */

.logos {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 36px;

  margin-bottom: var(--space-md);
}

.logos img {
  width: auto;
  object-fit: contain;
}

.logo-recessed {
  height: 22px;
}

.logo-hypha {
  height: 42px;
}

.logo-cheapside {
  height: 34px;
}

/* ADDITIONAL INFO */

.additional-info {
  max-width: 760px;

  margin: 0 auto;

  font-size: 1.15rem;

  line-height: 1.45;

  text-align: center;
}

.additional-info a {
  color: white;

  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.additional-info a:hover {
  border-bottom-color: white;
}

/* MOBILE */

@media (max-width: 768px) {

  :root {

    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: 32px;
    --space-lg: 44px;
    --space-xl: 60px;

  }

  .content {
    padding: var(--space-xl) 24px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .intro {
    font-size: 1.25rem;

    line-height: 1.3;
  }

  .date {
    font-size: 1.8rem;

    max-width: 260px;

    margin-inline: auto;
    margin-bottom: var(--space-lg);
  }

  .info-grid {
    grid-template-columns: 1fr;

    gap: var(--space-md);
  }

  .section-content {
    font-size: 1.1rem;
  }

  .instagram a {
    font-size: 1rem;
  }

  .logos {
    gap: 20px;
  }

  .logo-recessed {
    height: 18px;
  }

  .logo-hypha {
    height: 34px;
  }

  .logo-cheapside {
    height: 28px;
  }

  .additional-info {
    font-size: 1rem;

    line-height: 1.5;
  }

}