@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --bg-color: #1a1a1a;
  --text-color: #d3cbb8;
  --accent-color: #8b0000; /* Blood red */
  --font-body: 'Crimson Text', serif;
  --font-heading: 'Playfair Display', serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  background-image: linear-gradient(rgba(26,26,26,0.9), rgba(26,26,26,0.9)), url('../assets/IMG-20260301-WA0002.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border: 1px solid #333;
}

header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
}

h1 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.meta {
  font-style: italic;
  font-size: 0.9rem;
  color: #a09886;
  margin-top: 10px;
}

.meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #a09886;
}

.meta a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.label-pill {
  background: #333;
  color: #ddd;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid #555;
}

.label-pill:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

main {
  padding: 20px 0;
}

main p {
  margin-bottom: 1.5rem;
}

main strong {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.hero-img {
  width: 100%;
  height: auto;
  border: 4px solid #333;
  box-sizing: border-box;
  filter: sepia(0.3) contrast(1.2);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

main img {
  max-width: 100%;
  height: auto;
  border: 2px solid #555;
  border-radius: 4px;
  filter: grayscale(20%) sepia(10%);
  display: block;
  margin: 20px auto;
  cursor: zoom-in;
  transition: filter 0.3s;
}

main img:hover {
  filter: grayscale(0%) sepia(0%);
}

footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed #555;
  font-size: 0.9rem;
}

footer a {
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a:hover {
  color: var(--accent-color);
}

/* Lightbox base styles */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}
#lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(139,0,0,0.5);
}

/* Blood drip animation effect for a bit of extra flavor */
.drip {
  position: absolute;
  top: 0;
  width: 2px;
  background: var(--accent-color);
  animation: drop 5s infinite;
  opacity: 0.7;
}

@keyframes drop {
  0% { height: 0; top: 0; opacity: 0; }
  10% { opacity: 0.7; }
  50% { height: 50px; top: 0; }
  100% { top: 100%; height: 0; opacity: 0; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .container { padding: 10px; border: none; box-shadow: none; }
}
