@charset "UTF-8";
/* CSS Document */
/*
    Portfolio hand-coded by Timothy Erdmann.
    All styles were written manually using CSS and Bootstrap.
    © 2025 Timothy Erdmann. All rights reserved.
*/

/*. color palette rust #B77108 | Blue #3B7093 | Plum #160C28 | LiteYellow #FAF8D4 | Lavender pink #D1B1C8 */
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Poppins', 'Michroma', 'Helvetica Neue', Helvetica, Gotham, Arial, sans-serif;
	font-size: 1em;
	color: #000;
	padding-bottom: 1em;
	height: 100vh; /* Ensure it covers the full viewport height */
	
	background-image: url('../images/general/bg_screens.png');
	background-repeat: repeat;       /* Prevent tiling */
  	background-position: center center; /* Center image */
	background-color: #160C28;
	background-attachment: fixed; /* Makes the gradient fixed even on scroll */
	background-size: cover; /* Ensure it fills the entire viewport */
	
	animation: bgScroll 60s linear infinite;
	}
@keyframes bgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.navbar {
	margin: 0px;
}
.boxMod {
	border: 1px solid #dddddd;
	margin: 4em;
}
h1 {
	font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	color: #666;
	font-size: 6em;
	font-weight: 600;
	margin-top: -1px;
	margin-bottom: .25em;
	}
h2 {
	font-size: 4em;
	font-weight: 100;
	}
h3 {
	font-size: 3em;
	font-weight: 100;
	}
h4 {
	font-weight: 200;
	color: #000;
	}
h5 {
	font-size: 2em;
	font-weight:200;
}
h6 {
	font-size: 1.5em;
	font-weight:600;
}
p {
	font-size: 1em;
	font-weight:300;
	color: #000000;
}
.body-copy {
	color: #000000;
}
.body-copy2 {
	color: #ffffff;
}
a:link {
	color: #ffffff;
}
a:hover {
	color: #000000;
	text-decoration:underline;
}
.articleBlock a:link {
	Color: #3b7093;
}
.writingBlock a:link {
	Color: #3b7093;
}
/* a:visited {
	color: #e5e5e5 !important;
} */
a.currentPage {
	color: #ffffff;
	font-weight: bold;
	text-decoration:overline;
}
.nav-link {
	color: #ffffff !important;
}
.nav-link:hover { /* */
	color: #A7D2EE !important;
	text-decoration:underline;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.list-block {
	list-style-type:disc;
	width: 65%;
	margin: 0 auto;
}
.disclaimer {
	color: #777777;
	font-size:70%;
}
span.te-blue {
		color: #3b7093;
	}
span.te-rust {
		color: #B77108;
	}
label {
	font-weight: bold;
}
input, textarea {
	width: 100%;
	border: thin solid #eeeeee;
	border-radius: 5px;
	background-color: #ffffff;
}
textarea {
	height: 120px;
}
.formBlock {
	text-align: Left;
	padding-bottom:1em;
	margin: 5% auto;
	width: 80%;
	height: auto;
}
img {
	width:auto;
	max-width:100%;
	height: auto;
	}
/* Default transparent navbar */
#top {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

/* When the mobile menu is expanded */
#top .navbar-collapse.show {
  background-color: #000000; 
  padding: 1rem;
}
.navbar-collapse.collapsing,
.navbar-collapse.show {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end; /* aligns list items to the right */
  background-color: #000000; /* or your desired color */
  padding: 1rem;
}
.navbar .navbar-toggler {
	color: #ffffff;
	border: 1px solid #ffffff;
	background-color: transparent;
	border-radius: 0;
	padding: 0.375rem 0.75rem;
	font-weight: bold;
	transition: border 0.3s ease;
}
nav .navbar-toggler:hover {
  background-color: #ffffff;
  color: #000000;
  border-radius: 0;
	transition: background-color 0.3s ease, transform 0.2s ease;
}
/* When menu is open (toggler does NOT have 'collapsed') */
.navbar .navbar-toggler:not(.collapsed) {
  border: none;
}
button {
		background-color: #160C28;
		color: #ffffff;
		border: 1px solid #160C28;
		padding: 10px 20px;
		border-radius: none;
		font-size: 16px;
		font-weight:400;
		cursor: pointer; min-width: 44px;    /* Matches WCAG guidelines for touch targets */
    	min-height: 44px;
		transition: background-color 0.3s ease, transform 0.2s ease;
        }
