/* Copyright 2026, Matt Bognar */

/**************/
/* page setup */
/**************/

body {
	color: black; 
	background: rgb(180,180,180);
	/* background-image: url('grunge.png'); */
	font-family: 'Helvetica', Arial, sans-serif; /* Added fallbacks */
	line-height: 1.5; /* Improved readability */
}

/*********************************/
/* section and left/right panels */
/*********************************/

section {
	display: table;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 98%;
	margin-left: 1%;
	border: 0px solid;
	border-radius: 10px;
	background-clip: padding-box;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
	max-height: 999999px;
	background: white;
}

#leftpanel,#leftpanel2 {
	padding-top: 20px;
	width: 50%;
	float: left;
}

#rightpanel,#rightpanel2 {
	width: 50%;
	margin-left: 50%;
}

/*********************/
/* header and footer */
/*********************/

header {
	display: table;
	margin-bottom: 10px; 
	background: rgb(213,210,210);
	border-radius: 10px;
	background-clip: padding-box;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
	margin-left: 1%;
	margin-right: 1%;
	padding-left: 3px;
}

footer {
	display: table;
	margin-top: 10px;
	margin-bottom: 15px; 
	padding-bottom: 15px; 
	padding-top: 20px;
	margin-left: 1%;
	margin-right: 1%;
	background: rgb(233,230,230);
	border-radius: 10px;
	background-clip: padding-box;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
}

#headerleft {
	display: table-cell;
	width: 10%;
}

#headerright {
	display: table-cell;
	vertical-align: middle;
}

#footerleft {
	float: left;
	padding: 10px;
}

#footerright {
	margin-top: 10px;
	margin-right: -5px;
	text-align: right;
}

/****************/
/* font styling */
/****************/

b {
	font-weight: bold;
}

h1 {
	color: #B24532;
	text-shadow: 0px 0px 2px rgb(100,100,100);
	margin-top: 12px;
	margin-bottom: 3px;
	margin-left: 14px;
	font-weight: bold;
	font-size: 1.5em; 
}

h2 {
	color: #B24532;
	text-shadow: 0px 0px 5px rgb(100,100,100);
	margin-top: -10px;
	margin-bottom: 0px; 
	margin-left: 14px;
	font-weight: bold;
	font-size: 1.1em; 
}

h3 {
	color: #B24532;
/* 	text-shadow: 0px 0px 2px rgb(100,100,100); */
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 24px;
	font-weight: bold;
    font-size: 1.0em;
}

.small {
	font-size: 80%;
	margin-left: 5px;
}

hr {
    border: 0;
    border-bottom: 1px solid rgb(230,230,230);
	margin-bottom: 0px;
	width: 100%;
}

/***************************/
/* paragraph & list styling*/
/***************************/

p {
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
	margin-right: 20px;
    line-height: 1.2;       /* Reduces the breathing room between lines of text (default is often 1.5) */
}

.link-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0px;
    margin-bottom: 0px;
}

.link-list li {
    margin-left: 50px;      /* Keeps your indentation */
    margin-top: 0px;        /* Removes space above the item */
    margin-bottom: 0px;     /* Removes space below the item */
    line-height: 1.2;       /* Reduces the breathing room between lines of text (default is often 1.5) */
}

.hanging {
	padding-left: 20px ;
	text-indent: -20px ;
}

.indent {
	margin-left: 60px;
	text-indent: -30px;
}

.indent2 {
	margin-left: 60px;
	margin-bottom: 0px;
}

.indent3 {
	margin-left: 90px;
}

.hang {
	margin-left: 50px;
	text-indent: -30px;
}

.noindent {
	margin-left: 0px;
}

/************************/
/* modify link behavior */
/************************/

a:link {
	color: inherit;
}

a:visited {
	color: inherit; 
}

a:hover {
	color: rgb(150,150,150);
	text-decoration: none;
}

a:active {
	color: black; 
}

/* Accessibility: Ensure keyboard navigators can see focused links */
a:focus-visible {
    outline: 2px solid #B24532;
    outline-offset: 2px;
    border-radius: 3px;
}

/**************************/
/* setup blink animations */
/**************************/

@keyframes myfirst {
	0%   {color:black;}
	33%  {color:rgb(210, 105, 30);}
	66%  {color:rgb(210, 105, 30);}
	100% {color:black;}
}

@-moz-keyframes myfirst {
	0%   {color:black;}
	33%  {color:rgb(210, 105, 30);}
	66%  {color:rgb(210, 105, 30);}
	100% {color:black;}
}

@-webkit-keyframes myfirst {
	0%   {color:black;}
	33%  {color:rgb(255, 127, 80);}
	66%  {color:rgb(255, 127, 80);}
	100% {color:black;}
}

.blink {
	animation:myfirst 1.0s;
	-moz-animation: myfirst 1.0s;
	-webkit-animation:myfirst 1.0s;
	animation-iteration-count:infinite;
	-moz-animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
}

/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .blink {
        animation: none !important;
        color: rgb(210, 105, 30);
    }
}

/*******************************/
/* shadows underneath sections */
/*******************************/

.shadoweffect {
  	position: relative;
  	background-color: white;
}

.shadoweffect:before, 
.shadoweffect:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 10px;
	width: 10%;
	top: 80%;
	max-width:50%;
	background: #777;
	box-shadow: 0px 15px 15px #777;
	-webkit-box-shadow: 0px 15px 15px #777;
	-moz-box-shadow: 0 15px 10px #777;
	transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
}

.shadoweffect:after {