

:root {
  --accent-color1: #fff;
  --accent-color2: #5c5c5c;
  --myfont-: black;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; */
  font-family: 'Inter', sans-serif, system-ui, -apple-system, BlinkMacSystemFont;

  color: #111;
  overflow-y: scroll;
  /* background: #F4E5CD; */
  /* background: #e0e0de; */
  background: var(--accent-color1);
}



/* ====================================================================================================
  Navigation Section
==================================================================================================== */


.corner-trace {
  position: fixed;      /* stays in place even when scrolling */
  top: 0;               /* top-right corner */
  right: 0;
  width: 15rem;         /* adjust size as needed */
  height: 16rem;         /* maintain SVG aspect ratio */
  z-index: 0;           /* behind content */
  pointer-events: none; /* allow clicks to pass through */
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.nav {
  display: flex;
  gap: 0.25rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px dashed #e5e5e5;
}

.nav-link {
  font-size: 1rem;
  font-weight: 2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  position: relative;
  padding-bottom: 6px;

}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.2em;

  width: 70%;
  height: 2px;
  background: currentColor;

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;

  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  transition-duration: 0.35s;
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ====================================================================================================
  Home Page Layout
==================================================================================================== */


.home-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem; /*MAYBE COMMENT THIS OUT*/
  text-align: center;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;

  border: 1px solid #F4E5CD;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.home-page h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  /* font-size: clamp(2.4rem, 5vw, 3rem); */
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.75rem;
}


.home-page-role {
  font-size: 1rem;
  font-weight: 500;
  color: #5c5c5c;
  margin-bottom: 2.5rem;
}
.home-page-text-1{
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--accent-color2);
  /* margin-bottom: 1.25rem; */
  margin-bottom: 2rem;
}
.home-page-text-2{
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--accent-color2);
}



/* ====================================================================================================
  Quick Links Section
==================================================================================================== */


.quick-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;

}

.quick-links-button {
  font-size: 0.8rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  color: #111;

}

.quick-links-button.dark:hover {
  background: var(--accent-color2);
  color: var(--accent-color1);
  transform: translateY(-1px);
}

.quick-links-button.dark {
  background: #262626;
  color: var(--accent-color1);
  text-decoration: none;
  font-weight: 600;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
