/* GLOBAL */
body {
  margin: 0;
  padding: 0;
  background: black;
  font-family: "Georgia", serif;
  color: #c5c5c5;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 40px 0;
}

/* HEADER */


header {
  text-align: center;
}


.logo {
  font-size: 48px;
  letter-spacing: 6px;
  text-align: center;
  color: #5a5a5a;
  text-shadow: 0 0 8px #222;
  margin-bottom: 5px;
}

.tagline {
  font-size: 18px;
  text-align: center;
  letter-spacing: 3px;
  opacity: 0.7;
}




/* IMAGE */
.image-section {
  text-align: center;
  margin-top: 40px;
}

.cult-image {
  width: 180px;
  opacity: 0.6;
  filter: blur(1px);
  transition: 0.5s;
}

.cult-image:hover {
  opacity: 0.9;
  filter: blur(0px) drop-shadow(0 0 12px #333);
}

/* INDEX */
.index-section {
  margin-top: 50px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
  text-align: center;
}

.index-section h2 {
  font-size: 26px;
  letter-spacing: 4px;
  color: #777;
  margin-bottom: 20px;
}

.cult-index {
  list-style-position: inside;
  padding: 0;
  font-size: 20px;
  letter-spacing: 1px;
}

.cult-index li {
  margin: 10px 0;
  opacity: 0.8;
  transition: 0.3s;
}

.cult-index li:hover {
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 8px #444;
}

/* BUTTONS */
.button-group {
  display: grid;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.cult-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  border: 1px solid #444;
  color: #999;
  background: #0a0a0a;
  text-decoration: none;
  box-shadow: 0 0 10px #111;
  border-radius: 2px;
  transition: 0.4s;
}

.cult-button:hover {
  color: white;
  border-color: #888;
  box-shadow: 0 0 20px #444;
  letter-spacing: 6px;
}

/* BOOK BUTTON SPECIAL */
.cult-book-button {
  font-style: italic;
  border-color: #555;
  opacity: 0.85;
}

.cult-book-button:hover {
  opacity: 1;
  border-color: #aaa;
  text-shadow: 0 0 10px #666;
}


.cult-book-button {
  position: relative;
}

.cult-book-button:hover::after {
  content: "Click to open on Amazon";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
  color: #888;
  white-space: nowrap;
}

.cta-section {
  text-align: center;
}

.button-group {
  display: grid;
  justify-items: center;
}


/* FOOTER */
footer {
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  letter-spacing: 2px;
}

.footer-line {
  font-size: 13px;
  letter-spacing: 3px;
  margin-top: 6px;
  color: #444;
}

