@charset "utf-8";
/* CSS Document */
body {
  background: url('reina.jpg') no-repeat center center fixed;
   background-size: cover;
  color: #FFFFFF;
  font-family: Verdana;
}


header {grid-area: header;
		display: flex;
		flex-direction: column;
		width: 100%;
		background-color: #FFFFFF;
		padding-top:5px;
		height: 156%}

nav {grid-area: nav;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0.5em
	margin-left: 36.5em;
}

main {grid-area: main;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		padding: 1em;
		width: 100%;}

footer {grid-area: footer;
		text-align: center;
		padding: 1em 1em 1em 1em;}

#wrapper {
  margin: 0 auto;
  width: 100%;
  display: grid;

  grid-template: 
	"header social" 50px 
	"header social"
	"nav nav" 50px
    "main main" auto
    "footer footer" 150px
	  /1fr 500px;
	position: relative;}


main ul {list-style-type: none;
		font-size: 1em;
		text-align: center;}

main li {margin-bottom: 5px;
		font-size: 1.5em;}





nav {background-color: #FFFFFF;
	padding: -1em 0.5em;}

nav ul {list-style-type: none;
		font-size:1.2em;
		text-align: right;
		color:#ea008b;}

nav a {text-decoration: none;
	color:#ea008b;
	padding-right: 10px;
	text-transform: lowercase;
	transition: color 0.1s ease;}

nav li {display: inline;
		padding-bottom: 5px}

nav a:link {color: #ea008b;}

nav a:hover {
	color:#19bef0 !important;
	background-color: #ea008b;
	padding: 5px;
}

nav a:visited {color: #ea008b;}

.social-icons {background-color: #FFFFFF;
				grid-area: social;
				display: flex;
				justify-content: flex-end;
				gap: 20px;
				z-index: 2;
				padding-top: 10px;
				padding-right: 10px;
				height: 100%;
				width: 50;}

.social-icons a {display: inline-block;
				padding: 0 10px;
				transition: filter 0.3s ease;}

.social-icons img {width: 40px;
				height: 40px;
				object-fit: contain;
				transition: filter 0.01s ease;}

.social-icons a:hover img {
	filter: brightness(0) 
	saturate(100%) 
	invert(51%) 
	sepia(75%) 
	saturate(745%) 
	hue-rotate(160deg) 
	brightness(106%) 
	contrast(103%);
}

.hero {
   background: url('hero-background.jpg') no-repeat center center/cover;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: white;
   padding: 20px;
}
.hero h1 {font-size: 1.8em;}

.hero-content {
	max-width: 800px;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 40px;
	border-radius: 10px;
}

.hero-logo {
	width: 80%;
	margin-bottom: 20px;
}

.cta-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #ea008b;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.2em;
	transition: background-color 0.1s;
	text-transform: lowercase;
}

.cta-button:hover {
	background-color: #19bef0;
}

.resume {width:100%;
		background-color: #19bef0;
		padding:20px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		box-sizing: border-box;
		max-width: 800px;
		margin: 20px auto;
		line-height: 1.6;
		text-align: center;
		color: #333;
		border-radius: 5px;}

.resume h1 {
			background-color: #ea008b;
			color:#FFFFFF;
			font-size: 2em;
			margin-bottom: 20px;
			margin-top: 40px;
			text-align: center;
			text-transform: uppercase;
			border-bottom: 2px solid #19bef0;
			display:block;
			padding: 10px 50px 10px 50px;
			text-shadow: 1px 1px 1px #19bef0;
			border-bottom: 5px solid #FFFFFF;}

.tournament-list li {
	font-size: 1.2em;
	margin: 10px 0;
	padding: 10px;
	background: #f9f9f9;
	border-left: 5px solid #ea008b;
	border-right: 5px solid #ea008b;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5%;
}


h1 {text-align: center;
	margin: 0;
	padding: 20px 0;}

.portfolio {
		width:100%;
		background-color: #19bef0;
		padding:20px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		box-sizing: border-box;
		max-width: 800px;
		margin: 20px auto;
		line-height: 1.6;
		text-align: center;
		color: #333;
		border-radius: 5px;
}

.portfolio h1 {
			background-color: white;
			max-width: 800px;
			color:#ea008b;
			font-size: 2em;
			margin-bottom: 20px;
			margin-top: 40px;
			text-transform: uppercase;
			padding: 10px;
			text-shadow: 1px 1px 1px #19bef0;
			border-bottom: 5px solid #ea008b;
			border-radius: 5px;
}

.gallery { display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px 1fr));
	gap: 15px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;}

.gallery-item {overflow: hidden;
				position: relative;
				border-radius: 10px;
				box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);}

