body {
  background: url("/Assets/background.png") no-repeat center center fixed;
  background-size: cover;
  /* Makes it stretch to cover the whole screen */
  font-family: var(--secondMainFont);
}

#home,
#mission,
#developers,
#jobs,
#games {
  scroll-margin-top: 120px;
  /* adjust this to your nav height + extra padding */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  overflow-y: auto;
}

#home,
#developers {
  /* space so content isn’t hidden behind the fixed bars */
  padding-bottom: 210px;
  /* ≈ bottom bar height (164.3px) */
}

:root {
  --mainFont: 'Arial';
  --secondMainFont: 'Comic Sans MS';
}

* {
  transition: all 0.3s ease;

}

.title {
  font-family: var(--secondMainFont);
  font-size: 50px;
  color: #FFFFFF;
  margin-top: -255px;
  margin-left: 200px;
}

.image {
  width: 300px;
  margin-left: -50px;
  margin-top: 20px;
}

.slogan {
  color: #FFFFFF;
  margin-left: 200px;
  margin-top: -25px;
}

.socials {
  display: flex;
  flex-direction: row;
  margin-left: 210px;

}

.navigationBar {
  background: #373737;
  position: fixed;
  top: -1px;
  right: -1px;
  left: -1px;
  padding-left: 20px;
  height: 44.3px;
  padding-left: 1060px;
}

.navigationLinks {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin-top: 2.8px;
  font-weight: bold;
  font-size: 25px;
  margin-left: -85px;
}

.navigationLinks2 {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin-top: 2.8px;
  margin-left: 25px;
  font-weight: bold;
  font-size: 25px;
}

.navigationLinks3 {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin-top: 2.8px;
  margin-left: 25px;
  font-weight: bold;
  font-size: 25px;
}

.navigationLinks4 {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin-top: 2.8px;
  margin-left: 25px;
  font-weight: bold;
  font-size: 25px;
}

.navigationLinks:hover,
.navigationLinks2:hover,
.navigationLinks3:hover,
.navigationLinks4:hover {
  color: #8284f8;
}

.social-btn {
  filter: brightness(0) invert(1);
  fill: #FFFFFF;
  color: #FFFFFF;
}

.social-btn:hover {
  fill: #8284f8;
  color: #8284f8;
  cursor: pointer;
  transform: scale(1.2);
}

/* ===== Masked SVG icons so we can color external SVGs ===== */
.icon {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-color: #FFFFFF;
  /* default icon color */
  /* Use the SVG as a mask so bg color becomes the icon fill */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease, background-color 0.2s ease;
  margin-right: 28px;
}

/* Point each icon to its SVG file */
.icon.discord {
  -webkit-mask-image: url('/Assets/discord.svg');
  mask-image: url('/Assets/discord.svg');
}

.icon.dollar {
  -webkit-mask-image: url('/Assets/money.svg');
  mask-image: url('/Assets/money.svg');
}

.icon.youtube {
  -webkit-mask-image: url('/Assets/youtube.svg');
  mask-image: url('/Assets/youtube.svg');
}

/* Hover colors + scale */
.icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.icon.discord:hover {
  background-color: #5865F2;
}

/* Discord blurple */
.icon.dollar:hover {
  background-color: #22c55e;
}

/* green */
.icon.youtube:hover {
  background-color: #ff0033;
}

/* YouTube red */

.direct-shop-btn {
  color: #000000;
  text-decoration: none;
  padding: 13px;
  background: #5865F2;
  width: fit-content;
  font-size: 24px;
  border-radius: 15px;
  font-weight: bold;
}

.direct-aboutus-btn {
  color: #000000;
  text-decoration: none;
  padding: 13px;
  background: #5865F2;
  width: fit-content;
  font-size: 24px;
  border-radius: 15px;
  font-weight: bold;
}

.direct-shop-btn:hover,
.direct-aboutus-btn:hover {
  background: #8284f8;
  border: solid 2px #FFFFFF;
  color: #FFFFFF;
}

.direct-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center buttons horizontally */
  gap: 16px;
  /* space between buttons */
  width: max-content;
  /* shrink-wrap to its contents */
  margin: 0 auto;
  /* center the whole block horizontally */
  margin-top: -170px;
  /* pull buttons upward */

}

.bottom-bar {
  background: #373737;
  position: fixed;
  bottom: -1px;
  right: -1px;
  left: -1px;
  padding-left: 20px;
  height: 164.3px;
  padding-left: 20px;
  color: #FFFFFF;
  font-family: var(--mainFont);
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Vertically center the text */
}

.footer-key-link {
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 4px;
  font-weight: bold;
}

.footer-key-link:hover {
  color: #5865F2;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 4px solid #030303;
  border-radius: 15px;
  margin: 0;
}

#mission {
  background: rgba(255, 255, 255, 0.8);
  /* Semi-transparent white background */
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto;
  /* Center the section and add vertical spacing */
  max-width: 800px;
  /* Limit the width for better readability */
  margin-bottom: 230px;
  /* ≈ bottom bar height (164.3px) */
  margin-top: 110px;
  /* ≈ bottom bar height (164.3px) */
}

.mission-title {
  font-family: var(--secondMainFont);
  font-size: 36px;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}

.mission-description {
  font-family: var(--mainFont);
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  text-align: center;
}

#developers, #jobs, #games {
  background: rgba(255, 255, 255, 0.8);
  /* Semi-transparent white background */
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto;
  margin-top: 230px;
  /* Center the section and add vertical spacing */
  max-width: 800px;
  /* Limit the width for better readability */
  margin-bottom: 210px;
  /* ≈ bottom bar height (164.3px) */
}

.developers-title, .jobs-title, .games-title {
  font-family: var(--secondMainFont);
  font-size: 36px;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}

.developers-description, .jobs-description, .games-description {
  font-family: var(--mainFont);
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  text-align: center;
}
.learn-more-kkd {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #5865F2;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-left: 340px;
}
.learn-more-kkd:hover {
  background-color: #8284f8;
  color: #FFFFFF;
  text-decoration: underline;
}