.body-color{
	background-color: ;
}

body{
	background-color: #212121;
}

.glassy {
  background: rgba(255, 24, 57, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);


  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.25), /* inner glow */
    0 4px 30px rgba(0, 0, 0, 0.5);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* glossy highlight */
.glassy::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
      circle at 30% 0%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  opacity: 0.7;
}


.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;

  /* keeps it centered no matter the viewport */
  width: 100%;
 /* optional spacing */
}

.logo-wrap img {
  max-width: 100%;     /* scales down on small screens */
  height: auto;        /* keeps proportions */
  width: clamp(400px, 65vw, 1100px);

  /* grows with viewport but stays within limits */
}


.card{
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 25px;

}

.bar{
    background: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain ;
      background-position-y: top;
  animation: bgCycle 80s infinite;
}

@keyframes bgCycle {

  0%, 9% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFoffice.png');
  }
10%, 19% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFlab.png');
  }
  20%, 39% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('background.png');
  }

  40%, 49% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFstage2.png');
  }
  50%, 59% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFbedroom.png');
  }
  60%, 79% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFcast.png');
  }

  80%, 100% {
    background-image:
      linear-gradient(-40deg, rgba(255,213,0,1) 25%, rgba(255,0,0,1) 25%, rgba(255,0,0,0) 1%),
      linear-gradient(-40deg, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 1%),
      linear-gradient(20deg, rgba(255,0,0,1) 70%, rgba(255,0,0,1) 55%, rgba(255,0,0,0) 1%),
      url('SFlawn.png');
  }
}

.home-btn{
  padding: 3rem;
  font-size: 3rem;
}

.btn-discord {
  background-color: #5865F2;
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 16px 16px 16px rgba(114,137,218,0.7);
  color: black;
  background-color: #6865F2;
}

.discord-icon {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.carousel-item img {
  height: 800px;       /* adjust to taste */
  object-fit: cover;   /* keeps proportions, crops edges */
  border-radius: 10px; /* optional: matches your glossy UI vibe */
}

.shadow{
   box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.shadow2{
   box-shadow: 0 4px 120px rgba(0,0,0,0.9);
   border-radius: 25PX;
}
.space{
  padding: 5rem;
  margin: 5rem;
}

.side-padding{
  margin-left: 2rem;
  margin-right: 2rem;
}

.med-font{
  font-size: 2rem;
}


.left-button{
    background-color: snow;
  color: black;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}


.sf-footer {
  background: rgba(0,0,0,0.6); /* translucent so your background shows through */
  color: white;
  padding: 40px 20px 20px;
  margin-top: 60px;
  backdrop-filter: blur(4px); /* glossy SqueakyForms vibe */
}

.sf-footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.sf-footer-section h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.sf-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-footer-section ul li {
  margin-bottom: 6px;
}

.sf-footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.sf-footer-section a:hover {
  opacity: 1;
}

.sf-footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}


.text-blue{

  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: snow;
}


.hyper{
  color: white;
  font-weight: bold;
  text-decoration: none;
}