/* CSS Document */* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: helvetica, sans-serif;
}
html {font-size: 20px;}

body {
  color: #fff;
  min-height: 100vh;
  background-color: black;
  background-image: url(img/web_bg_left.png), url(img/web_bg_right.png);
  background-repeat: repeat-y, repeat-y;
  background-position: left top, right top;
display: flex;
flex-direction: column;
margin: auto 15%;
}
.logo {
	height: 150px;
	display: flex;
	margin: 0 auto;
	flex-direction: column;
	padding-top: 30px;
	padding-bottom: 10px;
}
.navbutton {
	background-image: url("img/navbutton.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: 90%;
  margin: 0 auto 28px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	}

.navbutton a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Niamey;
	font-style: italic;
	font-size: 1.5rem;
	color: #000;
	text-decoration: none;
	padding: 15px;
	cursor: pointer;
	}

.navbutton a:hover {
	background: rgba(0,0,0,.25);
	border-radius: 10px;
}
.post {
  width: 90%;
  margin: 0 auto 28px;
  padding-top: 22px;
  background: rgba(84, 48, 105,.5);
  border: 3px solid rgba(138,25,72,0.8);
  border-radius: 14px;
	padding-bottom: 20px;
}
.post h1 {
	justify-content: center;
	text-align: center;
	padding-bottom: 10px;
}

.post h2 {
	padding: 5px 30px;
	font-style: italic;	
}

.post h3 {
  margin-top: 18px;
	margin-bottom: 10px;
	padding-left: 30px;
	font-size: 1.3rem;
}
.post-sub {
display: flex;
  justify-content: space-between; 
  align-items: baseline;         
  gap: 12px;
}

.post-meta {
  font-size: 0.9rem;
 color:#D7DC2A;
  font-style: italic;
  padding-right: 20px;
}

.post p,
.post li {
  line-height: 1.3;
  padding: 5px;
	list-style: none;
	padding-right: 20px;
	padding-left: 80px;
}

.dl {
	display: block;
  width: 400px;
  height: 80px;
	background-image:url("img/dl_button.png");
	background-size: auto;
	background-repeat: no-repeat;
	text-indent: -9999px;
	margin: 20px auto auto auto;
}

.cl {
	display: block;
  width: 400px;
  height: 80px;
	background-image:url("img/cl_button2.png");
	background-size: auto;
	background-repeat: no-repeat;
	text-indent: -9999px;
	margin: 20px auto auto auto;
}

.hyperlink {
	color: #BB5DCC
}

em {
	font-style: italic;
	color: #C9377B;
}

h3 {
  margin-top: 18px;
	margin-bottom: 10px;
	padding-left: 30px;
	font-size: 1.3rem;
}
/* ===== Horizontal gallery ===== */
.post-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.post-gallery img {
  height: 180px;          /* control gallery height */
  width: auto;
  border-radius: 8px;
  flex: 0 0 auto;         /* prevent shrinking */
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.post-gallery img:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Controls */
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
}

.lightbox .close {
  top: 20px;
  right: 20px;
  font-size: 24px;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
  background: rgba(255,255,255,0.25);
}
.embed {
	display: block;
	margin: 0 auto;
	padding-top: 15px;
}