  body {
    margin: 0;
   /* main font style here */
   font-family: Kode Mono;

 background-image: url("images/VV_main_background.jpg");
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: top center;

  min-height: 1400px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Lacquer;
    background-color: #fbef08a2;
    background-image: url("images/swlogotrans.png");
     background-size: 150px;      /* fills the navbar without stretching */
     background-position: 20% center; /* centers the image */
     background-repeat: no-repeat;
    padding: 15px 30px;

    position: sticky;  /* makes it stick */
  top: 0;            /* stick to top */
  z-index: 1000; 

  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }

  .logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
  }
  .logo:hover {
  text-decoration: underline; /* optional hover effect */
  cursor: pointer;            /* shows pointer on hover */
}
.nav-gif {
  height: 40px;  /* adjust size */
  width: auto;
  object-fit: contain;
}


  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }

  .topmsg {
      padding: 60px 30px;
  text-align: center;
  background-color: #f4f4f476;
  margin-top: 100px;
  }


.topmsg p {
  opacity: 0.8;
}
  .topmsg h1 {
  font-size: 32px;
  margin-bottom: 10px;

  
  }
  /* --- Sidebar --- */
.sidebar {
  position: fixed;             /* stays visible while scrolling */
  top: 100px;                  /* distance from top (below navbar) */
  left: 30px;                  /* distance from left edge */
  width: 200px;                /* fixed width */
  background-color: rgba(0,0,0,0.4); /* semi-transparent */
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;               /* above content */
}

/* Sidebar list */
.sidebar .events {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .events li {
  margin-bottom: 15px;
}

.sidebar .events a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

/* Hover effect */
.sidebar .events a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* --- Main Content --- */
.main-content {
 position: relative;
  padding: 120px 20px;
  overflow: hidden;
    position: relative;
  z-index: 2;          /* MUST be higher than hearts */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

  /* TEXT LAYER */
.event-content {
  position: relative;
  z-index: 2;   /* higher than hearts */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.event img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.event h2 {
 width: 80%;
  margin: 10px auto 30px auto;
  padding: 30px;
  background-color: rgba(13, 215, 238, 0.767);
  color: white;
  border-radius: 20px;
  text-align: center;
}
#events3333 h2 {
  margin: 10px auto 30px auto;
}
.intro-block {
  max-width: 800px;
  margin: 40px auto 60px auto;
  text-align: center;
}

.intro-block h2 {
  margin: 10px auto 20px auto;
}
/* =========================
   FLOATING MANIFESTO CARD
========================= */

.intro-card {
  max-width: 700px;
  margin: 60px auto 80px auto;
  padding: 50px 40px;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 0 40px rgba(255, 0, 0, 0.15),
    0 0 80px rgba(255, 0, 0, 0.05);

  text-align: center;

  position: relative;

  animation: floatCard 6s ease-in-out infinite;
}

/* subtle floating motion */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* title styling */
.intro-title {
  font-size: 28px;
  margin-bottom: 20px;

  color: white;

  text-shadow:
    0 0 8px rgba(255,255,255,0.3),
    0 0 20px rgba(255,0,0,0.4);
}

/* body text */
.intro-text {
  font-size: 15px;
  line-height: 1.7;

  color: #ddd;

  text-shadow: 0 0 6px rgba(255,255,255,0.1);
}

/* glowing border pulse */
.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  border: 1px solid rgba(255, 0, 0, 0.2);

  animation: glowPulse 4s infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%   { opacity: 0.3; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.3; }
}
.event p {
  line-height: 1.6;
   background-color: aquamarine
}
html {
  scroll-padding-top: 120px; /* same as navbar height */
}
.event {
 width: 100%;
  margin-bottom: 120px;   /* same spacing as event 1 */
  padding: 0;
}


.event-gallery::-webkit-scrollbar {
  height: 6px;
}

.event-gallery::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

/* ============================= */
/* EVENT GALLERY GRID */
/* ============================= */

.event-gallery {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;   /* center whole grid */
  justify-items: center;     /* center images inside cells */

  gap: 15px;
  margin-top: 40px;
}

/* gallery images */
.event-gallery img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.event-gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ============================= */
/* FULLSCREEN OVERLAY */
/* ============================= */

#fullscreenOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  inset: 0;   

  background: rgba(0, 0, 0, 0.95);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  z-index: 999999;
}

#fullscreenOverlay.active {
  opacity: 1;
  pointer-events: all;
}

#fullscreenOverlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
#closeFullscreen {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.fs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 20px;
}

.fs-btn.prev { left: 20px; }
.fs-btn.next { right: 20px; }


/* ===================== */
/* CAROUSEL */
/* ===================== */

/* ===================== */
/* CLEAN CAROUSEL LAYOUT */
/* ===================== */

/* WRAPPER holds buttons + image */
/* Wrapper holds button - image - button */
.carousel-wrapper {
  width: 80%;
  margin: 0 auto 80px auto;

  display: flex;              /* IMPORTANT */
  flex-direction: row;        /* force horizontal */
  align-items: center;        /* vertical align */
  justify-content: center;

  gap: 20px;                  /* space between buttons & image */
}

/* Image container */
.carousel-container {
  flex: 1;                    /* image takes remaining space */
  overflow: hidden;
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Image */
.carousel-img {
  flex: 0 0 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 12px;
}

/* Buttons */
.carousel-btn {
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  font-size: 40px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 10px;

  flex-shrink: 0;   /* prevents shrinking */
}

.carousel-btn:hover {
  background: red;
}



.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* makes them square */
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}


