/* Hamburger menu styles (moved from index.html for global use) */


.hamburger {
  position: fixed;
  right: 2vw;
  top: 2vw;
  width: 7vw;
  height: 7vw;
  min-width: 28px;
  min-height: 28px;
  background: rgba(30,30,50,0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2147483647;
  box-shadow: 0 2px 8px 0 #0004;
  pointer-events: auto;
  margin-right: 48px;
}
.hamburger span {
  display: block;
  width: 5vw;
  min-width: 16px;
  height: 0.6vw;
  min-height: 2px;
  margin: 0.4vw 0;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 2px 8px #bc6cff44;
}
.hamburger.active span:nth-child(1),
.menu-overlay.active ~ .hamburger span:nth-child(1) {
  transform: translateY(1vw) rotate(45deg);
  background: #bc6cff;
}
.hamburger.active span:nth-child(2),
.menu-overlay.active ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3),
.menu-overlay.active ~ .hamburger span:nth-child(3) {
  transform: translateY(-1vw) rotate(-45deg);
  background: #bc6cff;
}
.menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.menu-overlay.active {
  background: rgba(30, 10, 40, 0.98);
  pointer-events: all;
}
.menu-content {
  position: relative;
  z-index: 112;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 2.5vw;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}
.menu-overlay.active .menu-content {
  opacity: 1;
  transform: scale(1);
}
.menu-content a {
  font-size: 2.2vw;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #bc6cff 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 16px #bc6cff55;
  transition: color 0.2s;
}
.menu-content a:hover {
  color: #bc6cff;
  -webkit-text-fill-color: #bc6cff;
}
/* Static decorative shapes for index page */
.css-orb {
  position: fixed;
  top: 12vh;
  left: 8vw;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #bc6cff 0%, #a259ff 80%, #23243a 100%);
  box-shadow: 0 0 48px 12px #bc6cff44;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.css-diamond {
  position: fixed;
  top: 60vh;
  left: 80vw;
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-bottom: 60px solid #fff;
  opacity: 0.6;
  filter: drop-shadow(0 0 24px #bc6cff88);
  z-index: 0;
  pointer-events: none;
}
html, body {

  padding: 0;
  background: linear-gradient(to bottom, #3a7bd5 0%, #223a5f 70%, #0a192f 100%);
  font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #222;
  overflow: hidden;
  height: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2vw;
  /* no background override here */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(34, 44, 64, 0.92);
  backdrop-filter: blur(14px);
  padding: 0.2em 0 0.2em 0;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  min-height: 54px;
  padding: 0.7em 0 0.7em 0;
  transition: background 0.3s;
}
.navbar h1 {
  color: #f5f5f5;
  font-size: 1.5em;
  margin: 0 2vw;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
  text-align: left;
  font-weight: 600;
  width: auto;
}
.navbar nav {
  display: flex;
  gap: 0.5vw;
  justify-content: center;
  margin: 0;
}
.navbar nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1.25em;
  padding: 0.7em 1.6em;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  background: none;
  box-shadow: none;
}
.navbar nav a:hover {
  background: #3a7bd5;
  color: #fff;
}

.hero {
  background: radial-gradient(circle at 50% 55%, #eaf6ff 70%, #b3d1f7 100%);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px #4f8edc,
    0 4px 40px 0 rgba(44,74,124,0.18),
    0 1px 12px 0 rgba(44,74,124,0.10),
    inset 0 0 32px 0 rgba(44,74,124,0.18);
  margin: 6em auto 2em auto;
  text-align: center;
  padding: 2.5em 2em 2em 2em;
  max-width: 340px;
  min-width: 340px;
  min-height: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1000;
  color: #222;
}
.hero-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  border-radius: 32px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 80%, rgba(90,170,255,0.18) 0%, transparent 70%),
              repeating-linear-gradient(135deg, rgba(90,170,255,0.08) 0 2px, transparent 2px 24px);
  z-index: 0;
}
.hero-card > * {
}
.profile-pic-space {
  width: 100%;
  height: 90px;
  margin-top: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 1;
}
}
.hero h2 {
  font-size: 2.2em;
  margin-bottom: 0.2em;
}
.hero .subtitle {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 1em;
}

.about, .skills, .projects, .contact, .portfolio {
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 0px 18px 0 rgba(0,0,0,0.12);
  margin: 2em 0;
  padding: 2.5em 2em;
  backdrop-filter: blur(6px);
}
.portfolio-columns {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.portfolio-item {
  background: rgba(245,245,245,0.8);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.10);
  padding: 1.5em 2em;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 1em;
  backdrop-filter: blur(3px);
}
.about h2, .skills h2, .projects h2, .contact h2 {
  color: #222;
  margin-bottom: 0.5em;
}
.skills ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.skills li {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.7em 1.5em;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.project {
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  padding: 1.2em 2em;
  min-width: 220px;
  max-width: 320px;
}
.project h3 {
  margin-top: 0;
  color: #333;
}
.contact ul {
  list-style: none;
  padding: 0;
}
.contact li {
  margin-bottom: 0.7em;
}
.contact a {
  color: #222;
  text-decoration: underline;
}
.side-menu a,
#side-menu a {
  transition: box-shadow 0.2s, transform 0.2s, color 0.2s, background 0.2s;
  box-shadow: none;
}
.side-menu a:hover,
#side-menu a:hover {
  box-shadow: 0 0 18px #bc6cff, 0 0 32px #a259ff;
  transform: scale(1.12);
  color: #fff;
  background: #a259ff;
}
#gh-logo {
  transition: box-shadow 0.2s, filter 0.2s;
}
#gh-logo:hover {
  box-shadow: 0 0 32px #3a7bd5, 0 0 48px #3a7bd5;
  filter: drop-shadow(0 0 24px #3a7bd5);
}
#hamburger {
  transition: box-shadow 1.2s cubic-bezier(.68,-0.55,.27,1.55), filter 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
#hamburger:hover {
  box-shadow: 0 0 32px #3a7bd5, 0 0 48px #3a7bd5;
  filter: drop-shadow(0 0 24px #3a7bd5);
}
.marquee {
  width: 100vw;
  height: 320px;
  margin: 2.5rem auto;
  overflow: hidden;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: max-content;
  animation: marquee-move 18s linear infinite;
  will-change: transform;
}
.marquee-track img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 18px #bc6cff44, 0 2px 8px #a259ff22;
  border: 3px solid #a259ff;
  background: #2a174d;
}
@keyframes marquee-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}