
body {
  margin: 0;
  font-family: 'Spectral SC', serif;
  background: #1c1c1c;
  color: #f8f8f8;
}
h1, h2 {
  font-family: 'Special Elite', monospace;
  color: #aa9250;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.6);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay h1 {
  font-size: 3rem;
  margin: 0;
}
.tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #f0f0f0;
  font-style: italic;
}
section {
  padding: 4rem 2rem;
  max-width: 960px;
  margin: auto;
}
.manifesto h2 span {
  font-family: 'Anton', sans-serif;
  color: #ff3d00;
}
.quote {
  background: #292929;
  border-left: 4px solid #aa9250;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
}
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid img {
  width: 100%;
  border-radius: 4px;
}
footer {
  text-align: center;
  background: #111;
  padding: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}
footer a {
  color: #ffd700;
  text-decoration: none;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}
.img-wrapper img {
  width: 100%;
  transition: 0.5s ease;
  filter: grayscale(20%) contrast(90%);
}
.img-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff8e1;
  font-size: 0.85rem;
  font-family: 'Spectral SC', serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-wrapper:hover .caption {
  opacity: 1;
}
.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  z-index: 2;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;        /* Force horizontal layout */
  justify-content: center;    /* Center horizontally */
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.social-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(78%) sepia(55%) saturate(560%) hue-rotate(3deg) brightness(100%) contrast(92%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  filter: invert(90%) sepia(93%) saturate(427%) hue-rotate(11deg) brightness(105%) contrast(95%);
}

.social-links svg {
  filter: url(#roughen);
}