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

body {
  background-color: rgb(250, 249, 247);
  color: #111;
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  padding: 20px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: bold;
}

.navbar a {
  text-decoration: none;
  color: #111;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.navbar a:hover,
.navbar a.active {
  opacity: 1;
  text-decoration: none;
}

/* Center image */
.center-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-wallpaper {
  width: 600px;
  max-width: 60vw;
  height: auto;
  max-height: 40vh;
  object-fit: contain;
  filter: none;
}

/* Footer */
.footer {
  padding: 20px;
  font-size: 12px;
}

.footer-social {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social a {
  color: #111;
  text-decoration: none;
  opacity: 0.8;
  font-size: 22px;
}

.footer-social a:hover {
  opacity: 1;
}

.placeholder-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111;
}

.footer .social-icons {
  margin-bottom: 10px;
}

.footer .social-icons a {
  color: #111;
  margin: 0 10px;
  font-size: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer .social-icons a:hover {
  opacity: 1;
}

.footer-text a {
  color: #111;
  text-decoration: none;
  opacity: 0.7;
}

.footer-text a:hover {
  opacity: 1;
}
