/**
 * @file surf_master.css
 * @author hoff
 * @brief trent.surf frontend master stylesheet
 *
 * @date 2026-02-24
 *
 * @copyright Copyright (c) 2025-26 hoff.industries, Trent Group Holdings LLC
 */

@font-face {
	font-family: "Syne-Supplied";
	src: url("fonts/syne.ttf") format("truetype");
}

:root {
	--trent-accent: #cc02c8;
	--trent-alt: #a4fff1;
	--casino-accent: #e3f17b;

	--standard-bg: #111111
}

h2 {
	margin-top: 1.5vh;
	margin-bottom: 1.5vh;
}

html {
	background-size: cover;
	font-family: Arial;
	font-size: 16px;
	font-weight: bold;
	color: var(--trent-alt);
	background-color: var(--standard-bg);
}

a {
	text-decoration: none;
}

header {
	display: flex;
	margin: 0px;
	width: 100%;
	min-height: var(--header-height);
	background-color: var(--standard-bg);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

footer {
	margin-top: 2rem;
	display: flex;

	padding-left: 1rem;
	padding-right: 1rem;
	min-height: var(--footer-height);

	border: 0.15em solid var(--trent-accent);
	border-radius: 0.2rem;
	background: rgba(0, 0, 0, 1);
}

body {
	margin: 0px;
	min-height: 100vh;
	font-size: 1rem;
}

main {
	color: var(--trent-alt);
}

table {
	border-collapse: separate !important;
}

th {
	color: var(--trent-accent);
	padding-bottom: 0.8rem;
}

td {
	padding: 0.8rem;
	border: 0.15em solid var(--trent-accent);
	border-radius: 0.2rem;
}

.tagline {
	margin-left: 0.6vw;
	padding: 0px;
}

.be_smooth {
	font-family: Syne-Supplied;
	font-size: 8vw;
	color: var(--trent-accent);

	display: flex;
	justify-content: center;
	align-items: center;
}

.hero_container {
	max-width: 100%;
	min-height: 10rem;
}

.hero_container.join {
	color: #cc02c8;
	font-size: 5rem;
	height: fit-content;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 6rem;
	min-height: 1rem;
}

.header_buttons {
	font-family: Arial;
}

.header_image {
	margin-top: 0px;
	margin-bottom: 0.6vh;
	margin-left: 0.3vw;
	margin-right: 2vw;
	padding-top: 0.6vh;
}

.header_image:hover {
	cursor: pointer;
}

.dot_button {
	font-weight: bold;

	text-align: center;
	padding: 0.5rem;

	height: 100%;
	text-decoration: none;

	background-color: #111000;
	border-radius: 0.2rem;
}

.dot_button.trent {
	color: var(--trent-alt);
	border: 0.15em solid var(--trent-accent);
}

.dot_button.join {
	color: var(--trent-alt);
	border: 0.15em solid #00d8b7;
}

.dot_button.board {
	color: var(--trent-alt);
	border: 0.15em solid #00d8b7;
}

.bar {
	padding-left: 0.5rem;
	padding-right: 0.5rem;

	backdrop-filter: blur(20px);
	border-radius: 0.2rem;
	background: rgba(0, 0, 0, 0.7);
	max-width: 98vw;
	margin: auto;
}

.bar.trent {
	border: 0.15em solid var(--trent-accent);
}

.bar.casino {
	background-color: rgba(182, 193, 98, 0.3);
	border: 0.15em solid gold;
}

.join_container {
	width: 100%;
	display: flex;
}

@media (max-aspect-ratio: 1 / 1) {
	header {
		flex-direction: column;
	}

	footer {
		flex-direction: column;
	}

	.dot_button {
		margin-left: 0px;
		margin-right: 0px;
	}
	.flick {
		margin: auto;
		margin-top: 1.5vh;
	}
	.scoot {
		margin: auto;
		margin-bottom: 1.5vh;
	}

	.join_container {
		flex-direction: column;
	}

	.dot_button.trent { display: none; }
	.dot_button.join { display: none; }
	.dot_button.board { display: none; }

	.hero_container { background-position: 50%, -50%; }
	.hero_container.join { flex-direction: column; }
	.map_title {
		font-size: 3rem;
		padding-top: 0.2rem;
		text-align: center;
	}
}

@media (min-aspect-ratio: 1 / 1) {
	header {
		flex-direction: row;
	}

	footer {
		flex-direction: row;
	}

	.dot_button {
		width: 5rem;
		margin-left: 0.3vw;
		margin-right: 0.3vw;
	}
	.scoot {
		margin-left: auto;
	}

	.join_container {
		flex-direction: row;
		justify-content: space-between;
	}

	.hero_container { background-position: 0%, -50%; }
	.hero_container.join { flex-direction: row; }
	.map_title {
		font-size: 3rem;
		padding-top: 0.2rem;
		padding-left: 0.5rem;
	}
}

