@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

body {
  background-color: #fff2e6;
  overflow: hidden;
}
body:not(.panel-open) .rotating-img {
  opacity: 0;
}
.bg-lines {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -7;

  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 194, 89) 3px,
      rgba(237, 150, 0) 6px,
      transparent 1px,
      transparent 14px
    );

  background-size: 100%;

  animation: drift 10s linear infinite;
}
.bg-gradient {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -7;

  background: linear-gradient(
    #ff5e00,
    #ff9100,
    #ffcd75 60%,
    #ff9100,
    #ff9100,
    #ff5e00
  );
}

.bg-image-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -5;

  background-image: url("overlay.png");
  background-size: cover;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 30%,
    black 70%,
    transparent 100%
  );
  opacity: 0.5;
}
.bg-wave-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -5;

  background-image: url("wave.png");
  background-size: cover;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 30%,
    black 70%,
    transparent 100%
  );
  opacity: 0.5;
}
.bg-wave-2 {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -5;
  transform: translateY(45%);
  left: 0;
  background-image: url("waves.png");
  background-size: cover;
  opacity: 1;
}
@keyframes moveLines {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}
.bg-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

.bg-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}
.bg-pattern {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -6;

  background-image:
    radial-gradient(circle at 30px 30px, rgba(255,255,255,0.05) 2px, transparent 2px),
    radial-gradient(circle at 90px 90px, rgba(255,255,255,0.03) 2px, transparent 2px),

    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 16px
    );

  background-size:
    120px 120px,
    120px 120px,
    200px 200px;

  animation: bgDrift 50s linear infinite;
}

@keyframes bgDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 300px 300px, -200px -200px, 400px 400px;
  }
}
@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 200px 200px, -200px -200px, 300px 300px; }
}

@keyframes driftReverse {
  from { background-position: 0 0; }
  to { background-position: -300px 300px; }
}
.side-panel {
  position: fixed;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.95);
  transform: translateX(-100%);
  transition: 0.4s ease;
}

.side-panel.active {
  transform: translateX(0);
}

.rotating-img {
position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;

  width: 80%;

  opacity: 0;
  pointer-events: none;

  z-index: -5;

  animation: spin 40s linear infinite;

  transition: opacity 0.4s ease;
}

.side-panel.active ~ .rotating-img {
  opacity: 0.3;
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-right: 6%;
    position: relative;
  z-index: 4;
}

.right-block {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 99;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  transform: translateY(-30%);
  position: relative;
  z-index: 99;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1px;
  font-size: 22px;
  font-weight: 100;
  letter-spacing: 0.05px;
  color: rgba(0,0,0,1);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-item:hover {
  opacity: 0.7;
}
.nav-symbol {
  width: 30px;
  height: 30px;

  object-fit: contain;

  opacity: 0.9;

  pointer-events: none;
}
.nav-item:hover {
  color: rgba(0, 0, 0, 1);
}
.nav p {
    line-height: 5;
}
.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.logo-rotator {
  position: absolute;
  width: 400%; 
  opacity: 1;
  z-index: 2;

  pointer-events: none;
  animation: spin 20s linear infinite;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.logo {
  width: 550px;
  position: relative;
  z-index: 1;
}

.panel-inner {
  margin-top: 30px;
  margin-left: 40px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}
.panel-inner h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.panel-inner hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.panel-inner p {
  opacity: 0.8;
  line-height: 1.6;
}
.panel-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-card {
  padding: 18px 20px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 18px rgba(0,0,0,0.04);

  transition: transform 0.2s ease;
}
.type-a {
  background: rgba(255,255,255,0.78);
}

.type-b {
  background: rgba(248,245,240,0.9);
}

.type-c {
  background: rgba(238,235,230,0.88);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.line-divider {
  width: 100%;
  height: 1px;

  background: rgba(0,0,0,0.1);
}
.info-card p {
  line-height: 1.65;

  font-size: 15px;

  color: rgba(0,0,0,0.72);
}
.member-card {
  display: flex;
  gap: 18px;

  padding: 18px;

  background: rgba(255,255,255,0.82);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 18px rgba(0,0,0,0.04);

  margin-bottom: 16px;
}
.member-img {
  width: 120px;
  height: 120px;

  object-fit: cover;

  flex-shrink: 0;
}
.member-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  gap: 12px;
}
.member-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-card {
  display: flex;
  flex-direction: column;

  background: rgba(255,255,255,0.85);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 18px rgba(0,0,0,0.04);

  margin-bottom: 22px;

  overflow: hidden;
}
.project-img {
  width: 100%;
  height: 260px;

  object-fit: cover;
}
.project-content {
  padding: 18px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}