/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Links */
a {
  color: #61a0ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #88c8ff;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.navbar nav {
  max-width: 1100px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar ul li a {
  font-weight: bold;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 8rem; /* makes room for fixed nav */
  padding-bottom: 3rem;
  text-align: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* About Section Text */
.content-section {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 0 2rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: #e0e0e0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: #888;
}
