*,
::after,
::before {
  box-sizing: border-box;
}
nav,
nav ul {
  display: flex;
}
*,
nav ul {
  margin: 0;
  padding: 0;
}
.burger-menu,
nav a,
nav h1 {
  color: var(--primary-color);
}
html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
footer {
  background-color: var(--bg-color);
  padding: 1.25rem;
  text-align: center;
}
.bio,
.hero {
  padding: 1rem;
}
#burger-menu {
  background: var(--bg-color);
  color: var(--primary-color);
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
#burger-menu svg {
  display: block;
}
.hero {
  align-items: stretch;
}
.bio {
  min-height: 240px;
}
@media (max-width: 780px) {
  .bio {
    min-height: 200px;
  }
}
.bio p,
.more-about p,
.project-desc p {
  line-height: var(--line-height);
}
.social-button,
a,
a:hover {
  text-decoration: none;
}
.fun-facts-list ul,
.work-card ul {
  list-style-type: disc !important;
}
.fun-facts-list ul li,
.work-card ul li {
  display: list-item !important;
  margin-bottom: 0.5rem;
}
:root {
  --font-family: "Roboto", sans-serif;
  --normal-font: 400;
  --bold-font: 700;
  --bolder-font: 900;
  --bg-color: #3b6eef;
  --primary-color: #ffffff;
  --secondary-color: #a30000;
  --primary-shadow: #000000;
  --secondary-shadow: #ffffff;
  --txt-color: #1e3a8a;
  --bottom-margin: 0.5rem;
  --bottom-margin-2: 1rem;
  --line-height: 1.7rem;
  --transition: 0.3s;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style-type: none;
}
a {
  color: var(--txt-color);
}
a:hover {
  color: var(--secondary-color);
}
body {
  font-family: var(--font-family);
}
h1 {
  font-size: 2.5rem;
  font-weight: var(--bolder-font);
}
.burger-menu,
h2 {
  font-size: 2rem;
}
h2,
h3,
nav ul li {
  font-weight: var(--bold-font);
}
h3 {
  font-size: 1.5rem;
}
nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3.5rem;
  background-color: var(--bg-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
nav a {
  transition: var(--transition);
}
nav a:focus-visible,
nav a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
}
nav ul {
  gap: 1.9rem;
  list-style: none;
}
#navbar-placeholder {
  height: 96px;
}
@media (max-width: 450px) {
  #navbar-placeholder {
    height: 144px;
  }
}
.burger-menu {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
@media (min-width: 781px) {
  #burger-menu {
    display: none;
  }
}
#contact h1,
.more-about h2,
.ects-title {
  color: var(--bg-color);
}
#contact h1,
.courses,
.project-card,
.projects,
.projects-title {
  background-color: #fff;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
  max-width: 68.75rem;
  margin: auto;
}
.bio h2,
.course-details,
.more-about h2,
.project-title,
.work-details,
.work-type-title {
  margin-bottom: var(--bottom-margin);
}
.more-about,
.more-about h2 {
  margin-top: 2rem;
  text-align: center;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.header-h2 {
  font-size: 3rem;
}
.bio {
  flex: 1 1 300px;
  border-radius: 6px;
  box-shadow: 0 2px 15px 2px var(--primary-shadow);
  max-width: 100%;
  width: 100%;
  align-self: center;
  height: fit-content;
}
.bio p {
  font-size: 1.25rem;
  padding: 0.3rem 0;
}
.course-container p,
.more-about p,
.project-container p,
.work-container p {
  padding: 0.4rem;
}
.bio-text {
  padding-bottom: 0;
}
.more-about {
  width: 100%;
  display: flex;
  justify-content: center;
}
.more-about-container {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.more-container {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.more-about h2 {
  font-size: 30px;
}
.fun-facts-list ul,
.fun-facts-list ul li,
.more-about p {
  color: var(--primary-shadow);
}
.more-about ul {
  list-style-position: inside;
}
@media only screen and (max-width: 780px) {
  .more-about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 95%;
    justify-items: center;
  }
  .more-container {
    width: 100%;
  }
  .project-pic {
    width: 80%;
  }
}
.courses,
.projects {
  padding: 32px 0;
  margin-top: 2rem;
}
.project-pic {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.875rem, 21.875rem));
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
  grid-auto-rows: minmax(auto, max-content);
}
#row2,
.project-desc {
  margin-left: auto;
  margin-right: auto;
}
.projects-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 30px;
}
.project-container {
  text-align: center;
  padding: 1rem;
}
.project-card {
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--primary-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: auto;
  align-items: center;
}

