/* 
  snow animation
  media queries

  header
  header video
  header buttons

  sections
  section about us
  section coach
  section adress
  section faq

  footer
*/

/* snow animation */

#snow {
	display: none;
}
.snowflake {
	position: absolute;
	top: -500px;
	width: 10px;
	height: 10px;
	background: linear-gradient(white, white);
	/* Workaround for Chromium's selective color inversion */
	border-radius: 50%;
	filter: drop-shadow(0 0 10px white);
}

:root {
	--color1: #3b79c1;
	--color2: #202020;
	--color3: #314255;
	--color4: #fb3f51;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
	font-family: "Comfortaa", sans-serif;
}

section,
footer {
	padding: 75px 0;
	overflow-x: hidden;
}

.color1 {
	color: var(--color1);
}

.color2 {
	color: var(--color2);
}

.color3 {
	color: var(--color3);
}

/* media queries */

@media (max-width: 480px) {
	.header-title {
		font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	}
	.header-text {
		font-size: 14px;
	}

	.card-m-auto {
		margin: 0 auto;
	}
	.card {
		margin: 20px 0;
	}

	.embed-map {
		min-width: 100%;
		min-height: 200px;
	}

	.accordion-button {
		min-width: 200px;
	}
}

@media (max-width: 3920px) {
	.faq-container {
		border-radius: 50%;
	}
	.faq-padding {
		height: 240px;
	}
}
@media (max-width: 1024px) {
	.section-title {
		text-align: center;
		padding-bottom: 30px;
	}

	.faq-container {
		width: 500px;
		max-height: 500px;
		border-radius: 50%;
	}
	.faq-padding {
		height: 120px;
	}
}

@media (max-width: 600px) {
	.faq-container {
		width: 300px;
		min-height: 625px;

		border-radius: 16px;
	}
}

@media (max-width: 998px) {
	.card {
		margin: 20px 0;
	}
}

/* header */

#main-header {
	overflow: hidden;

	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("/images//bg2.jpg"), 0px 0px no-repeat;
	background-size: cover;

	height: 100vh;

	background-color: rgba(0, 0, 0, 0.91);
}

#main-header:before {
	content: "";
	display: block;

	height: 100vh;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.85);
}

@media screen and (max-width: 1024px) {
	#main-header {
		background-position: 60%;
	}
}

.header-logo {
	width: 64px;
	padding: 10px;
}

.header-logo_hat {
	width: 48px;
	max-width: 48px;
	max-height: 48px;
	height: 48px;
	position: absolute;
	display: none;
	left: 40px;
	top: 0;
	transform: rotate(-0deg);
}
.header-title {
	font-size: 52px;
	color: #fff0f0;

	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.navbar {
	/* background-color: var(--color1); */
	background: #0b1d2b;
	background: linear-gradient(
		90deg,
		rgba(11, 29, 43, 1) 0%,
		rgba(39, 48, 56, 1) 50%,
		rgba(55, 55, 74, 1) 100%
	);

	position: fixed;
	width: 100%;
	z-index: 999;
	transition: all 0.3s ease-out;
}

.navbar.scrolled {
	background-color: #333;
	opacity: 0.7;
}

.inner {
	position: relative;
	z-index: 3;
	color: #fff;
	padding-top: 35vh;
}

/* header video */
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	padding: 10px;
}

/* header buttons */
.fjr-circle {
	background-color: var(--color1);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin: 30px auto;
	transition: all 0.3s ease-in-out;
}

.fjr-circle:hover {
	background-color: var(--color2);
}
.fjr-triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent var(--bs-white);
	margin-right: -3px;
}

.fjr-btn {
	display: block;
	max-width: 200px;
	margin: 0 auto;
	padding: 8px 30px;
	color: var(--bs-white);
	background-color: var(--color2);
}

.fjr-btn:hover {
	background-color: var(--color1);
	color: var(--bs-white);
}

/* sections  */

.section-title {
	font-size: 42px;
	text-align: center;
	padding-bottom: 30px;
}

