/* Reset margin and padding */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0e0e0e;
  color: #f5f5f5;
}

/* Sticky Nav Bar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #111;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  padding: 0.5rem 0;
  margin: 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #66b2ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-image: url("WebsiteImage.png");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 12px;
  color: white;
}

/* Page Content */
main {
  padding: 2rem 1rem;
}

section {
  max-width: 800px;
  margin: 2rem auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

a.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #1a73e8;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

a.button:hover {
  background-color: #1665c1;
}

/* Footer */
footer {
  margin-top: 3rem;
  color: #888;
  font-size: 0.9rem;
  padding-bottom: 1rem;
  text-align: center;
}

.centered-section {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-weight: bold;
}

.center-button {
  text-align: center;
  margin-top: 1.5rem;
}