.event-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.special-event {
  position: relative;
  min-height: 100vh;   /* full screen height */
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  overflow: hidden;
  padding: 40px 20px;
}
.shadow-event-box {
  position: fixed;
  bottom: 40px;
  right: 40px;

  width: 260px;
  padding: 20px;

  background: rgba(0, 0, 0, 0.85);
  border: 2px solid red;

  box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  border-radius: 12px;

  z-index: 999;
  transition: transform 0.3s ease;
}

.shadow-event-box:hover {
  transform: scale(1.05);
}
.shadow-event-box h3 {
  font-family: 'Creepster', cursive;
  font-size: 20px;
  margin-bottom: 15px;

  color: red;
  text-transform: uppercase;
  letter-spacing: 2px;

  text-shadow:
    0 0 5px red,
    0 0 10px darkred,
    2px 2px 0 black,
    -2px -2px 0 black;
}
.shadow-content {
  display: flex;
  gap: 10px;
  align-items: center;
}

.shadow-content img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid red;
}

.shadow-content p {
  font-size: 14px;
  color: white;
  margin: 0;
}


.shadow-link {
  display: inline-block;
  margin-top: 6px;
  color: #ff2a2a;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.shadow-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px red;
}


.glitch {
  position: relative;
  font-size: 22px;
  color: red;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* duplicate layers */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  animation: glitchTop 1s infinite linear alternate-reverse;
  color: #ff0055;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  animation: glitchBottom 1.2s infinite linear alternate-reverse;
  color: #ff0000;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, -2px); }
  40% { transform: translate(-2px, 2px); }
  60% { transform: translate(2px, -2px); }
  80% { transform: translate(2px, 2px); }
  100% { transform: translate(0); }
}

@keyframes glitchBottom {
  0% { transform: translate(0); }
  20% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(-2px, -2px); }
  100% { transform: translate(0); }
}

event2

.event-block {
  width: 100%;
  margin-bottom: 120px;
}

.event-text {
  width: 80%;
  margin: 0 auto 60px auto;
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
}

.event-text h2 {
  line-height: 1.6;
  font-weight: 400;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-container {
  width: 80%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  justify-content: center;   /* ⭐ centers images automatically */
  align-items: center;
  transition: transform 0.5s ease;
}

.carousel-img {
  width: auto;               /* ⭐ no forced full width */
  max-width: 300px;          /* control size */
  max-height: 400px;
  object-fit: contain;

  border-radius: 12px;
  cursor: pointer;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
}

/* Main signup box */
.signup-box {
  max-width: 750px;
  margin: 60px auto;
  padding: 40px 30px;

  background: rgba(0, 0, 0, 0.85);
  border: 2px solid red;

  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

/* Form layout */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

/* Labels — shiny silver */
.signup-form label {
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  letter-spacing: 1px;

  background: linear-gradient(
    120deg,
    #aaa 0%,
    #fff 40%,
    #aaa 80%
  );
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 3s linear infinite;
}

/* Inputs */
.signup-form input,
.signup-form textarea {
  width: 100%;
  box-sizing: border-box;

  background: rgba(0,0,0,0.7);
  border: 1px solid #444;
  padding: 12px;

  font-family: "Kode Mono", monospace;
  font-size: 14px;

  color: #ddd;
  text-shadow: 0 0 4px rgba(255,255,255,0.2);

  border-radius: 6px;
}

/* Focus effect */
.signup-form input:focus,
.signup-form textarea:focus {
  outline: none;
  border: 1px solid red;
  box-shadow: 0 0 8px rgba(255,0,0,0.6);
}

/* Placeholder */
.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: #aaa;
  opacity: 0.7;
}

/* Button */
.submit-btn {
  margin-top: 25px;
  align-self: center;

  padding: 12px 24px;

  background: black;
  border: 1px solid red;
  color: red;

  font-family: "Kode Mono", monospace;
  letter-spacing: 1px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button hover */
.submit-btn:hover {
  background: red;
  color: black;
  box-shadow: 0 0 15px red;
}

/* Shimmer animation */
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* POPUP OVERLAY */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.7);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  z-index: 9999;
}

/* ACTIVE STATE */
.popup.show {
  opacity: 1;
  pointer-events: all;
}

/* POPUP BOX */
.popup-content {
  background: black;
  color: white;

  padding: 30px 40px;
  border-radius: 16px;

  border: 2px solid red;
  box-shadow: 0 0 25px red;

  font-family: "Kode Mono", monospace;
  text-align: center;

  cursor: pointer;

  animation: popIn 0.3s ease;
}

/* animation */
@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================
   INTRO CARD CLEAN OVERRIDE
========================= */
/* =========================
   INTRO CARD – MATCHED STYLE
========================= */

.intro-card {
  max-width: 700px;           /* limits width */
  margin: 40px auto 60px auto; /* top margin lifts it, auto left/right centers it */
  padding: 50px 40px;

  background: rgba(255, 255, 255, 0.1); /* light frosted look */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  text-align: center;
  backdrop-filter: blur(6px);
  
  animation: floatCard 6s ease-in-out infinite; /* optional floating effect */
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* RESET inherited styles */
.intro-card h2,
.intro-card p {
  all: unset;
  display: block;
}

/* TITLE */
.intro-title {
  font-family: "Lacquer", cursive;
  font-size: 30px;
  margin-bottom: 20px;

  color: white;

  text-shadow:
    0 0 8px rgba(255,255,255,0.4),
    0 0 20px rgba(255,0,0,0.3);
}

/* TEXT */
.intro-text {
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  line-height: 1.8;

  color: rgba(255,255,255,0.85);

  max-width: 500px;
  margin: 0 auto;

  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* FLOAT */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}