/* Reset default browser margins */
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  /* If you have more content, remove overflow:hidden. 
     For a single-page effect, this keeps everything in place. */
  overflow: hidden;
}

/* Background container to hold the canvas */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* ensures canvas is behind other elements */
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  background-color: #ff4d4d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #cc0000;
}

.btn.secondary {
  background-color: #333;
}

.btn.secondary:hover {
  background-color: #555;
}

/* Footer */
.footer {
  background-color: #333;
  color: #aaa;
  text-align: center;
  padding: 20px;
}
