/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

body {
  min-height: 100vh;
  background-image: linear-gradient(#e6e6fa 0%, #b8e7fa 100%);
}

header {
  background-color: #ffffff60;
  border: 1px solid #c6dbff;
}

.btn {
  width: 248px;
  font-size: 20px;
  font-weight: 600;
  padding: 17px 24px;
  color: #0d1321;
  border: 3px solid #ffa600cc;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  background-image: linear-gradient(90deg, #ffa500 0%, #ffd447 100%);
  transition: background-image 0.3s ease, border 0.3s ease;
}
.btn:hover {
  /* color: #fff; */
  border: 3px solid #0d1321cc;
  background-image: linear-gradient(#08e617 0%, #c6ff1a 100%);
}

#header-container {
  max-width: 87.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px auto;
}

#text-logo-box h1 {
  color: #0d1321;
  font-size: 28px;
  font-weight: 800; /* 800 = Extrabold */
  cursor: pointer;
}

#text-logo-box span {
  color: #ffa500;
}

#banner,
#discuss,
#target {
  width: 87.5%;
  margin: 100px auto 100px auto;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  background-color: #e6edf9;
  border: 2px solid #872bff10;
  border-radius: 16px;
  gap: 32px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0d1321;
  margin-bottom: 24px;
}

.banner-content p {
  font-size: 16px;
  color: #0d1321b3; /* B3 = 70% */
  margin-bottom: 32px;
}

.heading-content {
  width: 852px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.heading-content h2 {
  color: #0d1321;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.heading-content p {
  color: #0d1321b3;
}

.discuss-card {
  display: flex;
  padding: 48px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background-color: #e6edf9;
}

.discuss-content h2 {
  color: #0d1321b3;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.discuss-content p {
  color: #0d1321b3;
  font-size: 16px;
  margin-bottom: 32px;
}

#inspiration {
  width: 76.4%;
  margin: 100px auto 100px auto;
}

.heading-content .ins {
  max-width: 852px;
}

#video {
  text-align: center;
}

#video-content {
  margin: 0 auto 0 auto;
  max-width: 1100px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #0d132133;
  overflow: hidden;
}

#video-content iframe {
  display: block;
  width: 100%;
  height: 620px;
  border-radius: 16px;
}

#target-card-container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.target-card {
  width: 360px;
  height: 244px;
  background-image: linear-gradient(#e6edf9 0%, #9de5ff 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.target-card h2,
.target-card img {
  margin-bottom: 24px;
}

.target-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0d1321;
}

.target-card a {
  font-size: 16px;
  font-weight: 700;
  color: #0d1321;
}

#footer {
  padding: 32px 150px;
  background-color: #ffffff99;
  border-top: 1px solid #c6dbff;
}

#footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  font-size: 20px;
  font-weight: 600;
  color: #0d1321;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.footer-right a img {
  font-size: 36px;
}
