/* ====================
   Global Styles & Setup
   ==================== */

:root {
  /* Brand Colors */
  --accent-green:  #BCFF82;
  --accent-blue:   #9DF0FF;
  --accent-blue-light: #C3F6FF; /* NEW - for brighter CTA */
  --accent-pink:   #E498FF;
  --accent-red:    #FF8385;
  --accent-orange: #FFB347;
  --accent-orange-light: #FFD29B;
  --white:         #FFFFFF;
   --accent-yellow: #FFD700;

  /* Typography */
  --font-glitch: 'Rubik Glitch', cursive;
  --font-spray: 'Rubik Spray Paint', cursive;
  --font-body: 'Rubik', sans-serif;
  --font-display: 'Rubik One', sans-serif;
}



/* Reset + Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  /* background-color: #1c1c1e; Dark grey with subtle warmth */
  background-color: rgba(0, 0, 0, 0.918);
  color: #e5e5e5;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ====================
   Footer Styles
   ==================== */

.main-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-top: 6rem;
}

.footer-social {
  margin: 1rem 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* turns icons white */
  transition: transform 0.2s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.back-to-top {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: var(--accent-green);
}
