﻿body {
  font-family: 'IM Fell English', serif;
  background-color: #f1e9d2; /*parchment*/;
  color: #3e3e3e;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2rem;
  background: #d6cfc2;
  border-bottom: 2px solid #a89c8e;
}

/* ===== margins auto center the container on the page =====*/
#container {
	margin: 10px auto 10px auto;
	padding: 20px;
	background-color: #ffffff;
	width: 90%;
}
/*===== styles for top banner =====*/
#banner {
	background-position: center 85%;
	padding: 1px;
	background-color: #FFFFFF;
	background-image: url('../images/Banner.png');
	background-size: 80%;
	height: 150px;
	width: 80%;
	color: #000000;
}

/*===== styles for top menu =====*/
#topmenu {
	background-color: #FFFFFF;
	text-align: center;
	font-size: .90em;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	color: inherit;
	border-top: 2px solid #AB9F5F;
	border-bottom: 2px solid #AB9F5F;
}
p {
	text-indent: 2em; /* indent 2 times the font size */
}

.responsive-image {
  max-width: 750px;
	width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid #ccc; /* optional: adds a subtle frame */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* optional: adds depth */
} 

/* Subtle gold glow for active state */
.glow-active {
  box-shadow: 0 0 10px rgba(255, 165, 00, 0.8);
  transition: box-shadow 0.3s ease;
}
.button-container {
  display: flex;
  justify-content: center; /* horizontal center */
}

#toggleMagnifier {
  /* optional styling */
}
/* Container to hold label + slider */
.zoom-container {
  position: fixed;       /* stays in place when scrolling */
  top: 50%;              /* halfway down the page */
  right: 20px;           /* distance from right edge */
  transform: translateY(-50%); /* perfect vertical centering */
  display: flex;
  flex-direction: column; /* stack label and slider vertically */
  align-items: center;
  gap: 8px;
}

/* Rotate the slider */
#zoomControl {
	direction: rtl;
  writing-mode: bt-lr; /* vertical orientation (bottom to top) */
  -webkit-appearance: slider-vertical; /* for WebKit browsers */
  width: 8px;          /* thickness of slider track */
  height: 200px;       /* length of slider */
}

/* Base style */
.interactive {
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Active or focus state */
.interactive:active,
.interactive:focus {
  box-shadow: 0 0 8px rgba(158, 33, 33, 0.6); /* warm gold glow */
  transform: scale(1.02); /* tiny lift for feedback */
}

/* Optional: hover for previewing the glow */
.interactive:hover {
  box-shadow: 0 0 6px rgba(194, 13, 37, 0.4);
}

.img-magnifier-glass {
  pointer-events: none; /* Prevents interference with mouse events */
  z-index: 9999;         /* Ensures the lens stays on top of other elements */
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  background-repeat: no-repeat;
  background-size: 600px 800px; /* Adjust based on your image size */
}





#content {
	margin-right: 140px;
	margin-left: 140px;
	padding: 5px;
	text-align: left;
	vertical-align: top;
}



#magnifierLens {
  position: absolute;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: none;
  width: 100px;
  height: 100px;
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1000;
  transition: background-size 0.2s ease, background-position 0.2s ease;
}

.Banner img {
  width: 100%;
}
/*
#zoomSlider {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: rotate(270deg) translateY(-50%);
  transform-origin: center;
  height: 150px;
}
*/




/*===== general styles =====*/
hr {
	width: 50%;
	text-align: center;
	background-color: #004145;
	height: 5px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: #EBDF9F; /*lt green*/
}

/*===== Styles for footer =====*/
#footer {
	border-top: 2px solid #242F24;
	clear: both;
	padding: 5px;
	background-color: rgb(255, 255, 255);
	text-align: center;
}
#footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}

.title {
  font-family: 'IM Fell English SC', serif;
}

