/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #111;
  color: #eee;
}
a {
  color: #4fd1c5;
  text-decoration: none;
}

main, footer {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  color: #fff;
  margin-bottom: 0.5em;
}

ul {
  list-style: disc inside;
  margin-bottom: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #4fd1c5;
  color: #111;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta:hover {
  background: #38b2ac;
}

/* Canvas Animation */
#animation-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  background: #0a0a0a;
  opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: white;
  animation: float 2s ease-in-out infinite;
  opacity: 0.7;
  z-index: 10;
  transition: opacity 0.5s ease;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* Contact */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}