body {
  background: #000;
  color: #d4af37;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  
  align-items: center;
  background: #0d0d0d;
  padding: 10px;
  border-bottom: 2px solid #d4af37;
}

nav a {
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  background: #333; /* lighter background */
  color: #d4af37;
  font-family: 'Segoe UI', sans-serif;
  padding: 0.5rem 1rem; 
  border-radius: 0.25rem;
  transition: background 0.2s ease-in-out;
}

nav a:hover {
  text-decoration: underline;
  background: #444; 
}

nav a.active {
  background: #111;
}

.logo {
    width: 100px;
    height: 100px;
}
.container {
  width: 80%;
  margin: 30px auto;
  display: flex;
  justify-content: left;
  align-items: center;
}
.post-card {
  border: 1px solid #d4af37;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.btn {
  color: #000;
  background: #d4af37;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}
.about {
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.founder-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d4af37;
  margin: 1rem;
}

.about-text {
  flex: 1;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #d4af37;
  margin-top: 30px;
}
