/* ------------------------------ */
/* GLOBAL RESET + BASE            */
/* ------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000; /* PURE BLACK BACKGROUND */
  color: #e5e7eb;
  line-height: 1.5;
  padding-bottom: 40px;
}

a {
  color: #ff0000;
  text-decoration: none;
}

/* ------------------------------ */
/* HEADER                         */
/* ------------------------------ */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid #1f2937;
}

.nav-inner {
  max-width: 1080px;
  padding: 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically center logo + nav */
}

/* LOGO AREA WITH PNG */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  height: 40px;      /* tweak this up/down to change size */
  width: auto;
  display: block;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links a {
  color: #9ca3af;
}

.nav-links a:hover {
  color: #ff0000;
}

/* ------------------------------ */
/* HERO SECTION                   */
/* ------------------------------ */

.hero {
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 20px;

  /* changed from 2-column grid to centered single-column */
  display: flex;
  justify-content: center;
}

/* center everything inside the hero */
.hero > div {
  max-width: 720px;
  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ------------------------------ */
/* JUMPING BITMOJI AVATAR         */
/* ------------------------------ */

.avatar-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: avatar-bounce 1.4s ease-in-out infinite;
  margin-bottom: 20px;
}

.avatar-inner {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BOUNCE ANIMATION */
@keyframes avatar-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-12px) scale(1.08);
  }
  60% {
    transform: translateY(0) scale(1);
  }
}

/* ------------------------------ */
/* HERO TEXT                      */
/* ------------------------------ */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #111;
  border: 1px solid #333;
  margin-bottom: 12px;
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero h1 span {
  background: linear-gradient(to right, #9257f8, #7750f8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 16px;
}

/* changed to flex so pills center + wrap nicely */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-meta span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #111;
  border: 1px solid #333;
}

/* ensure buttons center and wrap on mobile */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn-primary {
  padding: 10px 16px;
  border-radius: 20px;
  background: linear-gradient(to right, #f91616, #ff0000);
  border: none;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
}

.btn-ghost {
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #374151;
  background: #111;
  color: #9ca3af;
  cursor: pointer;
}

/* ------------------------------ */
/* RIGHT COLUMN (PROFILE PANEL)   */
/* (no longer used, safe to keep) */
/* ------------------------------ */

.hero-right {
  background: #0a0a0a;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #222;
}

/* ------------------------------ */
/* PROJECT IMAGES                 */
/* ------------------------------ */

#work img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #222;
  margin-bottom: 10px;
}

/* ------------------------------ */
/* RESPONSIVE (MOBILE FRIENDLY)   */
/* ------------------------------ */

@media (max-width: 900px) {
  .hero {
    margin: 30px auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 12px;
    margin: 24px auto;
  }

  .avatar-wrap {
    width: 240px;
    height: 240px;
  }

  .avatar-inner {
    width: 220px;
    height: 220px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
