/* GLOBAL FONTS */
@font-face {
  font-family: 'Switzer';
  src: url('../assets/Switzer-Black.otf') format('opentype');
font-weight: 100;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html, body {
  width: 100%;
  height: 100%;
  background: #050505;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}
body {
  user-select: none;
}

/* page outline */
.page-frame {
  position: fixed;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 10;
}

/* BG */
.background-layer {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 65% 50%, rgba(255,255,255,0.1), transparent 60%),
    repeating-radial-gradient(circle,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 2px
    );
  z-index: 1;
}

/* NAVBAR */
.sidebar {
  position: fixed;
  top: 60px;
  left: 60px;
  width: 260px;
  z-index: 5;
  font-weight: 600;
}

.site-title {
  font-size: 48px;
  font-weight: -100;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Switzer';
  
}

.role {
  font-size: 14px;
  margin-top: 2px;
  color: #bbb;
  font-weight: 600;
}

.nav-links {
  margin-top: 40px;
}

.nav-links li {
  list-style: none;
  margin: 14px 0;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-links li:hover,
.nav-links li.active {
  opacity: 1;
}

.visitor-count {
  margin-top: 500px;
  font-size: 12px;
  opacity: 0.6;
}

.viewport {
  position: fixed;
  inset: 0;
  z-index: 1;
}

/* sections */
.section {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.section.active {
  opacity: 1;
  pointer-events: auto;
}

/* home */
.info-block {
  position: fixed;
  right: 60px;
  bottom: 60px;
  max-width: 150px;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
}

/* experience */
.experience {
  position: fixed;
  right: 60px;
  top: 120px;
  bottom: 120px;
  width: 420px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.experience::-webkit-scrollbar {
  display: none;
}

/* EXPERIENCE ITEM */
.experience-item {
  margin-bottom: 32px;
}

/* experience & dates */
.experience-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.experience-item h3 span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
  white-space: nowrap;
}

/* company */
.experience-item .company {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* bullet points */
.experience-item ul {
  padding-left: 18px;
  margin: 0;
}

.experience-item li {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.experience-item li:last-child {
  margin-bottom: 0;
}


/* scroll */
.projects-scroll::-webkit-scrollbar {
  width: 2px;
}

.projects-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
}


/* projects */
.projects-scroll {
  position: fixed;
  right: 60px;
  top: 120px;
  bottom: 120px;
  width: 420px;
  overflow-y: auto;
  
}
.projects-scroll,
.skills-scroll {
  scrollbar-width: none;       
  -ms-overflow-style: none;    
}

.projects-scroll::-webkit-scrollbar,
.skills-scroll::-webkit-scrollbar {
  display: none;               
}

.project {
  margin-bottom: 40px;
}

.project h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.project p {
  font-size: 13px;
  opacity: 0.8;
}

.project span {
  font-size: 12px;
  opacity: 0.5;
}

/* SCROLLBAR */
.projects-scroll::-webkit-scrollbar {
  width: 2px;
}

.projects-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
}

/* contact pg */
.contact-links {
  position: fixed;
  right: 800px;
  top: 470px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.contact-links :hover{
  color: #808080;
  text-decoration: none;
}

.contact-links a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  
}
a:visited {
  color: #ffffff;
}
a:active {
  color: #ffffff;
}

a:link{
  color: #ffffff;
}
/* skills pg */
.skills-scroll {
  position: fixed;
  right: 60px;
  top: 120px;
  bottom: 120px;
  width: 420px;
  overflow-y: auto;
  
}

.skill-group {
  margin-bottom: 48px;
  font-weight: 200;
  
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  opacity: 0.9;
  
}


.skill-header svg {
  width: 48px;
  height: 48px;
  opacity: 1;
}

.skill-group ul {
  list-style: none;
}

.skill-group li {
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.skill-group li:hover {
  opacity: 1;
}

.project-link {
  font-weight: 400;
  font-size: 40px;
  text-align: left;
  text-decoration:none;
  font-family: "Helvetica Neue", sans-serif;
}
@font-face {
  font-family: "Helvetica";
  font-weight: 200;
  src: url('../assets/HelveticaNeue-Thin.woff2') format('woff2');
}

.project-link:hover{
  color: #808080;
}

