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


/*headline: font-family: 'Lato', sans-serif;
paragraph: font-family: 'Noto Serif', serif;
*/

/*Custom Theme:
	Teal Green: #06886F
	White: #FFFFFF
	Black: #000000
	Dark Purple: #645A6F
	Grey: #707070
*/


body {font-family: 'Noto Serif', serif;}
h1 ,h2, h3, h4, h5, h6 {font-family: 'Lato', sans-serif;}
.navbar-custom {font-family: 'Lato', sans-serif;}



/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: rgb(255, 0, 0);opacity:0.9;
	background-image: linear-gradient(white,grey);
}

/*Target menu color*/
.navbar-toggler-icon
{ color:#000000;}

/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #06886F;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #06886F;
    color: #fff;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: hsla(0,0%,0%,0.86);
    color: #000000;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}  

/*navbar-brand logo*/
.navbar-brand {
	background-image: url("../Images/Web Logo gradient.png");
	padding-left: 60px;
	background-position: 6% center;
	background-repeat: no-repeat;
	background-size: 42px auto;

}

/*header banner section*/
#home_banner {
	padding-left: 0px;
	padding-right: 0px;
	position: relative;

}
/*rem values are relative to root html element, 1rem=16px*/
#home_banner h1{
	font-size: 4rem;
	color: #fff;
	text-shadow: 3px 5px rgba(71,71,71,0.80);
	position: absolute;
	left: 3%;
	bottom: 7%;
	
}

/*About Banner Section*/
#about_banner {
	padding-left: 0px;
	padding-right: 0px;
	position: relative;}


/*Carousel*/

#06886F


/*linktexthover*/

.hover-link {
  color: #645A6F; /* Default color of the link */
  transition: color 0.3s ease; /* Transition effect for color change */
}

.hover-link:hover {
  color: #06886F; /* Color of the link on hover */
}



/* Hover picture link*/

.resume-preview {
  display: none; /* Hide the image by default */
  position: absolute; /* Position the image */
  top: 100%; /* Align the image below the link */
  left: 0;
  z-index: 1; /* Ensure the image appears above other content */
  padding: 10px; /* Add some padding for better visibility */
  background-color: #fff; /* Set background color */
  border: 1px solid #ccc; /* Add a border for styling */
}
a:hover .resume-preview {
  display: block; /* Display the image when link is hovered over */
}


/*resume page styles*/

/* Add custom styles here */

.education-item, .work-experience-item, .award-item {
  margin-bottom: 20px;
}

.skills-list {
  list-style-type: none;
  padding-left: 0;
}

.skills-list li {
  margin-bottom: 5px;
}





.main h1 {text-align: center;
font-weight: 600;
	font-family: 'Lato', sans-serif;
}




/*3 col main section*/
.main h2 {text-align: center;
	font-weight: 800;
	font-family: 'Lato', sans-serif;
}





.main p {text-align: center;
	font-family: 'Noto Serif', serif;
font-weight: 400;
}



/*Featurettes--*/

.featurette {
	text-align: center;
	display:flex;
}

.featurette-divider {
	margin: 5rem 0; /*Space out Bootstrap <hr> more*/
}

/*Thin the headings*/
.featurette-heading {
	padding-top: 60px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .03rem;
}



/*font awesome add in*/
.social a {margin: 0;
    display: inline-block;
    text-decoration: none;
    margin-left:10%;
    margin-right:10%;
}
/* Style all font awesome icons */
.fa {
  padding: 10px;
  font-size: 30px;
  width: 40px;
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #125688;;
  color: white;
}




/*footer*/
footer {text-align: center;
line-height: 60px;
background-color: #000000;
color: #FFFFFF;
}



/*Media Query Breakpoints*/
/*x-small devices ONLY*/

@media (min-width: 375px){
	#home_banner h1 {
		font-size: 1rem;
		bottom: 3%;
		left: 3%;

	}
}

/*SMALL SIZE ONLY*/
@media screen and (min-width:576px){
	#home_banner h1 {
		font-size: 1rem;
		bottom: 3%;
		left: 3%;
	}
}

/*MEDIUM size ONLY*/
@media (min-width: 768px) {
	#home_banner h1 {font-size: 2rem;
	bottom: 5%;
	left: 3%;
	}
	
}

/*LARGE SIZE ONLY*/
@media screen and (min-width:992px) {
	#home_banner h1 {
		font-size: 3rem;
		bottom: 5%;
		left: 3%;
	}
	}