.project-dates {
  font-size: 1rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.courses-title,
footer {
  background-color: var(--bg-color);
}
.project-pic-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.project-details,
.project-title {
  width: 100%;
  margin-bottom: var(--bottom-margin);
  display: flex;
  text-align: center;
}
.project-content-bottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.project-title {
  align-items: center;
  justify-content: center;
  min-height: 2em;
}
.project-details {
  flex-grow: 1;
  align-items: flex-start;
}
.project-container a {
  margin-top: auto;
}
.socials {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 1%;
  bottom: 50%;
}
.socicon {
  width: 2rem;
  height: 2rem;
}
footer {
  padding: 1.25rem;
  text-align: center;
  margin: 2rem 0 0;
}
.main-screen-img {
  width: 100%;
  height: auto;
  margin-top: 1px;
}
.main-page-image {
  text-align: center;
  font-size: 24px;
}
.project-desc {
  display: block;
  text-align: center;
  width: 90%;
  padding-bottom: 10px;
}
.project-desc p {
  padding: 0.4rem;
}
.fAFRow,
.row {
  display: flex;
  flex-wrap: wrap;
}

/* =========================================================
   WORK-EX IMAGE GRIDS (FIXED RESPONSIVE COUNTS)
   - Product Listing (.column): 3 across desktop, 1 across mobile
   - Merchandising (.column-4): 4 across desktop, 2 across tablet, 1 across mobile
   ========================================================= */

/* Make rows center and use gap (prevents the 2+1 wrap issue) */
.work-ex .row {
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
}

/* Ensure images fill their column consistently */
.work-ex .row img {
  width: 100%;
  height: auto;
  display: block;
}

/* PRODUCT LISTING: 3 across on desktop */
.work-ex .row .column {
  padding: 0; /* spacing handled by gap */
  flex: 0 0 calc((100% - 20px) / 3); /* 3 columns, 2 gaps */
  max-width: calc((100% - 20px) / 3);
}

/* MERCHANDISING: 4 across on desktop */
.work-ex .row .column-4 {
  padding: 0; /* spacing handled by gap */
  flex: 0 0 calc((100% - 30px) / 4); /* 4 columns, 3 gaps */
  max-width: calc((100% - 30px) / 4);
}

/* Tablet: merchandising becomes 2 across */
@media (max-width: 980px) {
  .work-ex .row .column-4 {
    flex: 0 0 calc((100% - 10px) / 2); /* 2 columns, 1 gap */
    max-width: calc((100% - 10px) / 2);
  }
}

/* Mobile: both sections become 1 across */
@media (max-width: 780px) {
  .work-ex .row {
    gap: 12px;
  }

  /* Product listing: 1 across, 3 down */
  .work-ex .row .column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Merchandising: 1 across, 4 down */
  .work-ex .row .column-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =========================================================
   END WORK-EX IMAGE GRIDS
   ========================================================= */

.fAFColumn {
  flex: 1 0 50%;
  padding: 5px;
}
#row2 {
  width: 50%;
}
.column {
  flex: 1 0 33.33%;
  padding: 5px;
}
#contact {
  text-align: center;
}
#contact h1 {
  font-size: 36px;
}
.resume-button,
.social-buttons {
  margin-top: 20px;
}
.social-button-container {
  display: inline-block;
  margin: 0 10px;
}
.social-button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.social-button img {
  max-width: 100%;
  height: auto;
}
.social-button:hover {
  background-color: #bababa;
}
.resume-button .social-button {
  color: #fff;
}
.resume-button .social-button-container.resume {
  display: block;
  margin: 20px auto;
}
.resume-button .social-button-container.resume .social-button {
  padding: 10px 20px;
  background-color: var(--bg-color);
  color: #fff;
}
.resume-button .social-button:focus-visible,
.resume-button .social-button:hover {
  color: #fff;
  background-color: var(--bg-color);
}
.course-pic {
  width: 65%;
  height: 60%;
}
.all-work-container,
.courses-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.courses-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.course-card,
.work-card {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--primary-shadow);
  padding: 20px;
}
.course-container {
  flex: 1 1 calc(33.333% - 2rem);
  margin: 1rem;
  max-width: calc(33.333% - 2rem);
  min-width: 300px;
}
.course-title {
  margin-bottom: var(--bottom-margin);
  text-align: center;
}
.course-card {
  margin: 10px;
}
.see-more-text {
  color: #005fcc;
}
.all-work-title,
.job-title h1,
.sub-heading,
.work-ex h2 {
  color: var(--bg-color);
}
.cb-link a:hover,
.see-more-text:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.school-title {
  text-align: center;
  margin-top: 20px;
}
.work-card {
  margin: 10px;
  align-items: center;
}
.work-card ul {
  padding-left: 1.5rem;
}
.work-container {
  text-align: left;
  width: 80%;
  padding: 1rem;
  margin: 10px;
  align-items: center;
}
.all-work-title,
.cb-link,
.header-image,
.job-title h1,
.job-title h2,
.skills,
.sub-heading,
.work-ex h2,
.work-ex p {
  text-align: center;
}
.all-work-title {
  margin-bottom: 1rem;
  background-color: var(--primary-color);
}
.job-title h1,
.sub-heading,
.work,
.work-ex h2 {
  background-color: #fff;
}
.work {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  padding: 32px 0;
}
.front-image,
.models-lrg-img {
  margin-left: auto;
  margin-right: auto;
}
.work-ex h2 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.job-title h1 {
  font-size: 48px;
}
.job-title h2 {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}
.web-dev-button {
  text-align: center;
}
@media (max-width:768px) {
  .web-dev-button {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.work-ex p {
  width: 60%;
  margin: 0 auto 20px;
}
.work-ex img {
  box-shadow: 0 3px 5px var(--primary-shadow);
}
.column-4 {
  flex: 1 0 25%;
  padding: 5px;
}
.work-ex img:hover {
  box-shadow: 0 10px 20px var(--bg-color);
}
.front-image {
  display: grid;
  width: 80%;
  justify-content: center;
  margin-bottom: 50px;
}
.front-image img {
  max-width: 100%;
  height: 800px;
  object-fit: cover;
}
.models-lrg-img {
  display: block;
  width: 50%;
}
#img-change,
#img-change-alien {
  max-width: 100%;
  max-height: 100%;
}
.grid-container-img {
  display: grid;
  width: 80%;
  margin: 0 auto 50px;
  justify-content: center;
}
.grid-container-img img {
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
.sub-heading {
  margin-bottom: 1rem;
  font-size: 20px;
}

/* =========================================================
   STABLE NO-DISTORTION HERO PATTERN (HEADER HERO)
   ========================================================= */

/* Make the header hero fill the stable viewport height and crop safely */
.header-image {
  position: relative;
  color: #fff;
  width: 100%;
  overflow: hidden;

  /* stable mobile viewport height */
  min-height: 100svh;

  /* allow overlay centering */
  display: grid;
  place-items: center;
}

/* Desktop: keep your preferred 100vh behavior */
@media (min-width: 781px) {
  .header-image {
    min-height: 100vh;
  }
}

/* The <picture> must be allowed to stretch to the hero height */
.header-image picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* No distortion: fill the hero, preserve aspect ratio, crop overflow */
.header-image img,
.header-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Keep overlay above the image */
.centered {
  position: relative;
  z-index: 1;

  /* Your original centering logic, but stable & simpler */
  top: auto;
  left: auto;
  transform: none;
}

/* Optional: a subtle overlay to help text readability */
.header-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.35)
  );
}

