/* Base twilight theme */
body {
  font-family: "Didot", "Bodoni MT", serif;
  margin: 0;
  background: radial-gradient(circle at center, #0b0b0b 0%, #000 100%);
  color: #e0e0e0;
  text-align: center;
}

/* Nav */
.navbar {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

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

.navbar a:hover {
  color: #b38989;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 10px;
  top: 2rem;
  min-width: 160px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Header */
.twilight-header {
  padding: 5rem 1rem 2rem;
}

.twilight-header h1 {
  font-style: italic;
  font-size: 1.7rem;
  color: #e8e8e8;
}

.twilight-header p {
  color: #999;
  font-size: 0.9rem;
}

/* 🎶 Music box */
.music-box {
  margin: 1.5rem auto 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  width: fit-content;
}

#playMusic {
  background: #1a1a1a;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#playMusic:hover {
  background: #2c2c2c;
  color: #d4af37;
  border-color: #d4af37;
}

/* Grid of posts */
.twilight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  padding: 1rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.post img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
  transition: all 0.4s ease;
}

.post img:hover {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.3);
}

/* Footer */
.twilight-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #777;
}

/* Fog bottom only */
.fog {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url('https://thabangm.neocities.org/%D0%B3%D1%83%D1%81%D1%82%D0%BE%D0%B8%CC%86%20%D1%82%D1%83%D0%BC%D0%B0%D0%BD%20%D0%B4%D1%8B%D0%BC%D0%B0%20%D0%B8%D0%B7%D0%BE%D0%BB%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%20%D0%BD%D0%B0%20%D0%BF%D1%80%D0%BE%D0%B7%D1%80%D0%B0%D1%87%D0%BD%D0%BE%D0%BC%20%D1%84%D0%BE%D0%BD%D0%B5%20PNG%20,%20%D1%82%D1%83%D0%BC%D0%B0%D0%BD,%20%D0%B3%D1%83%D1%81%D1%82%D0%BE%D0%B8%CC%86%20%D0%B4%D1%8B%D0%BC,%20%D0%B4%D1%8B%D0%BC%D0%BD%D1%8B%D0%B8%CC%86%20PNG%20%D0%BA%D0%B0%D1%80%D1%82%D0%B8%D0%BD%D0%BA%D0%B8%20%D0%B8%20%D0%BF%D0%BD%D0%B3%20PSD%20%D1%80%D0%B8%D1%81%D1%83%D0%BD%D0%BE%D0%BA%20%D0%B4%D0%BB%D1%8F%20%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D0%BE%D0%B8%CC%86%20%D0%B7%D0%B0%D0%B3%D1%80%D1%83%D0%B7%D0%BA%D0%B8.jpeg') repeat-x;
  opacity: 0.2;
  animation: fogMove 60s linear infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: lighten;
}

@keyframes fogMove {
  0% { background-position: 0 0; }
  50% { background-position: 1000px 0; }
  100% { background-position: 0 0; }
}
/* --- PHOTO DUMP PAGE --- */
.photo-body {
  background: #0b0b0b;
  color: #ddd;
  font-family: 'Didot', serif;
  overflow-x: hidden;
}

.photo-header {
  text-align: center;
  padding: 3rem 1rem;
  color: #e4dcdc;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 2rem auto;
  width: 90%;
  max-width: 900px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.photo-card {
  position: relative;
  min-width: 250px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.photo-card:hover {
  transform: scale(1.05);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background: rgba(0,0,0,0.6);
  color: #f5e6e6;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card:hover .photo-info {
  opacity: 1;
}

.prev, .next {
  background: rgba(255,255,255,0.1);
  color: #ccc;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(255,255,255,0.3);
}

