/* ----------------------------------------------------
   GLOBAL STYLES — fabric background + base text
---------------------------------------------------- */

body {
  margin: 0;
  color: #e8dff8;
  font-family: Arial, sans-serif;
  background-color: #0f0a14;
  background-image:
    radial-gradient(circle at 0 0, #24152f 0, transparent 55%),
    radial-gradient(circle at 100% 0, #1b1230 0, transparent 55%),
    radial-gradient(circle at 0 100%, #1a182b 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #1f1228 0, transparent 55%);
  background-attachment: fixed;
}

/* ----------------------------------------------------
   PAGE CONTAINER — stitched patch
---------------------------------------------------- */

.ru-home {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(8, 4, 16, 0.9);
  border-radius: 10px;
  border: 2px dashed #3a2a4d;
}

/* ----------------------------------------------------
   TITLES + HEADINGS
---------------------------------------------------- */

.ru-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.ru-subtitle {
  text-align: center;
  color: #cbb7e8;
  margin-bottom: 2rem;
}

/* ----------------------------------------------------
   NAVIGATION — stitched rainbow tabs
---------------------------------------------------- */

.ru-nav {
  background: #1a1124;
  padding: 0.75rem 0;
  border-bottom: 2px dashed #3a2a4d;
}

.ru-nav-inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ru-nav-inner a {
  padding: 0.4rem 0.8rem;
  border: 2px dashed transparent;
  border-radius: 6px;
  text-decoration: none;
  color: #e8dff8;
  transition: 0.2s;
}

/* Colour-coded nav tabs */
.nav-home:hover,
.nav-home.active { border-color: #ff4d4d; color: #ff4d4d; }

.nav-work:hover,
.nav-work.active { border-color: #ff9f1c; color: #ff9f1c; }

.nav-creatures:hover,
.nav-creatures.active { border-color: #ffd764; color: #ffd764; }

.nav-rituals:hover,
.nav-rituals.active { border-color: #4dff88; color: #4dff88; }

.nav-community:hover,
.nav-community.active { border-color: #6fffd7; color: #6fffd7; }

.nav-help:hover,
.nav-help.active { border-color: #b57dff; color: #b57dff; }

/* ----------------------------------------------------
   SECTIONS — stitched content boxes
---------------------------------------------------- */

.ru-section {
  border: 2px dashed #3a2a4d;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  background: #140d1c;
}

/* ----------------------------------------------------
   MASCOT CARDS — stitched plush profiles
---------------------------------------------------- */

.ru-card {
  background: #1a1124;
  border: 2px dashed #3a2a4d;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.ru-card-img {
  width: 100%;
  max-width: 250px;
  border: 2px dashed #3a2a4d;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.8rem;
}

/* ----------------------------------------------------
   BANNERS — stitched mascot parade + page headers
---------------------------------------------------- */

.ru-banner,
.ru-page-banner {
  text-align: center;
  margin-bottom: 1rem;
}

.ru-banner-img {
  max-width: 100%;
  border: 2px dashed #3a2a4d;
  border-radius: 8px;
}

/* ----------------------------------------------------
   FOOTER — stitched bottom bar
---------------------------------------------------- */

.ru-footer {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  background: #1a1124;
  border-top: 2px dashed #3a2a4d;
  color: #cbb7e8;
  margin-top: 3rem;
}

.ru-footer p {
  margin: 0.4rem 0;
}

/* ----------------------------------------------------
   UTILITY — smooth scroll
---------------------------------------------------- */

html {
 scroll-behavior: smooth;
}
/* Stitched hover wiggle */
.ru-card:hover,
.ru-section:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
  border-color: #b57dff;
}

/* Mascot image hover glow */
.ru-card-img:hover {
  filter: brightness(1.15);
  transition: 0.2s ease;
}.ru-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px dashed #b57dff;
  border-radius: 6px;
  color: #b57dff;
  text-decoration: none;
  transition: 0.2s ease;
}

.ru-button:hover {
  background: #b57dff22;
  transform: translateY(-2px);
}


