@import "../styles.css";

#SpecialsSection {
    width: 100%;
    margin-top: 20px;
}

#SpecialsSection h2 {
    color: var(--neon-magenta-core);
    font-family: "Neonderthaw", cursive;
    font-size: 3em;
}

#specialsContainer {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#specialsContainer .special {
  position: relative;
  border-radius: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
  overflow: visible;
  max-width: 750px;
}
#specialsContainer .special::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid var(--neon-magenta-core);
  pointer-events: none;
  box-shadow:
    0 0 2px var(--neon-magenta-core),
    0 0 6px var(--neon-magenta-core),
    0 0 14px rgba(255, 77, 255, 0.95),
    0 0 28px var(--neon-magenta-soft),
    0 0 45px rgba(255, 77, 255, 0.45);
  animation: neonFlicker 2s infinite alternate;
}
#specialsContainer .special img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
#specialsContainer p {
    color: var(--neon-blue-core);
    font-family: "Tilt Neon";
    text-align: center;
    font-size: 2.3em;
    text-shadow: 0 0 2px var(--neon-blue-core),
                 0 0 6px var(--neon-blue-core),
                 0 0 14px rgba(77, 255, 255, 0.95),
                 0 0 28px var(--neon-blue-soft),
                 0 0 45px rgba(77, 255, 255, 0.45);
                 animation: neonFlicker 3s infinite alternate;
}
