/* css for the website style shi lol edit it if u want but be carful cause u might blow up the entire website. */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #bcd4ef;
  font-family: 'Share Tech Mono', monospace;
  overflow: hidden;
  perspective: 1000px;
  color: #114c94;
}


#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


#ripple-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}


.corner {
  position: fixed;
  width: 120px;
  height: 120px;
  z-index: 100;
  pointer-events: none;
  opacity: 0.55;
}

.corner-tl { top: 0;    left: 0; }
.corner-tr { top: 0;    right: 0; }
.corner-bl { bottom: 0; left: 0; }
.corner-br { bottom: 0; right: 0; }


.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: rgba(30, 60, 100, 0.4);
}


.corner::before {
  height: 1px;
  width: 80px;
  top: 20px;
}


.corner::after {
  width: 1px;
  height: 80px;
  top: 20px;
}


.corner-tl::before { left: 20px; }
.corner-tl::after  { left: 20px; }


.corner-tr::before { right: 20px; }
.corner-tr::after  { right: 20px; }


.corner-bl::before { left: 20px; bottom: 20px; top: auto; }
.corner-bl::after  { left: 20px; bottom: 20px; top: auto; }


.corner-br::before { right: 20px; bottom: 20px; top: auto; }
.corner-br::after  { right: 20px; bottom: 20px; top: auto; }


.corner-tl { border-top: 1px solid rgba(60, 120, 190, 0.35); border-left: 1px solid rgba(30, 60, 100, 0.35); }
.corner-tr { border-top: 1px solid rgba(60, 120, 190, 0.35); border-right: 1px solid rgba(30, 60, 100, 0.35); }
.corner-bl { border-bottom: 1px solid rgba(60, 120, 190, 0.35); border-left: 1px solid rgba(30, 60, 100, 0.35); }
.corner-br { border-bottom: 1px solid rgba(60, 120, 190, 0.35); border-right: 1px solid rgba(30, 60, 100, 0.35); }


.corner-tl::before,
.corner-tr::before,
.corner-bl::before,
.corner-br::before {
  box-shadow: 0 0 6px rgba(30,60,100,0.3);
}

.corner-tl::after,
.corner-tr::after,
.corner-bl::after,
.corner-br::after {
  box-shadow: 0 0 6px rgba(30,60,100,0.3);
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 35, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.2) rotate(90deg);
}


.panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: calc(100vw - 24px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform-style: preserve-3d;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(30, 60, 100, 0.15);
  box-shadow: 0 0 60px rgba(20, 40, 70, 0.35),
              0 0 2px rgba(255, 255, 255, 0.4);
}

/* this is the header of everything for the like work and prices stuff*/
.panel-header {
  background-color: #163a5e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0;
  padding: 0 12px;
  flex-shrink: 0;
}

.tab {
  background: none;
  border: none;
  color: rgba(30, 126, 223, 0.55);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
}

.tab.active {
  color: #e0d4d4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.tab:hover {
  color: rgba(255, 255, 255, 0.9);
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
}

/* this handles the stuff in the lower panel which is everything under the profile picture */
.panel-body { 
  background-color: #eaf2fb; 
  border-radius: 0 0 2px 2px;
  padding: 0;
  gap: 0;
  max-height: 78vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.panel-body::-webkit-scrollbar { width: 3px; }
.panel-body::-webkit-scrollbar-track { background: #dbe8f7; }
.panel-body::-webkit-scrollbar-thumb {
  background: rgba(30, 90, 160, 0.25);
  border-radius: 2px;
}


.hero-row {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}


.hero-block {
  background-color: #1c4a75;
  color: #eaf2fb;
  padding: 28px 20px;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-block h1 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(120, 180, 240, 0.4),
    0 0 60px rgba(120, 180, 240, 0.15);
  line-height: 1;
}

.subtitle {
  font-size: 0.72rem;
  margin-top: 10px;
  color: rgba(220, 235, 250, 0.75);
  letter-spacing: 0.12em;
}

.status {
  font-size: 0.62rem;
  margin-top: 8px;
  color: rgba(220, 235, 250, 0.45);
  letter-spacing: 0.1em;
}


.about-block {
  background-color: #dbe8f7;
  padding: 16px;
  flex: 1;
}

.about-block h2 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(30, 60, 100, 0.55);
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(30, 60, 100, 0.12);
  padding-bottom: 6px;
}

.about-block p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(30, 60, 100, 0.8);
}

