:root {
  --flame:   #f06543;
  --platinum:#e8e9eb;
  --beige:   #e0dfd5;
  --gunmetal:#313638;
  --sun:     #f09d51;
  --overlay: rgba(49,54,56,0.62);
  --white: #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Christmas - Green BG, Red Accent, Gold, White Text */
body.theme-christmas {
  --flame:   #c1121f;   /* Bright Red */
  --platinum:#f2f2f2;   /* Very Light BG */
  --beige:   #e0dfd5;   /* Subtle Light */
  --gunmetal:#254d32;   /* Deep Green for Text */
  --sun:     #ffd700;   /* Gold Accent */
  --overlay: rgba(37,77,50,0.62);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Halloween - Dark BG, Orange Accent, Pale Text */
body.theme-halloween {
  --flame:   #ff7518;   /* Pumpkin Orange */
  --platinum:#19181a;   /* Near Black BG */
  --beige:   #ffe7c7;   /* Pale Accent */
  --gunmetal:#ffe7c7;   /* Pale Text */
  --sun:     #fa8231;   /* Accent Orange */
  --overlay: rgba(34,34,34,0.82);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Pride - White BG, Rainbow Accents, Black Text */
body.theme-pride {
  --flame:     #ff006e;    /* Vibrant Magenta/Red */
  --platinum:  #f8f9fa;    /* Deep Navy BG */
  --beige:     #ffbe0b;    /* Green Accent */
  --gunmetal:  #fff;       /* White Text */
  --sun:       #bdb2ff;    /* Bold Yellow Accent */
  --overlay:   rgba(26,26,64,0.19);
  --white:     #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Hanukkah - Very Pale BG, Deep Blue Accent, Gold */
body.theme-hanukkah {
  --flame:   #14347a;   /* Deep Blue */
  --platinum:#f8f8ff;   /* Very Pale BG */
  --beige:   #e8e9eb;   /* Platinum */
  --gunmetal:#14347a;   /* Deep Blue Text */
  --sun:     #ffd700;   /* Gold Accent */
  --overlay: rgba(13,71,161,0.18);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Valentine's Day - Deep Rose BG, Pale Pink Text, Hot Pink Accent */
body.theme-valentines {
  --flame:   #d7263d;   /* Rose */
  --platinum:#fff0f5;   /* Pale Pink BG */
  --beige:   #ff6f91;   /* Hot Pink Accent */
  --gunmetal:#22223b;   /* Deep Text */
  --sun:     #ff69b4;   /* Accent Pink */
  --overlay: rgba(215,38,61,0.13);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* St. Patrick's Day - Emerald BG, Gold Accent, White Text */
body.theme-stpatricks {
  --flame:   #138f1e;   /* Emerald */
  --platinum:#e8e9eb;   /* Pale BG */
  --beige:   #ffe066;   /* Gold */
  --gunmetal:#194d33;   /* Emerald Text */
  --sun:     #ffe066;   /* Gold Accent */
  --overlay: rgba(19,143,30,0.35);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* New Year's - Black BG, Gold Accent, White Text */
body.theme-newyear {
  --flame:     #f4d35e;    /* Gold Accent */
  --platinum:  #fcfcfc;    /* Pure White BG/Text */
  --beige:     #ee964b;    /* Orange Accent */
  --gunmetal:  #11151c;    /* Midnight Blue BG/Text */
  --sun:       #212d40;    /* Deep Blue */
  --overlay:   rgba(33,45,64,0.21);
  --white:     #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Easter - Light Pastel BG, Pink Accent, Deep Text */
body.theme-easter {
  --flame:   #ffb7b2;   /* Pastel Pink */
  --platinum:#fff9f3;   /* Creamy BG */
  --beige:   #ffe7c7;   /* Peach */
  --gunmetal:#6d6875;   /* Deep Mauve Text */
  --sun:     #a8e6cf;   /* Mint Accent */
  --overlay: rgba(255,183,178,0.13);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Fourth of July - Navy BG, Red Accent, White Text */
body.theme-fourth {
  --flame:     #ff1e56;    /* Bold Magenta */
  --platinum:  #fff;       /* White BG/Text */
  --beige:     #ffac41;    /* Yellow/Orange Accent */
  --gunmetal:  #0d0630;    /* Deep Navy BG/Text */
  --sun:       #00aaff;    /* Vibrant Blue */
  --overlay:   rgba(13,6,48,0.22);
  --white:     #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Earth Day - Forest BG, Leaf Accent, Pale Text */
body.theme-earthday {
  --flame:   #388e3c;   /* Forest */
  --platinum:#f2f2f2;   /* Pale BG */
  --beige:   #a7c957;   /* Leaf */
  --gunmetal:#254d32;   /* Deep Green Text */
  --sun:     #ffd54f;   /* Sun Yellow Accent */
  --overlay: rgba(56,142,60,0.22);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

/* Winter - Icy BG, Slate Text, Blue Accent */
body.theme-winter {
  --flame:   #90caf9;   /* Icy Blue */
  --platinum:#e0e9f3;   /* Icy BG */
  --beige:   #fff;      /* Snow */
  --gunmetal:#263238;   /* Slate Text */
  --sun:     #607d8b;   /* Blue Accent */
  --overlay: rgba(144,202,249,0.22);
  --white:   #fff;
  --font-main: 'Montserrat', Arial, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--platinum);
  background: var(--platinum);
}
body {
  min-height: 100vh;
  min-width: 100vw;
}
.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.42) saturate(0.8) grayscale(0.18);
  background: var(--gunmetal);
}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--overlay);
  z-index: 1;
  pointer-events: none;
}
main {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.avatar-container {
  margin-top: 16vh;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3.5px solid var(--flame);
  background: #222;
  box-shadow: 0 2px 24px #000b;
  display: block;
  transition: box-shadow 0.15s, border-color 0.18s;
}
.avatar:hover {
  box-shadow: 0 4px 40px #f0654362;
  border-color: var(--sun);
}
.intro-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  color: var(--beige);
  text-shadow: 0 2px 16px #000a;
}
.intro-sub {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--sun);
  letter-spacing: .06em;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px #0006;
}
.link-row {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 1.3rem;
  margin-bottom: 2.1rem;
  flex-wrap: wrap;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.85em 2.1em;
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--platinum);
  background: linear-gradient(90deg, var(--flame), var(--sun));
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 2px 24px #f09d5120, 0 1.5px 0.5px #fff1 inset;
  transition: 
    background 0.17s, 
    color 0.17s, 
    box-shadow 0.18s, 
    transform 0.13s;
  border: none;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
  outline: none;
  cursor: pointer;
  text-shadow: 0 2px 8px #31363844;
}
.hero-link svg {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  transition: color 0.18s;
  filter: drop-shadow(0 2px 8px #e0dfd5cc);
  font-family: 'Lexend Mega', 'Montserrat', Arial;
}
.hero-link:hover,
.hero-link:focus {
  background: linear-gradient(90deg, var(--sun), var(--flame));
  color: var(--gunmetal);
  box-shadow: 0 6px 38px #f09d5140;
  transform: translateY(-2px) scale(1.06);
  text-decoration: none;
}
.hero-link:active {
  transform: scale(0.97);
  box-shadow: 0 3px 18px #f0654330;
}
@media (max-width: 700px) {
  .avatar-container {
    margin-top: 12vh;
    margin-bottom: 1.6rem;
  }
  .avatar {
    width: 74px;
    height: 74px;
  }
  .intro-title { font-size: 1.23rem; }
  .intro-sub { font-size: 0.97rem; }
  .link-row { gap: 1rem; }
  .hero-link { font-size: 0.97rem; padding: 0.65em 1.3em; }
}