@charset "UTF-8";
/* CSS Document */


body {
	color: black;     /* text color for the entire page unless overruled  */ 
	background-color: #4D4B4A;     /* background color for the entire page  */ 
	font-family: Times New Roman, Georgia, Serif;   /* listed in descending order of preference  */
	text-align: justify;
	font-size: 16px;
	line-height: 130%; 
}


h1 {
	text-align: center;   /* Aligning Text Horizontally: center, left, right, justify */
	color: #383737;   /* text color */ 
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, Verdana, sans-serif;
	background-color: #e0dbc2;    /* background-color here highlights the text, text appear as if it's in a container */ 
	border: none;

/* Text Border 
border-right-width: 2px;
border-left-width: 1px;
border-top-width: 1px;
border-bottom-width: 3px;

border-right-style: none;
border-left-style: none;
border-top-style: none;
border-bottom-style: solid;

border-right-color: white;
border-left-color: white;
border-top-color: white;
border-bottom-color: red;
*/

}


h2 {
	text-align: center;
	font-size: 22px;
	color: black;   /* text color */ 
}


h3 {
	text-align: center;
	font-size: 19px;
	color: black;    
}


h4 {
	text-align: center;
	font-size: 16px;
	color: #383737;   /* text color */ 
}

h5 {
	text-align: center;
	font-size: 13px;
	font-family: Arial, Verdana, sans-serif;
	color: #383737;   /* text color */ 
}

h6 {
	text-align: center;
	font-size: 14px;
	font-family: Arial, Verdana, sans-serif;
	color: #383737;   /* text color */ 
}


h8 {
	text-indent: 12px;   /* first line indent in a paragraph  */
	text-align: justify;
	font-size: 16px;
	color: navy;
	font-family: Times New Roman, Georgia, Serif;
	line-height: 140%   /* Line height—the distance between lines. Can be in px or pt. Double-spacing could be defined like: line-height: 2 or 200%.  */
}

p {
	text-indent: 12px;   /* first line indent in a paragraph  */
	text-align: justify;
	font-size: 16px;
	color: black;
	font-family: Times New Roman, Georgia, Serif;
	line-height: 130%   /* Line height—the distance between lines. Can be in px or pt. Double-spacing could be defined like: line-height: 2 or 200%.  */
}

a:link {
	color: navy;
	text-decoration: none;
}
a:visited {
	color: navy;
	text-decoration: none;
}
a:active {
	color: orange;
	text-decoration: none;
}
a:hover {
	color: #B70818;
	text-decoration: none;
	background-color: none;
	
}



/* Layout/ Structure */
	
#main_container {   	 	
	position:relative;   /* position:relative rule allows us to define absolutely placed objects within this container */	
		
	margin: auto;   /* margin:auto rule centers the box */ 		
		

	width: 95%;     /* takes 95% of screen width */
  	max-width: 1200px; /* but never grows wider than 1200px */
  	margin: 0 auto; /* centers on desktop */

}



/* Header banner */

#header {
  background-image: url("header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;      /* scales image to fill the width */
  width: 100%;
  aspect-ratio: 6.5 / 1;         /* preserves banner shape automatically */
}






	/* Main content grows naturally */
	/* Center column for text/images */		
#center_column {  		
	background-color: #EEE9Cf; 		
	 	
	width: 94%;     /* takes 94% of screen width */
  
	max-width: 1200px; /* but never grows wider than 1200px */
 	 margin: 0 auto; /* centers on desktop */

    
	padding-top: 5px; 
	padding-left: 3%; 	
	padding-right: 3%; 	
}





/* Top Footer */

#footer-top {
	 		
	
	background-color:#EEE9Cf;
	text-align: center;
	
	text-decoration:none;
	
	padding-right: 20px;

	width: 100%;    
  
	max-width: 1200px; /* but never grows wider than 1200px */
 	 margin: 0 auto; /* centers on desktop */

}



#footer-top a {
	text-decoration: none;
	width: 100%;
	text-align: center;
}
#footer-top a:hover{
	text-decoration: none;
	background-color: transparent;  
        padding-bottom: 0px;
	display:inline;
}



/* Footer */
#footer {		
	

	height: auto;		
	 
	bottom:0;
	padding-bottom: 20px;
	width:100%;
	background-color:#365937;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, Verdana, sans-serif;
	color: #eeeeee;   
	text-decoration:none;
				   /* Avoid padding-top and padding-bottom, as these properties expand the height of the div tag 
                               to which they’re applied. Instead, use padding-left, and if you wish, padding-right. Start 
                               with 5 pixels of padding on the left, and add more or right padding if necessary. */


	    
  
	max-width: 1200px; /* but never grows wider than 1200px */
 	 margin: 0 auto; /* centers on desktop */
}