.gallery-item img {width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.3 ease, opacity 0.3s ease;}

.gallery-item:hover img {transform: scale(1.1);
						opacity: 0.9;}

.slideshow {
	position: relative;
	max-width: 800px;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	box-sizing: border-box;
}

.slide img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ea008b;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 2;
}

.prev {left:10px;}

.next {right:10px;}

.prev:hover, .next:hover {
	background-color: #19bef0;
}

#commentary h1 {
	background-color: #FFFFFF;
	color:#ea008b;
	font-size: 2em;
	margin-bottom: 25px;
	margin-top: 20px;
	text-align: center;
	text-transform: uppercase;
	border-bottom: 5px solid #19bef0;
	display:block;
	padding: 10px 50px 10px 50px;
	text-shadow: 1px 1px 1px #19bef0;
	border-radius: 5px;
}

video {border: 5px solid #FFFFFF;
	border-radius: 5px;
	max-width: 80%;
	height: auto;
	display: block;
	margin: 0 auto;}

#about-me {
	font-size: 1.2em;
	background-color: #ea008b;
	width: 100px;
	width: 100%;
	color: #FFFFFF;
	margin-top: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	border-bottom: 5px solid #19bef0;
	
	
}
.about-me-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

#about-me {
	width: 50%;
	padding: 20px;
}

.about-me img {
	max-width: 45%;
	height: auto;
	object-fit: cover;
	margin-top: 20px;
	border-radius: 5px;
	border-bottom: 5px solid #19bef0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.about-me-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
}

h1 {
	font-size: 2.5em;
	color: #FFFFFF;
	margin-bottom: 20px;
	text-align: center;
}

.about-me-container h1 {
			background-color: #FFFFFF;
			color:#ea008b;
			font-size: 2em;
			margin-bottom: 20px;
			margin-top: 20px;
			text-align: center;
			text-transform: uppercase;
			border-bottom: 5px solid #19bef0;
			display:block;
			padding: 10px 50px 10px 50px;
			text-shadow: 1px 1px 1px #19bef0;
			border-radius: 5px;}

footer {
	font-size: 1.1em;
	color: #FFFFFF;
	grid-area: footer;
	background-color: #19bef0;
	padding: 20px 1em;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	margin-top: 30px;
}

.social-icons-footer {background-color: #19bef0;
				grid-area: social;
				display: flex;
				justify-content: center;
				gap: 20px;
				margin-top: 10px;}

.social-icons-footer a {display: inline-block;
				padding: 0 10px;
				transition: filter 0.3s ease;}

.social-icons-footer img {width: 30px;
				height: 30px;
				object-fit: contain;
				transition: filter 0.01s ease;
				margin-top: 8px;}

.social-icons-footer a:hover img {
	filter: brightness(0%)
		contrast(100%);
}

@media screen and (max-width: 768px) {
	body, html {
		margin: 0;
		padding: 0;
		font-size:14px;
	}
	#wrapper {
		grid-template:
			"header" auto
			"social" auto
			"nav" auto
			"main" auto
			"footer" auto
			/ 1fr;
		margin: 0;
		width: 100%;
	}
	
	header {
		text-align: center;
		padding: 10px 0;
		width: 100%; 
	}
	
	.social-icons {
		justify-content: center;
		padding: 10px 0;
		height: auto; 
	}
	
	nav ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0;
		margin: 0;
		gap: 10px;
	}
	
	nav li {
		display: block;
		text-align: center;
		padding: 5px 0;
	}
	
	
	main {padding: 10px;}
	
	.portfolio-wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 15px;
		margin: 0 auto;
	}
	.portfolio {
		width: 90%;
		max-width: 800px;
		box-sizing: border-box;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        line-height: 1.6;
        text-align: center;
        color: #333;
        border-radius: 5px;
		margin-right: 9%;
	}
	
	.slideshow {
		max-width: 100%;
	}
	
	footer {
		font-size: 12px;
		padding: 10px;
	}
	
	.social-icons-footer img {
		width: 25px;
		height: 25px;
	}
	
	.gallery {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 10px;
	}
	
}
