
body {
  margin: 0;
  font-family: sans-serif;
  background: #1a1a1a;
  color: #f8f8f8;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background: #111;
  padding: 1rem;
  margin: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #eee;
  text-decoration: none;
}

nav ul li a:hover {
  color: #bfa89f;
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

main {
  padding: 2rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 2rem;
}

blockquote {
  font-style: italic;
  color: #666;
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.socials {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.socials li {
  list-style: none;
}

.socials a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  margin: 6px 0;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
  gap: 0.5rem;
}

.socials svg,
.socials img {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.socials a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Makes icons white */
}

.socials a:hover {
  background: #555;
  transform: translateY(-2px);
}

.kofi-panel {
  flex: 1;
  max-width: 400px;
}

.recent {
  margin-top: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgb(237, 237, 237);
  color: #111;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(199, 174, 252, 0.5);
}

.card img, .card video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

#lightbox {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

#lightbox img, #lightbox video {
  max-width:90%;
  max-height:80%;
}

@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }

  .socials {
    align-items: center;
    text-align: center;
  }

  .kofi-panel {
    margin-top: 2rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
