@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --green: #078b55;
  --black: #111111;
  --border: #555555;

  --page-padding: clamp(35px, 8.35vw, 140px);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;

  font-family: "Poppins", Arial, sans-serif;
  color: var(--black);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   PAGE BACKGROUND
   ========================================================= */

body {
  background:
    radial-gradient(
      ellipse 48% 38% at 89% 55%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(238, 240, 242, 0.55) 70%,
      transparent 73%
    ),

    radial-gradient(
      ellipse 50% 32% at 51% 43%,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.8) 48%,
      transparent 74%
    ),

    radial-gradient(
      ellipse 30% 58% at 3% 48%,
      #ffffff 0%,
      #f1f3f4 66%,
      transparent 74%
    ),

    linear-gradient(
      135deg,
      #f3f4f5 0%,
      #ffffff 38%,
      #f2f3f4 100%
    );
}


/* =========================================================
   DECORATIVE WAVE BACKGROUND
   ========================================================= */

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;

  pointer-events: none;

  border-radius: 50%;
}

body::before {
  width: 115%;
  height: 82%;

  top: 9%;
  left: -10%;

  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 8px,
      rgba(205, 209, 212, 0.18) 9px 10px
    );

  transform:
    rotate(-9deg)
    scaleX(1.4);

  opacity: 0.65;
}

body::after {
  width: 75%;
  height: 70%;

  top: 4%;
  right: -12%;

  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 9px,
      rgba(215, 217, 220, 0.16) 10px 11px
    );

  transform:
    rotate(12deg)
    scaleX(1.35);

  opacity: 0.5;
}


/* =========================================================
   PAGE
   ========================================================= */

.page {
  width: min(100%, 1665px);
  min-height: 100vh;

  margin: 0 auto;
  padding:
    78px
    var(--page-padding)
    117px;
}


/* =========================================================
   TOPBAR
   ---------------------------------------------------------
   Flexbox handles the horizontal positioning of the
   construction graphic and NITA logo.
   ========================================================= */

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  width: 100%;
}


/* Construction image */

.construction {
  flex: 0 0 345px;

  width: 345px;
  margin: 0 0 0 45px;
}

.construction img {
  width: 100%;
  height: auto;
}


/* NITA logo */

.brand {
  flex: 0 1 335px;

  width: 335px;
  margin-top: 0;
}

.brand img {
  width: 100%;
  height: auto;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.content {
  width: min(870px, 100%);

  margin-top: 36px;
}


/* Heading */

.intro h1 {
  margin: 0 0 13px;

  color: #000;

  font-size: clamp(42px, 3.85vw, 64px);
  line-height: 1.1;
  font-weight: 700;

  letter-spacing: -2.5px;
}


/* Description */

.intro p {
  max-width: 875px;

  margin: 0;

  color: #111;

  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.42;
  font-weight: 400;

  letter-spacing: -0.35px;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-links {
  margin-top: 27px;
}

.social-links ul {
  display: flex;
  align-items: center;

  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}
.social-links li {
  min-width: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 39px;
  height: 39px;

  border-radius: 50%;

  background: #fff;

  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  /* background: #000; */
}

.social-links img {
  width: 21px;
  height: 21px;

  object-fit: contain;
}


/* =========================================================
   EMAIL
   ========================================================= */

.email {
  margin: 32px 0 0;

  font-style: normal;
}

.email p {
  margin: 0;

  color: var(--green);

  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
}

.email a {
  color: var(--green);
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.quick-links {
  margin-top: 57px;
}

.quick-links ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;

  gap: clamp(18px, 2vw, 48px);

  margin: 0;
  padding: 0;

  list-style: none;
}

.quick-links li {
  display: flex;
  min-width: 0;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 61px;
  height: 100%;

  padding: 14px 20px;

  border: 1px solid var(--border);

  color: #111;

  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;

  text-align: center;

  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.quick-links a:hover {
  color: #fff;
  background: #111;
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

  .page {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .construction {
    flex-basis: 300px;
    width: 300px;
    margin-left: 0;
  }

  .brand {
    flex-basis: 285px;
    width: 285px;
  }

  .content {
    width: min(850px, 75vw);
  }

  .quick-links ul {
    gap: 25px;
  }

  .quick-links a {
    font-size: 18px;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

  .page {
    padding:
      40px
      35px
      50px;
  }

  /*
   * Stack the top section naturally.
   */

  .topbar {
    align-items: center;
    flex-direction: column;
    gap: 25px;
  }

  .construction {
    flex-basis: auto;

    width: min(285px, 70vw);
    margin: 0;
  }

  .brand {
    flex-basis: auto;

    width: min(245px, 65vw);
    order: -1;
  }

  /*
   * Everything below now naturally follows the
   * content above it.
   */

  .content {
    width: 100%;
    margin-top: 35px;
  }

  .intro h1 {
    font-size: clamp(38px, 7vw, 52px);
    letter-spacing: -1.5px;
  }

  .intro p {
    max-width: 700px;
    font-size: 18px;
  }

  .social-links {
    margin-top: 28px;
  }

  .email {
    margin-top: 30px;
  }

  .quick-links {
    margin-top: 55px;
  }

  .quick-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}

@media (max-width: 560px) {
  .quick-links ul {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .page {
    padding:
      25px
      22px
      35px;
  }

  .topbar {
    gap: 22px;
  }

  .brand {
    width: min(205px, 70vw);
  }

  .construction {
    width: min(245px, 75vw);
  }

  .content {
    margin-top: 28px;
  }

  .intro h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .intro p {
    font-size: 16px;
    line-height: 1.5;
  }

  .social-links {
    margin-top: 25px;
  }

  .social-links ul {
    gap: 9px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links img {
    width: 19px;
    height: 19px;
  }

  .email {
    margin-top: 27px;
  }

  .email p {
    font-size: 17px;
  }

  .quick-links {
    margin-top: 42px;
  }

  .quick-links a {
    min-height: 56px;
    font-size: 16px;
  }
}