body{
    background-color: rgb(40, 30, 60);
    background-image: linear-gradient(rgba(78, 184, 255, 0) 0%, rgb(40, 30, 60) 15%), url(Images/GallaxyBG.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    margin: 0;
    color: white;
    font-family: Outfit, Rubik, Archivo;
    text-align: center;
}

a{
  text-decoration: none;
  color: rgb(219, 127, 255);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #782b8494;
  background-image: linear-gradient(rgb(139, 71, 170) 30%, rgb(109, 78, 112) 100%);
  display: flex;
}
ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}
ul li a:hover {
  background-color: #11111152;
}

header img{
  margin-top: 50px;
}
Header h2{
  background: linear-gradient(#ffffff, #ffffff89);
  background-clip: auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#Announcement{
  visibility: visible;
  background-color: rgb(186, 125, 255);
  color: rgb(47, 47, 47);
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 50px;
  border-radius: 10px;
  padding-left: 400px;
  padding-right: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Archivo;
  font-weight: 500;
  font-size: 20px;
}

/*I mostly Used ChatGpt For this part because im stupid*/
.Card{
  background-image: url("Images/GradientBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 12px;

  padding: 26px 32px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 18px;

  align-items: start;
  text-align: left; /*mr.GPT was not very smart so i did this... im such a failure.*/
}
.Card h1{
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 62px;
  text-decoration: underline; /*i also did this..*/
}
.Card span{
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  margin-top: 6px;
  font-size: 26px;
}
#Pfp{
  grid-column: 1;
  grid-row: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  float: left; /*This*/
  margin-left: 720px; /*and This*/
}
#BigImg{
  grid-column: 2;
  grid-row: 2;
  width: 300px;
  border-radius: 14px;
  object-fit: cover;
}
/*Third Party Thinking lol*/
.Card a{
  text-decoration: none;
  color: rgb(30, 240, 255);
}

.Featured{
  margin-top: 100px;
  height: 500px;
  position: relative;

  background-image:
    linear-gradient( rgb(40,30,60) 0%, rgba(20,20,40,0) 25%, rgba(20,20,40,0) 75%, rgb(40,30,60) 100%),
    url(Images/GallaxyBG.png);
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
}

.FeaturedText{
  margin-left: 120px;
  max-width: 420px;
  color: white;
  z-index: 2;
}
.FeaturedText h1{
  font-size: 64px;
  margin: 0;
}
.FeaturedText p{
  font-size: 20px;
  opacity: 0.9;
  margin: 12px 0 24px;
}
.FeaturedText a{
  background: rgb(219, 127, 255);
  color: black;
  padding: 14px 26px;
  border-radius: 12px;
}
#Hero{
  position: absolute;
  right: 15%;
  bottom: 0;
  height: 520px;
}
.Featured .nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;

  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 28px;

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

  cursor: pointer;
  transition: all 0.2s ease;
}
.Featured .nav:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}
.FeaturedText a:hover{
  background-color: rgb(233, 179, 255);
  cursor: pointer;
}

.Blog{
  margin-top: 150px;
}
.Blog iframe{
  margin-bottom: 100px;
  width: 45%;
  height: 2000px;
  margin-right: 10px;
  border: none;
}

footer{
  margin-top: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.418);
  border-top:solid rgb(59, 59, 59);
}

#flowerContainer{
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  user-select: none;
  z-index: 9998;
}
#FlowerToggle{
  position: fixed;
  top: 5px;
  right: 10px;
  background-image: linear-gradient(90deg,rgba(234, 0, 255, 1) 0%, rgba(0, 208, 255, 1) 51%, rgba(0, 255, 179, 1) 100%);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: Archivo;
  font-weight: 600;
  cursor: pointer;
  z-index: 10000;
}
.seed {
  position: fixed;
  top: -40px;
  width: 24px;
  pointer-events: none;
  transition: top 2.5s linear;
  z-index: 9999;
}
.flower {
  position: fixed;
  bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  animation: sprout 0.6s ease-out forwards;
  z-index: 9999;
}
@keyframes sprout {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* I forced gpt to do the mobile designs because thats anoying to do and im lazy, so go beat me up on bluesky because im a third party thinker... (Please do this i hate myself for using gpt alot here.) */

#mobilePopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10002;
  align-items: center;
  justify-content: center;
}

.popupContent {
  background: rgb(91, 52, 107);
  color: rgb(255, 255, 255);
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  max-width: 90%;
  font-family: Archivo, sans-serif;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  animation: popupAppear 0.3s ease-out;
}

.popupContent button {
  margin-top: 16px;
  padding: 8px 20px;
  border: none;
  border-radius: 12px;
  background: black;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

@keyframes popupAppear {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media screen and (max-width: 768px) {
  body {
    text-align: center;
    background-position: top;
  }


  ul {
    flex-direction: row;
    justify-content: center;
    justify-content: flex-start;
    padding: 10px 16px;
  }
  ul li a {
    padding: 10px 12px;
    font-size: 16px;
  }

  header img {
    margin-top: 30px;
    width: 120px;
    height: auto;
  }
  header h2 {
    font-size: 24px;
  }

  #Announcement {
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .Card {
    display: block;
    padding: 16px;
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
  }
  .Card h1 {
    font-size: 36px;
  }
  .Card span {
    font-size: 18px;
    margin-top: 4px;
  }
  #Pfp {
    display: none;
  }
  #BigImg {
    width: 80%;
    max-width: 250px;
    margin: 10px auto;
  }

  .Featured {
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }
  .FeaturedText {
    margin: 0 auto 20px auto;
    max-width: 90%;
  }
  .FeaturedText h1 {
    font-size: 32px;
  }
  .FeaturedText p {
    font-size: 16px;
  }
  #Hero {
    position: relative;
    width: 60%;
    height: auto;
    margin: 20px auto 0 auto;
    right: auto;
    bottom: auto;
  }

  .Blog iframe {
    width: 95%;
    height: 1500px;
    margin: 20px auto;
  }

  footer {
    padding: 30px 10px;
  }

  #FlowerToggle {
    padding: 8px 16px;
    top: 10px;
    right: 10px;
    font-size: 14px;
  }
}
