/* Import base portfolio style look */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
}
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 90%);
  padding: 0.8rem 1.25rem;
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  z-index: 1000;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 18px;
}

.logo { 
  color:#111; 
  font-size:1.1rem; 
  font-weight:600; 
  letter-spacing:0.3px; 
}

nav ul { 
  list-style:none; 
  display:flex; 
  gap:1rem; 
}

nav ul a {
  text-decoration:none; 
  color:#222; 
  font-weight:500;
  padding:6px 10px; 
  border-radius:10px; 
  transition:.25s;
}

nav ul a:hover, 
nav ul a.active { 
  background:rgba(0,0,0,0.08); 
}

.nav-icons { 
  display:flex; 
  gap:0.9rem; 
}

.nav-icons a { 
  color:#222; 
  font-size:1.1rem; 
  transition:.25s; 
}

.nav-icons a:hover { 
  color:#000; 
}
/* Header (glassy look) */
header {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
  color: #111;
}

/* Sections styled like panes */
section {
  width: calc(100% - 4rem);
  margin: 2rem auto;
  padding: 3rem 6%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

/* Headings styled like portfolio */
h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #111;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #444;
  border-radius: 2px;
  margin-top: 8px;
}

/* Images and screenshots */
.screenshot, section img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin: 1rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot:hover, section img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Code block */
pre {
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Footer */
footer {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.7);
  text-align: center;
  padding: 20px;
  margin-top: 2rem;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.08);
}
footer a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
