:root {
  --Primary: #effefb;
  --Secondary: #045f71;
  --Neutral: #475467;
  --Lime-Yellow: #ebe717;
  --White-White: #fff;
  --light-green: #45beab;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url(./assets/images/mobile_bg_image.png) lightgray 50% / cover
    no-repeat;
  background-color: #5fd4cc;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 135px;
}

section {
  margin: 0 auto;
}

button {
  width: 80%;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: center;
  border-radius: 103px;
  background: var(--Secondary-900, #045f71);
  border: none;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  transition: background-color 0.5s ease, color 0.5s ease;
}

#mainTitle {
  align-self: stretch;
  color: var(--White-White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 48.068px;
  font-style: normal;
  font-weight: 700;
  line-height: 46.065px; /* 95.833% */
  letter-spacing: 1.442px;
  text-transform: uppercase;
}

#tagline {
  color: var(--Primary-50, #effefb);
  text-align: center;
  font-family: "Open Sans";
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 35px; /* 152.174% */
  letter-spacing: 0.69px;
  margin-bottom: 150px;
}

.sports-links {
  margin: 0 auto;
  width: 95%;
  gap: 8px;
}

.sport {
  text-align: center;
  margin-bottom: 8px;
  padding: 28px 32px;
  border-radius: 4px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    103deg,
    rgba(255, 255, 255, 0.1) -29.34%,
    rgba(255, 255, 255, 0.5) 391.31%
  );
  backdrop-filter: blur(53.501224517822266px);
}

#athletics-logo {
  flex: 0 1 284px;
}

.locationCard {
  display: flex;
  padding: 35px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  width: 75%;
  margin: 44px auto;
}

.contactUs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#inquiries {
  width: 248px;
  margin: 0;
  color: var(--Neutral-600, #475467);
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 155% */
}

.phone {
  display: flex;
  height: 23px;
  align-items: center;
  gap: 4px;
  color: var(--Neutral-600, #475467);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.email {
  display: flex;
  height: 23px;
  align-items: center;
  gap: 4px;
  color: var(--Neutral-600, #475467);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.footer {
  width: 100vw;
  padding: 28px 0;
  text-align: center;
  background-color: var(--Secondary, #045f71);
}

h2 span {
  color: var(--Lime-Yellow);
}

#copyright {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: 24px; /* 150% */
}

@media screen and (min-width: 768px) {
  body {
    background: url("./assets/images/jpeg-optimizer_header_image.jpg") no-repeat
      center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
  }

  #mainTitle {
    font-size: 91.2px;
    font-weight: 800;
    line-height: 87.4px; /* 95.833% */
    letter-spacing: 2.736px;
  }

  .hero {
    width: 100%;
    max-width: 950px;
    text-align: center;
  }

  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust based on your layout */
    margin: 0 auto;
  }

  button {
    width: 40%;
    align-self: center;
  }

  #tagline {
    width: 608px;
  }

  .sports-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .sport {
    flex: 1;
    margin-bottom: 0;
  }

  .locationCard {
    width: 40%;
  }

  #inquiries {
    width: 100%;
  }

  .contactUs {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (min-width: 1180px) {
  .sports-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .sport {
    flex: 1;
    margin-bottom: 0;
  }

  .contactUs {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .footerContent {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 40px;
  }
}