.border-raduis {
	border-radius: 16px;
}

/* section about us */

.about-us__dropdown-text {
	display: none;
	font-size: 17px;
}

.about-us-dropdown {
	font-size: 24px;
	border: 0;
	background-color: #fff;
	transition: all 0.3s ease;
}

.about-us-dropdown:hover {
	color: var(--color1);
}

.angle {
	transition-duration: 0.3s;
}
.angle-active {
	transform: rotate(-180deg);
	transition-duration: 0.3s;
}

.active {
	display: block;
}
/* section coach */
#coach {
	background-color: var(--color3);
}

.coach-img {
	margin-top: 10px;
	border-radius: 16px;
	max-width: 300px;
	height: 400px;
	object-fit: cover;
}

.card {
	border-radius: 16px;
	padding: 15px;
}

.card-m-auto {
	width: 320px;
}

/* section adress */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* section faq */
#faq {
	overflow: hidden;
	background-color: var(--color3);
}
.faq-container {
	max-width: 800px;
	height: 800px;
	border: 1px solid var(--color4);

	background-color: var(--color4);

	margin: 0 auto;
}

.accordion {
	max-width: 400px;

	margin: 0 auto;
}

.accordion-button {
	color: #202020;
}

.accordion-body {
	background-color: aliceblue;
	border-bottom: 2px solid black;
}

.faq-button {
	margin-top: 50px;
}

/* footer */
footer {
	overflow: hidden;

	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("/images/footer.jpg"), 0px 0px no-repeat;
	background-position: center;
	background-size: cover;

	background-color: rgba(0, 0, 0, 0.1);
}

footer:before {
	content: "";
	display: block;

	height: 100vh;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.footer-title {
	font-size: 36px;
	padding: 0 12px;
}

.footer-icon {
	margin: 10px;
	padding: 5px;

	background: transparent;
	transition: all 0.5s ease;
}

.footer-icon:hover {
	background-color: var(--color2);
}

.modal-title {
	margin-left: 100px;
}
.modal-footer-icon {
	margin: 10px;
	padding: 7.5px;
	background-color: #333;
	/* border: 1px solid #202020; */
	border-radius: 16px;

	transition: all 0.3s ease;
}

.modal-footer-icon:hover {
	background-color: dimgray;
}

.footer-inner {
	position: relative;
	z-index: 3;
	color: #fff;
}

.copyright {
	color: darkgray;
	margin-bottom: -75px;
}

.copyright p {
	margin: 12.5px 0;
}

.margin-left-right {
	margin: 0 20px;
}

/* language switcher */
.language-switcher {
	position: relative;
}

.language-switcher-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
}

.language-switcher-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.language-switcher-btn:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.dropdown-arrow {
	transition: transform 0.3s ease;
}

.language-switcher-btn[aria-expanded="true"] .dropdown-arrow {
	transform: rotate(180deg);
}

.language-dropdown-menu {
	background: rgba(11, 29, 43, 0.95) !important;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 8px;
	padding: 4px !important;
	margin-top: 8px !important;
	min-width: 140px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1050 !important;
	position: absolute !important;
	top: 100% !important;
	left: auto !important;
	right: 0 !important;
}

.language-dropdown-menu.show {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.language-dropdown-menu .dropdown-item {
	color: #fff;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s ease;
	display: block;
	text-decoration: none;
}

.language-dropdown-menu .dropdown-item:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.language-dropdown-menu .dropdown-item.active {
	background: rgba(59, 121, 193, 0.3);
	color: #fff;
	font-weight: 600;
}

.language-dropdown-menu .dropdown-item.active:hover {
	background: rgba(59, 121, 193, 0.4);
}

@media (max-width: 991px) {
	.language-switcher {
		margin-top: 10px;
		margin-bottom: 10px;
		width: 100%;
		justify-content: center;
	}

	.language-switcher-btn {
		width: 100%;
		justify-content: center;
	}

	.language-dropdown-menu {
		width: 100%;
		left: 0 !important;
		right: 0 !important;
	}
}