#footer a {
	color: #eeeeee;
	text-decoration: none;
	width:100%;
	padding-bottom: 10px;
	padding: 0.3em 0.6em;
	text-align: center;
}
#footer a:hover{
	text-decoration: none;
	background-color: transparent;  
        color: #029feb;
	padding-bottom: 0px;	
	display:inline;
}






/* Arrows */ 

#arrows {
	width: 100%;
	height: auto;  
	clear: both; 
	text-align: center; 
	border: none;
}
#arrows a {
	color: #383737;
	cursor: pointer;
	display: inline;
	text-decoration: none;
	width: 100%;
}
#arrows a:hover{
	text-decoration: none;
	color: white;
}
#arrows a:hover {
	background: #E0DBC2;  
        color: #B70818;
	padding-bottom: 0px;
	display:inline;
}





/* ------------------- */
/* IMAGES — BASE RULES */
/* ------------------- */

/* Generic responsive image */ 
.responsive-img { 
	max-width: 100%; 
	height: auto; 
	display: block; 
}

/* Centered image (big ones) */
/* Centered standalone image with caption */
.image-box {
	max-width: 800px;   /* or whatever size fits desktop */  
  	margin: 1em auto;        
  	text-align: center;
}

.image-box img {  
  display: block;         
  margin: 0 auto;         
  max-width: 100%;        
  height: auto;
}

.image-box .caption {  
  margin-top: 0.2em;  
  font-size: 0.9rem;  
  color: #336600;  
  line-height: 1.4;
}

/* ---------------------------- */
/* Floated Image Variations */
/* ---------------------------- */

.image-left {  
  float: left;
  display: inline-block;  
  max-width: 32%;     
  margin: 0.2em 0.5em 0 0;  
  text-align: center; 
   color: #336600; 
}

.image-right {  
  float: right;  
  max-width: 32%;  
  margin: 0.2em 0 0 0.5em;  
  text-align: center;  
  display: block;
  color: #336600;
}

.image-rightX {  
  float: right;  
  max-width: 45%;  
  margin: 0.2em 0 0 0.5em;  
  text-align: center;  
  display: block;
  color: #336600;
}	

/* ---------------------------- */
/* Zoom effect on hover */
/* ---------------------------- */


/* ---- Optional Zoom Effect (only on some images) ---- */

/* Make container clip the enlarged image */
.zoom {
	
 overflow: hidden;
  position: relative;
}

/* Ensure images inside zoom containers can animate */
.zoom img {
  display: block;
  height: auto;
 	-webkit-transition: 0.6s ease;
	 transition: 0.6s ease;
}

.zoom:hover {
 	 background-color: beige;
	 transition: 0.6s ease;
	transform: scale(1.1); /* (120% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


/* ---------------------------- */
/* Responsive adjustments */
/* ---------------------------- */

@media (max-width: 768px) {

  /* Cancel floats so images stack on smaller screens */
  .image-left,  
  .image-right,  
  .image-rightX {    
    float: none;    	
    max-width: 100%;    
    margin: 1em auto;  
  
}
  .image-box {
    float: none;
    max-width: 95%;
  }

  .caption {
    font-size: 1em;
  }

  .image-left .caption,
  .image-right .caption,
  .image-rightX .caption {  
    font-size: 0.8rem;  
    color: #336600;  
    line-height: 1.3;  
    max-width: 90%;
  }

}


/* Larger, finger-friendly links for phones and small tablets */
@media (max-width: 600px) {
  a {
    display: inline-block;     /* ensures padding adds clickable area */
    padding: 0.8em 1em;        /* bigger tap target */
    font-size: 1.1em;          /* slightly larger text */
    margin: 0.4em 0;             /* separation between links */
	text-align: center; 
  }

}


.caption {
	color:#336600; 
	font-size:12px;
	font-family: Times New Roman, Georgia, Serif;  
	text-align:center;
	line-height: 120% 
}





.thumbnails {
	text-align:center;
	border:none;
	opacity: 1;
}
.thumbnails a {
	border:none;
	width:100%;
}
.thumbnails a:hover{
	background-color: transparent;
	border:none;	
	opacity: 0.5;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
}

.comment {
	background-color: beige;
	margin: auto;
	padding: 15px;
	float: center;
}

.response {
	
	margin: auto;
	padding: 15px;	
	float: center;
	font-style: italic;
}


/* References */ 

#references {
	width: 100%; 
	border: none;
	font-size: 13px;
	font-weight: 600; 
	font-family: Arial, Verdana, sans-serif;
}
#references a {
	color: #383737;
	cursor: pointer;
	display:inline;
	text-decoration:none;
	width:100%;
}
#references a:hover{
	text-decoration:none;
	color: white;
	background: #E0DBC2;  
        color: #B70818;
	padding-bottom: 0px;
	display:inline;
}







