/* ==================================================
   JUANI FELIZ WEBSITE - NEON CHAOS STYLESHEET
   Updated neon colors: cyan -> #39FF14 (green)
================================================== */

/* --------------------------
   GENERAL BODY
--------------------------- */
body {
  background-color: #111;   /* fallback dark color */
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;

  /* Background image or GIF */
  background-image: url('https://juani-feliz.neocities.org/portal%20storm.gif'); /* replace with your background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --------------------------
   NAVIGATION BAR STYLING
--------------------------- */
div.nav {
  margin-bottom: 30px;
  font-size: 1.2em;
}

div.nav a {
  color: #39FF14;  /* neon green */
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #39FF14, 0 0 10px #39FF14, 0 0 20px #39FF14;
}

div.nav a:hover {
  color: #ff00ff; /* neon pink on hover */
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
  transform: scale(1.1);
}

div.nav a + a::before {
  content: "|";
  color: #666;
  margin: 0 10px;
}

/* --------------------------
   FLOATING CHAOS GIFS
--------------------------- */
.floaty {
  position: absolute;
  animation: floaty 4s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(0 0 10px #39FF14); /* green glow */
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  25% { transform: translateY(-15px); }
  50% { transform: translateY(0px); }
  75% { transform: translateY(15px); }
  100% { transform: translateY(0px); }
}

/* --------------------------
   BLOG POSTS
--------------------------- */
.blog-post {
  border: 1px solid #333;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
  background-color: rgba(0,0,0,0.5);
  box-shadow: 0 0 10px #39FF14; /* green glow */
  border-radius: 10px;
}

.blog-post h3 {
  color: #ff00ff; /* neon pink title */
  text-shadow: 0 0 5px #ff00ff;
}

.blog-post small {
  color: #39FF14; /* neon green date */
}

.blog-post p {
  line-height: 1.5;
}

/* Read More button */
.more-content {
  display: none;
}

.read-more-btn {
  background-color: #111;
  color: #39FF14; /* green button text */
  border: 1px solid #39FF14;
  padding: 2px 8px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.9em;
  text-shadow: 0 0 5px #39FF14;
}

.read-more-btn:hover {
  color: #ff00ff;
  border-color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

/* --------------------------
   BLOG TAGS
--------------------------- */
.tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background-color: #39FF14; /* neon green */
  color: #111;
  padding: 2px 6px;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: bold;
  text-shadow: 0 0 3px #39FF14;
}

/* --------------------------
   LINKS PAGE
--------------------------- */
.links-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.link-item {
  background-color: rgba(0,0,0,0.5);
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px #39FF14; /* green glow */
  transition: all 0.3s ease;
}

.link-item a {
  color: #ff00ff; /* neon pink links */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 0 0 5px #ff00ff;
}

.link-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff00ff;
}

/* --------------------------
   IMAGE GALLERY
--------------------------- */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.gallery-item {
  background-color: rgba(0,0,0,0.5);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ff00ff;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 200px;
  height: auto;
  border: 2px solid #333;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px #39FF14); /* green glow */
}

.gallery-item p {
  margin-top: 5px;
  color: #39FF14; /* neon green captions */
  font-weight: bold;
  text-shadow: 0 0 5px #39FF14;
}

.gallery-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #39FF14;
}
