
/* BASIC SITE STYLING */
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
}

html {
	margin: 0;
	padding: 0;
}

/* TEXT AND IMAGE CONTAINERS */

/* Full width text container */
.full-width-container {
	width: 100%;
	padding: 2em;
	background-color: #f4f4f4;
	box-sizing: border-box;
}

/* Full width image container */
.responsive-image-container {
  	width: 100%;
	height: 300px;
  	overflow: hidden;
  	position: relative;
}

/* Image styling to ensure it covers the container */
.responsive-image {
	width: 100%;
	height: 100%;
 	object-fit: cover;
	display: block;
}

/* Footer */

footer {
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin: 25px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

/* TEXT STYLES */

/* Heading in paragraph */

h1 {
	font-size: 2em;
	font-weight: bold;
	font-family: Montserrat;
	margin-bottom: 20px;
	color: #333333;
	text-align: left;
}

h2 {
	font-size: 1.25em;
	font-weight: bold;
	font-family: Montserrat;
	margin-bottom: 15px;
	color: #555555;
	text-align: left;
}

p {
	font-size: 1em;
	line-height: 1.6;
	font-family: Quicksand;
	margin-bottom: 20px;
	color: #666666;
	max-width: 750px;
	text-align: left;
}

.footer_text {
	font-size: 0.7em;
	font-family: Quicksand;
	color: #333333;
	text-align: center;
	margin-bottom: 0;
	max-width: 100%;
	margin: 0;
}

/* BUTTON STYLES - MOVED TO DEFAULT */

/* DIVIDER - MOVED TO DEFAULT */

/* NAVBAR */

/* All div's with the navbar id */
#navbar {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	top: 20px;
	align-items: center;
	overflow: hidden;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 100vh;
	width: 75%;
	height: 30px;
	z-index: 1000; /* ONLY FOR NAVBAR */
	display: flex;
	justify-content: center;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

#navbar a {
	text-decoration: none;
	font-size: clamp(1em, 1.5vw, 2em);
	font-family: jgamestaken-blocky;
	color: #333333;
	width: auto;
	max-width: calc(100% - 40px - 110px);
	height: auto;
	display: block;
	position: absolute;
	left: 30px;
	cursor: pointer;
}

.image_button {
	position: absolute;
	/* Set right margin manually from now, was 40px */
    /* Set background image manually from now, was account.svg */
	object-fit: cover;
	border-radius: 100vh;
	width: 25px;
	height: 25px;
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition-duration: 0.2s;
	background-repeat: no-repeat;
	background-size: 85%;
	background-position: center;
} 
.image_button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Video container */

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
