@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #0f0c14;
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 clamp(1rem, -.699rem + 7.2492vw, 8rem);
}
.logo h1 {
    font-size: 18px;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero {
    position: relative;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr;
}
.section-one {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}
nav ul li {
  cursor: pointer;
}
main {
  position: relative;
  background: #0f0c14;
}
.main-ring {
    position: relative;
    aspect-ratio: 1;
    z-index: 1;
    height: auto;
    width: 100%;
}
.center {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 3.5rem;
    text-align: right;
    justify-content: center;
}
.name h1 {
    font-size: clamp(24px, 5vw, 36px);
	margin: 5px auto;
}
.name-info {
	font-size: 22px;
}
.role {
    padding-left: 3.5rem;
    display: flex;
    text-align: left;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.role h1 {
    font-size: clamp(24px, 5vw, 36px);
}
.profile-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #5dcbff, #222b7a, #1d0b99);
  background-size: 200% 200%;
  animation: moveGradient 8s ease infinite;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.profile-circle-stroke {
    border: 1px solid #9cbcff;
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    box-sizing: border-box;
    transition-origin: center center;
}
.profile-circle::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, #ffffff55, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  border-radius: 50%;
  z-index: 0;
}
.profile-circle img {
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
