@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700');

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}


h1{
	font-size: 1.5rem;
}
h2{
	font-size: 1.25rem;
}
h3{
	font-size: 1rem;
}
h4{
	font-size: .75rem;
}
h5{
	font-size: .5rem;
}
.container-fluid{
	background-color: rgba(255,255,255,0)
}
.navbar {
	padding: .8rem;
}

.navbar-brand img {
  height: 4rem;
}
.navbar-nav li {
	padding-right: 1.1rem;
}
.nav-link{
	font-size: 1.1rem;
	font-weight: 400;
	border-bottom: none;
}
.nav-link:hover,
.nav-link:active {
	border-bottom: .1rem solid #03320B
}
.carousel-inner img {
  width: 100vw;  /* Makes the image span the full viewport width */
  height: auto;  /* Maintains the aspect ratio */
  display: block; /* Removes extra spacing below inline images */
  object-fit: contain;/* Ensures the image covers the space */
  max-height: 80vh; /* Limits height to the viewport height */
}

.carousel-control-prev, .carousel-control-next{
  position: absolute;
  top: auto;  /* Moves arrows to the top */
  bottom: auto;  /* Removes bottom stretching */
  z-index: 1;
  display: flex;
  align-items: flex-start; /* Ensures icons inside arrows stay aligned */
  justify-content: center;
  width: 10%;
  height: 100%; /* Set a fixed height for the buttons */
  padding: 0;
  color: #E40003;
  text-align: center;
  background: transparent;
  border: 0;
  opacity: 0.2;
  transition: opacity 0.15s ease;
  
}
.carousel-control-prev:hover, .carousel-control-next:hover{
  background: rgba(0,0,0,.2);
}
.visually-hidden{
	color: #686868;
	opacity: 0.5;
}
.carousel-caption h1 {
	font-size: 3rem;
	text-transform: uppercase;
	text-shadow: .1rem .1rem 1rem black;
}
.carousel-caption h3 {
	font-size: 2rem;
	text-transform: uppercase;
	text-shadow: .1rem .1rem .6rem black;
	padding-bottom: 1rem;
}
.btn {
	font-weight: 400;
	border-width: thin;
}
.jumbotron {
	padding: 1rem;
	border-radius: 0;
}


img{
	max-width: 100%;
	min-width: 100%;
}
.social a{
	font-size: 5rem;
	padding: 3rem;
	color: aquamarine;	
}
.social a:hover{
	color: bisque;
}
footer {
	background-color: #1E2A26;
	color: #CDEEF9;
	padding-top: 2.5rem;
	padding-bottom: .5rem;
	
}
hr.border{
	width: 75%;
}
/*---Media Queries --*/
hr.socket{
	border-top: .1rem solid #FFFFFF;
	padding: .2rem;
}

.footer-link{
	font-size: 1rem;
	color: #CDEEF9;
}
.footer-link:hover,
.footer-link:active {
	border-bottom: .1rem solid #03320B;
	color: #FFFFFF;
}

.resume{
	max-width: 1600px;
}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}
@media (max-width: 575px) {

}




/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 40%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/purple.jpg');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