.next-chapter {
	text-align:center;
	border: none;
	opacity: 1;
}
.next-chapter a {
	border: none;
	width: 100%;
}
.next-chapter a:hover{
	background-color: transparent;
	border:none;	
	opacity: 0.7;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;	
}



.contact {
	text-align: center;
	border: none;
	opacity: 1;
}
.contact a {
	border: none;
	width: 100%;
}
.contact a:hover{
	background-color: transparent;
	border:none;	
	opacity: 0.7;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
	
}



.image-no-zoom {
	text-align: center;
	border: none;
	opacity: 1;
}
.image-no-zoom a {
	border: none;
	width: 100%;
}
.image-no-zoom a:hover{
	background-color: transparent;
	border:none;	
	opacity: 0.7;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;	
}






/* Side-by-Side Image Gallery + hover zoom */

/* Three image containers (use 25% for four, and 50% for two, etc) */

.column {
	padding: 5px;
	text-align: center;
	display: table;
	margin: 5px;
	border: none;
}


.column:hover {
    	background-color: beige;
	-moz-box-shadow:    0px 0px 5px 2px #cccaca;
  -webkit-box-shadow: 0px 0px 5px 2px #cccaca;
  box-shadow:         0px 0px 5px 2px #cccaca;
}



.column a {
	border:none;
	width:100%;
}

.column a:hover{
	background-color: transparent;
	border:none;	
}


.container {
 position: relative;
 
 overflow: hidden;
 }

.container:hover .item img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.item {
 position: absolute;
 top: 0;
 left: 0;
 }

.item img {
 -webkit-transition: 0.6s ease;
 transition: 0.6s ease;
 }


/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
} 

.legend {
	font-size:12px;
	font-family: Times New Roman, Georgia, Serif; 
	color: #336600;   
	text-align:center;
	text-decoration:none;
	line-height: 120%; 
	
}



.pic-cap {
	float: right;  	
	max-width: 340px;   /* limits width on desktop */  	
	width: auto;        /* shrink to fit smaller screens */  	
	margin: 1em;        /* spacing around box */  	
	padding: 1em;  	
	background: #fef8d1;  /* optional styling */  	
	border: 1px solid #ccc; 	 
	box-sizing: border-box;
}
	
	/* On small screens, stop floating so it stacks */	
	@media (max-width: 600px) { 	 
	.pic-cap { 	   
	float: none; 	   
	margin: 1em auto;	  
}}

#wrapper { 
	width: 100%; 
	text-align:center;
}





/* Horizontal Navigation Bar Starts */ 

/* Navigation bar container */
.navbar {
  
 	display: flex; 

  	justify-content: center;   /* centers the buttons horizontally */
  	align-items: center;
	flex-wrap: nowrap;   
  
 /*  padding: 0.5em 0; */
	margin:0px auto 0px auto;  
     
        padding:0px 20px 0px 20px;

/* Background color and gradients */  
          
        background: -moz-linear-gradient(top, #707070, #160F0F);  
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#707070), to(#160F0F));

/* Navigation bar goes on top of banner */  
	
	position:relative;
	z-index:444;
      
/* Rounded Corners for a whole navigation bar */  
          
        -moz-border-radius: 10px;  
        -webkit-border-radius: 10px;  
        border-radius: 0px 0px 1px 0px; 
      
/* Background color and gradients */  
          
        background: -moz-linear-gradient(top, #707070, #160F0F);  
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#707070), to(#160F0F));
}


/* Basic navbar layout */
.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  
  text-align: left;
}

.navbar li {
  display: inline-block;
  position: relative; /* Needed for dropdown positioning */
}


/* Individual navigation items */
.navbar a {
  text-decoration: none;
  color: white;
  padding: 0.6em 1.2em;       /* consistent spacing around text */
  margin: 0.1em;
  display: block;
  border-radius: 0.3em;       /* optional style */
}

/* hover style */
.navbar a:hover {
  background-color: #999;
  color: white;
}


/* Dropdown container (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #555;
  min-width: 200px;
  z-index: 1;
  text-align: left;
}


/* Dropdown items */
.dropdown-content li {
  display: block;
}


/* Show when dropdown has 'open' class (added by JavaScript on tap) */
.dropdown.open .dropdown-content {
  display: block;
}


.dropdown-content a {
  padding: 10px 15px;
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
  .navbar li {
    display: block;
  }
  .dropdown-content {
    position: static;
  }

}

/* Horizontal Navigation Bar Ends */ 















