.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{
  opacity: 0.6;
  background-color: black;
  color: white;
  border-radius: 25px;

}

.bar{
  background-color: white;
  opacity: 0.8;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

body{
  background-image: url("background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.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: 0 6px 16px rgba(0,0,0,0.35);
  color: white;
}

.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;
}