@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Orbitron', sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 10;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

canvas#stars {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('images/your-photo.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  font-size: 2.5rem;
  color: #00fff0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 2s ease-out 1.2s forwards;
  z-index: 3;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  position: relative;
  padding: 100px 20px;
  background-color: #0a0a0a;
  min-height: 100vh;
  z-index: 1;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #00fff0;
}

.notion-embed {
  max-width: 90%;
  margin: 0 auto;
  height: 80vh;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}
