@charset "utf-8";
/* CSS Document */
	html,
	body 
	{background: #013220;
	margin:0;
	padding:0;
	height:50%;
	text-align: center;
	color: #7d7d7d;	
	font-family: sans-serif;
}
#footer {
		padding-top: 3em;
		position: relative;
		bottom:0;
		width:100%;
		height:60px;			/* Height of the footer */
	
}


/* adding styles for my social media links */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 100%;

}

.fa:hover {
    opacity: 1;
}
.fa-twitter {
  background: #FFD700;
  color: white;
}

.fa-linkedin {
  background: #FFD700;
  color: white;
}

.fa-instagram {
  background: #FFD700;
  color: white;
}
/* ending styles for social medias */

header {

	font-family: sans-serif;
	margin-top: 2em;
	margin-bottom: 2em;
	border-radius: 2em;
	font-size: 3em;

}
ul {

	font-style: italic  ;
	font-size: 1.5em;
	text-align: center;
	margin: 0;
	position: relative;
	list-style-type: none;
}

p{font-size: 2em;}

h1 {
	text-align: center;
	color: #7d7d7d;
	font-size: 3em;
	font-weight: bold;
}
nav {
	padding-top: 1em;
	text-align: center;
	float: center;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 4em;
}
nav a {
	color: #7d7d7d;
	text-decoration: none;
	float: center;
}
nav a:hover {
		color: #FFD700;
		font-style: italic;
}
nav a:active {
	color: black;
}
img {
	max-width: 50%;
	height: 50%;
}

/* styles for carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #013220;
	
}

.carouselItem .slideImage {
    width: 100%;
    height: 100%;
    background-size: contain ;
    background-repeat: no-repeat;
	background-position: center center;

}

.carouselItem {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    top: 0;
    left: 100%;

}

.carouselItem.active {
    left: 0;
    transition: all 6s ;
}

.carouselItem div {
    height: 100%;
}
/* ends styles for carousel */
/* styles for the mobile view */
#hamburgerIcon {
	position: absolute;
	top: 1em;
	right: 1em;
	display:none;
	cursor: pointer;
}
#hamburgerIcon div{
	position: relative;
	width: 35px;
	height: 3px;
	background-color: #FFD700;
	margin: 6px 0;
	transition: .04s;
}
.open .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 6px);
	transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2{
	opacity: 0;
}
.open .bar3 {
	-webkit-transform: rotate(45deg) translate(-6px, -8px);
	transform: rotate(45deg) translate(-6px, -8px);
}
.open .mobileMenu {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: flex-start;
	color: #FFD700;
}
.mobileMenu{
	display: none ;
	position: absolute;
	top: 1em;
	right: 1em;
	left: 2;
	height: calc(100vh -50px);
	width: 100%;
	z-index: 10;


}
nav a, .mobileMenu a {
    color: #7d7d7d; /* Same color as desktop links */
    text-decoration: none;
    font-family: sans-serif; /* Matching font */
    font-weight: bold;
    font-size: 1em; /* Adjust based on design */
    text-align: center;

}

nav a:hover, .mobileMenu a:hover {
    color: #FFD700; /* Same hover effect */
    font-style: italic;
}



@media only screen and (max-width: 600px)
{
	nav a{
		display:none;
	}
	#hamburgerIcon{
		
		display:block;
	}
}