@font-face {
	font-family: 'NanumPenScript';
	src: url('/font/NanumPenScript-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CinzelDecorative';
	src: url('/font/CinzelDecorative-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: Arial, sans-serif;
	background-color: #e1e0da;
	color: #000;
	margin: 0;
	padding: 0;
}

.nav-header {
	background-color: #e1e0da;
	padding: 10px 20px;
	text-align: left;
	-webkit-text-stroke: 1px #00252E;
	display: flex;
	align-items: center;
}

.nav-menu {
	margin-left: auto;
	line-height: 1em; /* Adjust line-height to move text up */
}

.nav-links {
	font-weight: bold;
	letter-spacing: 0.05em;
	font-size: 3vw;
	font-family: 'Helvetica', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	text-decoration-color: #f8c89f;
	text-decoration-thickness: 10px;
	color: #f07020;
	padding: 5px 10px;
	margin-right: 1vw;
}

.nav-links:hover {
	color: #02252e;
	text-decoration: underline; 
	text-decoration-color: #f8c89f;
	text-decoration-thickness: 10px;
}

img.logo {
	max-width: 300px;
	padding-right: 5%;
}

section {
	padding: 20px;
	border-top: 2px solid #000000;
}

.tournament {
	background-color: #FAEBD7;
	margin-bottom: 2vw;
	padding: 10px;
	border-radius: 0.5vw;
	border: 2px outset #000000;
	display: flex;
	flex-wrap: wrap;
}

.left-content, .right-content {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
}

.left-content {
	display: flex-start;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.right-content {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 1vw; 
	border-radius: 1vw; 
	padding-left: 1vw;
	font-size: 2em;
	color: #444;
}


.polaroid {
	display: inline-block;
	background-color: white;
	padding: 1vw;
	box-shadow: 0 0 3vw rgba(0,0,0,0.3);
	text-align: center;
	width: 40vw;
	max-width: 30vw;
}

.polaroid-photo {
	position: relative;
	width: 100%;
	padding-bottom: 97.3%;
	background-color: white;
	overflow: hidden;
}

.polaroid img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; 
}

.caption {
	margin-bottom: 5vw;
	font-family: 'NanumPenScript', 'Comic Sans MS', cursive;
	font-size: 2vw;
	text-align: center;
	color: #1E4EDC;
	height: 5vw;
}

.cupcaption {
	margin-bottom: 5vw;
	font-family: 'CinzelDecorative', 'Comic Sans MS', cursive;
	font-size: 2vw;
	text-align: center;
	font-weight: bold;
	color: #8C7148;
	text-shadow: 
		0 0 5px #FFD700,
		0 0 10px #FFA500,
		0 0 20px #FFD700,
		0 0 30px #FFA500,
		0 0 40px #FFD700;
	height: 5vw;
}

.cupcontent {
	color: #000000;
}

.king_caption {
	margin-bottom: 5vw;
	font-family: 'CinzelDecorative', 'Comic Sans MS', cursive;
	font-size: 2vw;
	text-align: center;
	color: #1E4EDC;
	height: 5vw;
}

.header_text {
	font-size: 3em;
	text-shadow: 1.7px 1px 0 #EA6B30; 
	/*
	text-shadow: -1px -1px 0 #00252E, 1px -1px 0 #EA6B30; 
	background: -webkit-linear-gradient(#FDF7E7, #EA6B30);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.cup_header {
	font-size: 2em;
	text-shadow: 1.7px 1px 0 #EA6B30;
	/*
	text-shadow: -1px -1px 0 #00252E, 1px -1px 0 #EA6B30; 
	background: -webkit-linear-gradient(#FDF7E7, #EA6B30);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.tournament div, .tournament p {
	margin: 0;
}

.tournament div:not(:last-child) {
	margin-bottom: 10px;
}

/* Responsive design: Stack the divs on smaller screens */
@media (max-width: 768px) {
	.nav-menu, .logo {
		display: block;
		text-align: center;
		margin: 0 auto;
	}

	.nav-links {
		display: block;
		margin: 10px 0;
		font-size: 6vw; 
	}

	.nav-header {
		 flex-direction: column;
	}

	.tournament {
		flex-direction: column;
		padding: 10px;
	}

	.left-content {
		border-right: none; /* Remove the vertical line */
		border-bottom: 2px solid #000; /* Add a horizontal line */
	}

	.right-content {
		padding-left: 0;
		padding-top: 20px;
		font-size: 1em;
	}

}
