/*
Theme Name: PoeGhostal BlisterCard Final
Theme URI: https://www.poeghostal.com
Author: Poe Ghostal
Author URI: https://www.poeghostal.com
Description: Final version of the blister card-style theme.
Version: 1.2
*/

html, body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #444;
  font-family: Verdana, Tahoma, Arial, sans-serif;
}

#site-wrapper {
  background: linear-gradient(
    to bottom,
    #000000 0%,       /* solid black at top */
    #0d1c2f 30%,      /* fade into very dark blue */
    #004080 100%      /* rich blue at bottom */
  );
  border-radius: 24px;
  max-width: 960px;
  margin: 2rem auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

#hanger-notch {
  position: relative;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: -20px;
  z-index: 2;
}

.notch-cutout {
  width: 80px;
  height: 40px;
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.search-label {
  color: gray;
  font-size: 16px;
  margin-left: 12px;
  position: relative;
  top: 10px;
}

.entry-title a {
  color: black;
  text-decoration: none;
}

.entry-title a:hover {
  color: blue;
  text-decoration: underline;
}

#logo {
  text-align: center;
  padding: 1rem;
  margin-top: -20px;
}

#logo img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

#site-navigation {
  text-align: center;
  margin-bottom: 1rem;
}

#site-navigation .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.6rem;
}

#site-navigation .menu li a {
  text-decoration: none;
  color: #999;
  transition: color 0.2s;
  font-family: 'Special Elite', serif;
}

#site-navigation .menu li a:hover {
  color: red;
}

#content {
  background: white;
  padding: 2rem;
  margin: 0 auto;
  width: 90%;
  border-radius: 1rem;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

#content a {
  color: #004080;
  text-decoration: underline;
}

#content a:hover {
  color: #ff0000;
}

input[type="text"] {
  color: #000;
  font-size: 16px;
  padding: 6px;
}

#colophon {
  color: inherit;
  padding: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

#colophon p {
  color: white;
}

.footer-art img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}

.site-footer {
  display: none;
}

.bioblock {
  background-color: #fbe6c2;
  border: 2px dashed #d28b1a;
  padding: 15px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  overflow: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bioblock img {
  float: left;
  margin-right: 15px;
  border-radius: 4px;
  max-width: 150px;
  height: auto;
}

.bioblock h3 {
  margin-top: 0;
  font-size: 20px;
}

.bioblock p {
  margin: 0 0 8px 0;
}

.entry-content {
  margin-bottom: 2rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-sizing: border-box;
}