/* Put the text above the overlay */
.centered h1,
.centered h2,
.centered h3 {
  position: relative;
  z-index: 2;
}

/* Your original title sizes */
.centered h1 {
  font-size: 7rem;
  margin: 0;
}
.centered h3 {
  font-size: 3rem;
  margin: 0;
}

/* =========================================================
   END HERO PATTERN
   ========================================================= */

.cb-link {
  margin-bottom: 20px;
}
.cb-link a {
  color: #3b6eef;
}
.skills h3 {
  margin-bottom: 0.5rem;
}
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
.skills-list {
  border: 3px solid var(--bg-color);
  border-radius: 10px;
  padding: 10px;
}
.skills-list .pill-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  align-items: start;
}
.pill {
  background: #e0f2fe;
  color: #045d9f;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.skills-list ul {
  display: none;
}
.skills {
  width: 80%;
  margin: 3rem auto auto;
}
.skill-header {
  margin-bottom: 1rem;
}
.skills-wrapper img {
  padding: 1.25rem;
}
.icon {
  width: 11.875rem;
  height: 11.25rem;
}
.icon-card {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--secondary-shadow);
  padding: 20px;
  margin: 10px;
}
@media only screen and (max-width: 780px) {
  .column,
  .column-4,
  .fAFColumn {
    flex: 1 0 100%;
  }
  #rowTwo,
  .workSingle {
    width: 100%;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .centered h3,
  .header-h2 {
    font-size: 1.25rem;
  }
  .bio {
    padding-right: 1rem;
    padding-left: 1rem;
    width: 90%;
    flex: 1 1 !important;
    align-items: center;
    padding-bottom: 0;
    min-height: 100px;
  }
  .bio p {
    font-size: 1rem;
  }
  .burger-menu {
    display: block;
  }
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }
  nav ul li {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--secondary-color);
    font-weight: var(--bold-font);
  }
  nav ul.show {
    max-height: 500px;
    overflow: visible;
  }
  .course-container {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0.75rem 0;
  }
  .centered h1 {
    font-size: 2.5rem;
  }
  .skills-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .skills-list {
    padding: 15px;
  }
  .pill {
    font-size: 11px;
    padding: 3px 10px;
  }
  .more-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 780px) {
  .fAFColumn {
    flex: 1 0 50%;
  }
  #rowTwo,
  .workSingle {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .column-4 {
    flex: 1 0 25%;
  }
  .projects-container {
    flex-direction: row;
  }
  .skills-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
  .more-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
} /* ========================= TIMELINE ========================= */
.timeline-container {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
.timeline-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto 0;
}
.timeline-horizontal {
  display: block;
}
.timeline-vertical {
  display: none;
}
@media (max-width: 620px) {
  .timeline-horizontal {
    display: none;
  }
  .timeline-vertical {
    display: block;
  }
} /* ========================= NEW SHARED WRAPPER keeps both grids identical width ========================= */
.about-grids {
  width: 100%;
  display: grid;
  gap: 24px;
} /* ========================= FUN FACTS GRID (inherits width) ========================= */
.fun-facts-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 980px) {
  .fun-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .fun-facts-grid {
    grid-template-columns: 1fr;
  }
}
.fun-fact-card {
  background-color: transparent;
  border-radius: 11px;
  padding: 0;
  perspective: 1000px;
}
.fun-fact-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  border-radius: 11px;
}
.fun-fact-card:hover .fun-fact-inner,
.fun-fact-card:focus-within .fun-fact-inner {
  transform: rotateY(180deg);
}
.fun-fact-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--primary-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fun-fact-back {
  transform: rotateY(180deg);
  justify-content: center;
  gap: 0.6rem;
} /* no shadows on images */
.fun-fact-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.75rem;
}
.fun-fact-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fun-fact-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: var(--bold-font);
  color: var(--bg-color);
}
.fun-fact-text {
  margin: 0;
  line-height: var(--line-height);
  font-size: 0.95rem;
  color: var(--primary-shadow);
  padding: 0 0.25rem;
}
.fun-fact-h3 {
  font-size: 1.2rem;
} /* ========================= WHEELS GRID (inherits width) ========================= */
.wheels-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 980px) {
  .wheels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .wheels-grid {
    grid-template-columns: 1fr;
  }
}
.wheel-section {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--primary-shadow);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wheel-section h2 {
  font-size: 1.1rem;
  color: var(--bg-color);
  margin: 0 0 0.5rem;
  line-height: 1.25;
  min-height: calc(1.25em * 2);
}
.wheel-wrap {
  position: relative;
  width: min(420px, 100%);
  margin: 0.5rem auto 0.25rem;
}
.spin-wheel {
  width: 100%;
  height: auto;
  display: block;
}
.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--secondary-color);
}
.wheel-center-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: var(--bg-color);
  color: #fff;
  font-weight: var(--bolder-font);
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, filter 0.18s ease;
  z-index: 2;
}
.wheel-center-btn:hover,
.wheel-center-btn:focus-visible {
  outline: none;
  transform: translate(-50%, -50%) scale(1.05);
  filter: brightness(1.05);
}
.wheel-center-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: translate(-50%, -50%);
}
.wheel-result {
  margin-top: auto;
  border-radius: 11px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22); /* softer shadow */
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}
.wheel-result-title {
  margin: 0 0 0.25rem;
  color: var(--bg-color);
  font-size: 1rem;
}
.wheel-result-text {
  margin: 0;
  color: var(--primary-shadow);
  line-height: var(--line-height);
  font-size: 0.95rem;
  font-weight: bold;
  min-height: 13.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.example-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap; /* allows stacking when needed */
}
.example-button-container {
  display: inline-block;
  margin: 0;
} /* Base button style (matches your social-button feel) */
.example-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--bg-color);
  color: #fff;
  transition: background-color 0.3s;
  text-decoration: none;
  font-weight: var(--bold-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
} /* Hover/focus like your resume button */
.example-button:hover,
.example-button:focus-visible {
  background-color: #bababa;
  color: #fff;
  outline: none;
} /* Optional: make both buttons the same visual width */
.example-button-container {
  width: min(360px, 100%);
}
.example-button {
  width: 100%;
  text-align: center;
} /* Mobile: full width buttons */
@media (max-width: 620px) {
  .example-buttons {
    gap: 12px;
  }
  .example-button-container {
    width: 100%;
    max-width: 420px;
  }
}

/*********************** EDUCATION PAGE ***********************/
/* Education section */
.education {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  padding: 32px 0;
  background-color: #fff;
}

.all-education-title {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--bg-color);
  background-color: var(--primary-color);
}

.education-card {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px var(--primary-shadow);
  padding: 20px;
  margin: 10px;
}

.education-container {
  text-align: left;
  width: 80%;
  padding: 1rem;
  margin: 10px;
  align-items: center;
}

.education-type-title,
.education-details {
  margin-bottom: var(--bottom-margin);
}

.education-card ul {
  list-style-type: disc !important;
  padding-left: 1.5rem;
}

.education-card ul li {
  display: list-item !important;
  margin-bottom: 0.5rem;
}
