/* ── Palette ──────────────────────────────────────────
   --text-heading : #e8e0d6  warm bone — titles
   --text-body    : #c2b8b0  warm mid-grey — paragraphs
   --text-muted   : #8a7f78  dim warm-grey — secondary/captions
   --accent       : #c9453a  blood red — highlights & hover
   --accent-dim   : rgba(180,0,0,.2)  subtle red glow
──────────────────────────────────────────────────── */
body {
  background: #050202;
  color: #c2b8b0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 0, 0, .12), transparent 18%),
    radial-gradient(circle at 80% 15%, rgba(255, 0, 0, .08), transparent 18%),
    linear-gradient(180deg, #090606 0%, #050202 40%, #040202 100%);
}

.glass-nav {
  background: rgba(0, 0, 0, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 0, 0, .1);
  transition: background .3s ease, border-color .3s ease;
}

.glass-nav.scrolled,
.glass-nav:hover {
  background: rgba(0, 0, 0, .95);
  border-color: rgba(255, 0, 0, .25);
}

.navbar-brand,
.nav-link {
  font-family: 'Cinzel', serif;
}

.nav-link {
  color: #c2b8b0;
  transition: color .2s ease;
}

.nav-link:hover {
  color: #c9453a;
}

.hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .92)),
    url('../img/bg.svg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.03), transparent 18%),
              radial-gradient(circle at 80% 25%, rgba(255,0,0,.06), transparent 12%);
  pointer-events: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .85));
  pointer-events: none;
}

.hero-copy {
  max-width: 680px;
  line-height: 1.8;
  color: #c2b8b0;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
}

.hero-highlights {
  color: #c2b8b0;
  font-size: 0.95rem;
}

.hero-highlights span {
  background: rgba(10, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-highlights strong {
  color: #c9453a;
  font-weight: 600;
}

.horror-title,
.section-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
  color: #e8e0d6;
  text-shadow: 0 0 22px rgba(180, 0, 0, .18);
}

.display-1 {
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  line-height: 0.95;
  color: #e8e0d6;
  text-shadow: 0 2px 20px rgba(0,0,0,.8), 0 0 40px rgba(160, 0, 0, .22);
}

.section-title {
  position: relative;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.section-title::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, #d82c2c, rgba(255, 255, 255, 0));
}

.horror-card,
.price-card,
.expect-card,
.contact-form {
  background: #0d0b0b;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.horror-card {
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.horror-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(180, 0, 0, .28);
}

.horror-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #b10000, transparent 50%);
}

.horror-card img,
.hero-image-wrap img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.hero-image-wrap img {
  max-width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55));
}

.expect-card,
.price-card {
  padding: 2rem;
}

.expect-card h3,
.price-card h3 {
  margin-bottom: 1rem;
  color: #e8e0d6;
}

.expect-card p,
.price-card p,
.contact-form p {
  color: #c2b8b0;
}

.horror-card .card-body p {
  color: #c2b8b0;
}

.horror-card .card-body h3 {
  color: #c9453a;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 12px rgba(180, 0, 0, .28);
}

.text-secondary {
  color: #8a7f78 !important;
}

.price-card {
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: #bf1f1f;
  background: linear-gradient(180deg, rgba(155, 0, 0, .12), #0d0b0b 85%);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #c9453a;
}

.contact {
  background: #050303;
}

.contact-form {
  padding: 2rem;
}

.form-control {
  background: #121010;
  border: 1px solid rgba(255, 255, 255, .08);
  color: #f5efe7;
  padding: 1rem;
  border-radius: 1rem;
}

.form-control:focus {
  background: #131010;
  color: #fff;
  border-color: #d72c2c;
  box-shadow: none;
}

.btn-danger {
  background: #c20000;
  border-color: #c20000;
  box-shadow: 0 15px 35px rgba(194, 0, 0, .28);
}

.btn-danger:hover,
.btn-outline-light:hover {
  opacity: 0.95;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .22);
  color: #c2b8b0;
}

.quote {
  border-left: 4px solid #c9453a;
  padding-left: 1rem;
  margin-top: 2rem;
  font-style: italic;
  color: #c2b8b0;
}

.bg-darker {
  background: #080606;
}

.safety-warning {
  background: #080404;
  border-top: 1px solid rgba(180, 0, 0, .25);
  border-bottom: 1px solid rgba(180, 0, 0, .25);
}

.warning-icon-lg {
  font-size: 2.5rem;
  display: block;
}

.warning-intro {
  color: #c2b8b0;
  font-size: 1rem;
  line-height: 1.8;
}

.warning-card {
  background: #0d0808;
  border: 1px solid rgba(180, 0, 0, .2);
  border-radius: 16px;
  padding: 1.75rem;
}

.warning-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #c9453a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(180, 0, 0, .2);
}

.warning-list {
  padding-left: 1.25rem;
  color: #c2b8b0;
  line-height: 1.9;
}

.warning-list strong {
  color: #e8e0d6;
}

.warning-card p {
  color: #c2b8b0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hazard-tag {
  display: inline-block;
  background: rgba(180, 0, 0, .15);
  border: 1px solid rgba(180, 0, 0, .3);
  color: #c9453a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.legal-disclaimer {
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  color: #8a7f78;
  font-size: 0.85rem;
  line-height: 1.7;
}

.legal-disclaimer strong {
  color: #c2b8b0;
}

.story p, .contact p {
  color: #c2b8b0;
}

footer {
  background: #050202;
  color: #8a7f78;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .display-1 { font-size: 2.6rem; }
  .hero-highlights span { width: 100%; }
  .hero { padding-top: 90px; }
  .horror-card::before { display: none; }
  .section-title { font-size: 1.8rem; }
}
