html {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #140000 0%, #050505 70%);
  background-attachment: fixed;
  background-size: cover;
  color: #e6e1d8;
  overflow-x: hidden;
  font-family: 'Libre Baskerville', serif;
  position: relative;
}

/* 🌫 Moving Mist Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(100,0,0,0.08), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(150,0,0,0.05), transparent 60%);
  animation: mistMove 40s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes mistMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

#header {
  position: relative;
  height: 479px;
  width: 100%;
  background-color: #050505;
  background-image: url('images/head.jpg');
  background-repeat: no-repeat;
  background-position: center;background-color:#000000;
}

/* 🕯 Navigation – Gothic Arch Tabs */
#navigation {
  position: relative;
  width: 100%;
  padding: 60px 5vw 50px;
  background: radial-gradient(ellipse at center, #140000 0%, #050505 70%);
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid #300000;
  border-bottom: 1px solid #300000;
  z-index: 10;
}

#navigation a {
  position: relative;
  padding: 18px 26px 30px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d8d2c6;
  text-decoration: none;
  background: linear-gradient(to bottom, #1a0000, #0b0000);
  clip-path: polygon(
    50% 0%,
    85% 12%,
    100% 35%,
    100% 100%,
    0% 100%,
    0% 35%,
    15% 12%
  );
  transition: all 0.4s ease;
}

#navigation a:hover {
  background: linear-gradient(to bottom, #300000, #120000);
  box-shadow: 0 0 20px rgba(160, 0, 0, 0.5);
  transform: translateY(-4px);
  animation: flicker 1.5s infinite;
}

/* 🩸 Coffin Framed Content */
#content {
  width: 65%;
  margin: -40px auto 0;
  position: relative;
  z-index: 1;
}

.contentx {
  position: relative;
  padding: 60px;
  margin-bottom: 80px;
  background: rgba(10, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(120, 0, 0, 0.4);
  border-radius: 0;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,0.8),
    0 0 60px rgba(0,0,0,0.7);
  line-height: 1.8;
  letter-spacing: 1.4px;
  text-align: justify;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.contentx::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(120, 0, 0, 0.3);
  pointer-events: none;
}

/* 🩸 Elegant Links */
.contentx a {
  position: relative;
  color: #c13b3b;
  text-decoration: none;
}

.contentx a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #900000, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contentx a:hover::after {
  opacity: 1;
}

/* 🕯 Wax Seal Heading */
h1 {
  position: relative;
  display: inline-block;
  padding: 40px 80px 40px 40px;
  font-family: 'Cinzel Decorative', serif;
  letter-spacing: 5px;
  font-size: 32px;
  text-transform: uppercase;
  color: #f4eee4;
}

h1::after {
  content: "✠";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #7a0000 40%, #3a0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0000;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(150,0,0,0.5);
}

/* 🕯 Cathedral Window Blockquote */
blockquote {
  position: relative;
  padding: 80px 70px;
  margin: 100px auto;
  max-width: 900px;
  color: #f3e6cc;
  background: linear-gradient(to bottom, #120000, #050000);
  clip-path: polygon(
    50% 0%,
    100% 18%,
    100% 100%,
    0% 100%,
    0% 18%
  );
  box-shadow: 0 0 50px rgba(0,0,0,0.9);
  line-height: 2;
}

/* 🕯 Inputs */
textarea,
input,
select {
  width: 40%;
  max-width: 600px;
  padding: 16px 20px;
  background: #050000;
  border: 1px solid #7a0000;
  color: #f0e6d2;
  border-radius: 0;
  font-size: 18px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

/* 🩸 Music Button */
#music-toggle {
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  color: #f5f1ea;
  padding: 16px 32px;
  border-radius: 0;
  border: 1px solid #b11212;
  background: linear-gradient(to bottom, #200000, #0a0000);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(177,18,18,0.4);
  transition: all 0.3s ease;
}

#music-toggle:hover {
  box-shadow: 0 0 30px rgba(177,18,18,0.7);
}

/* 🕯 Footer */
#footer {
  text-align: center;
  padding: 80px 20px;
  color: #bfb6a6;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;
  position: relative;
}

#footer::before,
#footer::after {
  content: "✦ ✧ ✦";
  display: block;
  font-size: 22px;
  color: #7a0000;
  margin: 20px 0;
  opacity: 0.6;
  letter-spacing: 6px;
}

#footer a {
  color: #c13b3b;
  text-decoration: none;
  transition: 0.3s ease;
}

#footer a:hover {
  text-shadow: 0 0 10px rgba(180,0,0,0.7);
}

/* 🕯 Candle Flicker */
@keyframes flicker {
  0%, 100% { text-shadow: 0 0 6px rgba(180,0,0,0.4); }
  50% { text-shadow: 0 0 14px rgba(180,0,0,0.8); }
}

/* Lyrics Columns */
p.lyrics {
  column-count: 2;
  column-gap: 2em;
  white-space: pre-wrap;
}
