body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('/img/background.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(0,0,0,0.6);
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.home-btn {
  font-size: 16px;
}

/* Right section nav */
.side-nav {
  position: absolute;
  top: 80px;
  right: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 10px 20px;
}

.side-nav ul {
  list-style: none;
  padding: 0;
}

.side-nav li {
  margin: 12px 0;
}

.side-nav a {
  color: #ff66cc;
  text-decoration: none;
  font-weight: 500;
}

.side-nav a:hover {
  text-decoration: underline;
}

/* Title */
.title {
  text-align: center;
  margin-top: 20%;
  font-size: 42px;
  text-shadow: 0 0 10px #000;
}

/* Footer logo circle */
.circle-logo {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.circle-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}
/* about.css */
.about-section {
  text-align: center;
  margin-top: 150px;
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 8px black;
}


.home-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: white;
}

.home-icon {
  width: 24px;
  height: 24px;
  filter: invert(1); /* makes dark icons light */
  margin-right: 6px;
}

.home-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1000%) invert(1); /* Makes black icon turn white-ish */
}