button:hover {
        background-color: transparent;
		color: #160C28;
		border-radius: 10px;
		border-color: #160C28;
		cursor: pointer;
}
button:focus {
        outline: 2px solid black; /* Ensure a high-contrast focus ring */
    	outline-offset: 4px; /* Adds space between the button and the outline */
}
button:active {
    transform: scale(0.98); /* Slight "pressed" effect */
}
footer {
	height: 6em;
	text-align: center;
	color: #ffffff;
}
footer p {
	font-size: 80%;
}
.sectionTitle {
	color:#dddddd;
}
.featureItem {
	margin: 3em auto;
	text-align: center;
	color:#ffffff;
}
.skillset {
	margin: 1em;
}
.skillset li{
	font-size: 1em;font-weight: 600;
	margin-bottom: 2em;
	color: #D1B1C8;
}
.wordBlock {
	text-align: center;
	width: 60%;
	margin: 3em auto;
}
.heroImage {
	height: auto;
	max-height: 400px;
	width: auto;
	margin: 0 auto;
	text-align:center;
}
.imgWrap {
	text-align: center;
	padding-bottom:1em;
	margin: 5% auto;
	width: 80%;
	height: auto;
}
.smImg {
	Width: auto;
	height: auto;
	max-width:100%;
	max-height:100%;
}
.screenImg {
	border: 1px solid #ddd;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.caption {
	font-size:70%;
	color: #000000;
}
.navList li, .subNav li {
	display: inline;
}
.navList li {
	padding-right: 1em;
}
.header {
	z-index: 1000;
	background-color: #eeeeee;
}
.subNav {
	font-size:.75em;	
}
.svg-icon {
    width: 32px; /* Set size */
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.mainSectionTitle {
	margin: auto;
	text-align: left;
	width: 100%;
    max-width: 1450px;
	}
.transpCard {
	margin-top: 1em;
	margin-bottom: 1em;
	padding: .25em;
	text-align: left;
	width: 80%;
    max-width: 1450px;
}
.transpCard {
	color: #ffffff;
}
.transpCard p{
	color: #ffffff;
	font-weight:200;
}
.transpCard h2 p {
	color: #dddddd;
}
.topBlock {
	padding: 1em;
	border-radius: 10px;
	text-align: left;
	width: 80%;
    max-width: 1450px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
	background-color: #EEEEEE;
}
.blockTwo {
	margin-top: 1em;
	margin-bottom: 2em;
	padding: 2em;
	border-radius: 10px;
	text-align: left;
	width: 80%;
    max-width: 1450px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
	/*background: linear-gradient(45deg, #000000, #333333); /* Define the gradient */
	/*background-color: #EEEEEE; */
	background: linear-gradient(rgba(22, 12, 40, 0.8), rgba(0, 0, 0, 0.8));
	/* background: linear-gradient(rgba(255, 255, 255, 1), rgba(221, 221, 221, 0.6));*/
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	
}
.blockTwo h1{
	color: #ffffff;
}
.blockTwo h4{
	color: #ffffff;
}
.blockTwo p{
	color: #ffffff;
}
.resume-card-block {
	margin-top: 1em;
	margin-bottom: 2em;
	padding: 1em;
	border-radius: 10px;
	text-align: left;
	width: 80%;
    max-width: 750px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(221, 221, 221, 0.8));
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card-block {
	margin-top: 1em;
	margin-bottom: 2em;
	padding: 1em;
	border-radius: 10px;
	text-align: left;
	width: 80%;
    max-width: 1450px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
	/* background: linear-gradient(45deg, #ffffff, #eeeeee); /* Define the gradient */
	background: linear-gradient(rgba(255, 255, 255, 1), rgba(221, 221, 221, 0.6));
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	
}
.card-block p {
	/* font-family: 'Poppins' 'Helvetica Neue', Helvetica, Gotham, Arial, 'sans-serif'sans-serif; */
	font-weight: 400;
	max-width: 80%;
	margin: 2em auto;
}
.card-block h5 {
	max-width: 80%;
	margin: 2em auto .5em auto;
}
.card-block h6 {
	max-width: 80%;
	margin: 2em auto .5em auto;
}

.articleBlock h6 {
	margin: 0;
}
.card-block2 {
	margin-top: 1em;
	margin-bottom: 2em;
	padding: 1em;
	border-radius: 10px;
	text-align: left;
	width: 80%;
    max-width: 1450px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2);
	background: linear-gradient(45deg, #ffffff, #eeeeee); /* Define the gradient */
}
.articleBlock {
	/* border: 1px dashed red; */
	padding: 2em;
}
.articleBlock h5{
	font-weight: 400;
	font-size: 1em;
	max-width: 80%;
	margin: 0 0 2em 0;
}
.articleBlock p {
	font-weight: 300;
	font-size: 1em;
	max-width: 80%;
	margin: 0 0 2em 0;
	color: #333333;
	}
.writingBlock {
	padding: 2em;
}
.writingBlock h3 {
	margin: auto;
	text-align: center;
}
.writingBlock h5 {
	font-weight: 400;
	font-size: 1em;
}
.writingBlock p {
	font-weight: 300;
	font-size: 1em;
}
.subtitle {
	font-weight: 400;
	font-size: 1em;
	max-width: 80%;
	margin: 0 0 2em 0;
}
.contact-info {
	font-size:80%;
	font-weight: 300;
	}

.honeypot-wrapper {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.form-group {
  margin-bottom: 1rem;
}

.resume-name {
	font-weight: bold;
	font-size: 2em;
}

.headline {
	font-weight: 500;
	font-size: 80%;
}
.listDisplay {
	margin: auto;
	max-width: 500px;
}
.details {
	font-size: 80%;
}
.title {
	font-size: 80%;
	font-weight:600;
}
.skills lh {
	Font-weight: bold;
}
.skills {
	padding: 2em 4em;
	margin-bottom: 2em;
}
.skills {
	font-size:80%;
	font-weight: 200;
}
.case-study {
	color: #eeeeee;
	color: #efefef;
	background: linear-gradient(45deg, #333333, #334766);  
	/* background-color:#334766;*/
}
.backtop {
	justify-content: center;
	align-items: center;
}
.backtop button {
	display: block;
	margin: auto;
}
.backtop a {
	text-align: center;
	margin: auto;
	color: #ffffff;
}
.nextPaginate {
	text-align: right;
}
.legalFooter {
	margin: 1em auto;
}
.legalFooter p{
	color: #ffffff;
}

/* Small devices (tablets, 768px and below) */
@media (max-width: 576px) {
	body {
		background-image: url('../images/general/bg_screens.png');
	}
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 2em;
		font-weight: 600;
	}
	h4 {
		font-size: 1em;
	}
	h5 {
		
	}
	h6 {
		
	}
	textarea, input {
		border: 1px medium #aaaaaa;
		background-color: #eeeeee;
	} 
	.card-block {
    	width: 98%;
		max-width: 800px;
	}
	.blockTwo {
		width: 98%;
		max-width: 800px;
	}
	.resume-card-block {
		width: 98%;
		max-width: 800px;
		font-size: 1em;
	}
	p {
	font-weight: 500;
	}
	img {
		max-width:80%;
	}
	.articleBlock {
		padding: .5em;
	}
	.articleBlock p {
	font-weight: 400;
	width: 100%;
	max-width: 100%;
	}
	.writingBlock {
		padding: .5em;
	}
	.writingBlock p{
	font-weight: 400;
	width: 100%;
	max-width: 100%;
	}
	
	.card-footer {
		background-color:aliceblue;
		text-align: center;
		font-size: 60%;
	}
}

/* 
Medium devices (desktops, 992px and up) 
@media (min-width: 992px) 
{
	
}
*/

/* 
Large devices (large desktops, 1200px and up) 
@media (min-width: 1200px) 
{

}

*/