.about-block strong { color: #163a5e; }


.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #dbe8f7;
  padding: 14px 20px;
  flex-shrink: 0;
  border-top: 1px solid rgba(30, 60, 100, 0.1);
}

.profile-pic-wrapper { flex-shrink: 0; }

.profile-pic {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(30, 60, 100, 0.25);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  filter: none;
}

.profile-pic:hover {
  transform: translateY(-6px) rotate(3deg) scale(1.08);
  box-shadow: 0 12px 32px rgba(20,40,70,0.35),
              0 0 20px rgba(60,120,190,0.25);
}

.profile-name {
  font-family: 'VT323', monospace;
  font-size: 1.9rem;
  color: #163a5e;
  margin-bottom: 4px;
  text-shadow:
    0 0 10px rgba(60, 120, 190, 0.3),
    0 0 25px rgba(60, 120, 190, 0.15);
  letter-spacing: 0.06em;
  line-height: 1;
}

.profile-bio {
  font-size: 0.7rem;
  color: rgba(139, 167, 202, 0.65);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border: 1px solid rgba(30, 60, 100, 0.25);
  border-radius: 1px;
  color: rgba(30, 60, 100, 0.7);
  background: rgba(255, 255, 255, 0.4);
  cursor: default;
  transition: background 0.2s, color 0.2s, transform 0.2s,
              border-color 0.2s, box-shadow 0.2s;
}

.tag:hover {
  background-color: rgba(60, 120, 190, 0.12);
  color: #163a5e;
  border-color: rgba(30, 60, 100, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(20, 40, 70, 0.2);
}

.tag.highlight {
  border-color: rgba(30, 60, 100, 0.45);
  color: #17165e;
  background: rgba(60, 120, 190, 0.1);
}

.tag.highlight:hover {
  background-color: rgba(11, 35, 248, 0.377);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(20, 40, 70, 0.25);
}


.note-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(60, 190, 125, 0.08);
  padding: 12px 16px;
  margin: 0px 0px 0 0px;
  border-radius: 5px;
  border-left: 0
  1px solid rgba(30, 60, 100, 0.35);
}

.note-label {
  background-color: #163a5e;
  color: #ffffff;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  padding: 2px 6px;
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(30, 60, 100, 0.3);
}

.note-block p {
  font-size: 0.76rem;
  color: rgba(30, 60, 100, 0.7);
  font-style: italic;
  line-height: 1.6;
}


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(30, 60, 100, 0.1);
}

.two-col > div { padding: 20px; }

.two-col > div:first-child {
  border-right: 1px solid rgba(30, 60, 100, 0.1);
}

.two-col h2 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(30, 60, 100, 0.5);
  margin-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(30, 60, 100, 0.12);
  padding-bottom: 6px;
}

.two-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.two-col li,
.two-col p {
  font-size: 0.76rem;
  color: rgba(30, 60, 100, 0.7);
  line-height: 1.7;
}


.work-header {
  background-color: #1c4a75;
  color: rgba(220, 235, 250, 0.75);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.work-header h2 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  margin-bottom: 4px;
  color: #ffffff;
}

.work-header p {
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}


.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(30, 60, 100, 0.12);
}

.work-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #dbe8f7;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: none;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(140, 184, 250, 0.144);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-overlay span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(0, 0, 0),
               0 0 12px rgb(0, 0, 0);
  
}

.work-item:hover img {
  transform: scale(1.06);
}

.work-item:hover .work-overlay { opacity: 1; }


.prices-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.prices-image {
  width: 100%;
  display: block;
  object-fit: contain;
}


@media (max-width: 600px) {

  body { overflow-y: auto; perspective: none; }

  .corner { display: none; }

  .panel {
    position: relative;
    top: auto; left: auto;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
    border: none;
  }

  .panel-body { max-height: none; overflow-y: visible; }

  .hero-row { flex-direction: column; }

  .hero-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 16px;
  }

  .hero-block h1 { font-size: 2.4rem; }
  .about-block   { padding: 14px 16px; }

  .profile-card  { padding: 12px 16px; gap: 12px; }
  .profile-pic   { width: 56px; height: 56px; }

  .note-block { margin: 12px 12px 0 12px; }

  .two-col { grid-template-columns: 1fr; }
  .two-col > div:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(30,60,100,0.1);
  }

  .work-grid { grid-template-columns: 1fr; }

  .tab { font-size: 0.65rem; padding: 10px; letter-spacing: 0.1em; }
}

@media (min-width: 601px) and (max-width: 768px) {
  .panel { width: calc(100vw - 32px); }
  .hero-block h1 { font-size: 2.4rem; }
}