@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* MOBIL */
@media (orientation: portrait) {

	:root{
		--brand: #990000;
		--text: rgba(255,255,255,.92);
		--muted: rgba(255,255,255,.72);
		--stroke: rgba(255,255,255,.20);
		--shadow: 0 18px 55px rgba(0,0,0,.45);
		--shadow-soft: 0 10px 30px rgba(0,0,0,.35);
		--radius: 22px;
	}

	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Montserrat', sans-serif;
		-webkit-tap-highlight-color: transparent;
	}

	html{
		height: 100%;
		width: 100%;
		position: relative;
		overflow: hidden;
		-webkit-text-size-adjust: 100%;
	}

	body{
		height: 100%;
		width: 100%;
	}

	#content{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;

		background-image: url("../images/Youngsters-Background.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;

		transition: background 2s ease;
	}

	.overlay-1{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;

		opacity: 0.28;
		background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72));
		transition: opacity .35s ease;
	}

	.overlay-2{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;

		opacity: 0.60;
		background: radial-gradient(900px 700px at 35% 15%, rgba(0,0,0,.25), rgba(0,0,0,.82));
	}

	#logo{
		width: 50%;
		height: 10%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 101;
		background-color: transparent;

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

	#logo img{
		height: auto;
		width: 80%;
		cursor: pointer;
		filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
	}

	#cont{
		height: 85%;
		width: 100%;
		background-color: transparent;
		position: absolute;
		left: 0;
		top: 10%;
		opacity: 0;

		overflow-y: auto;

		animation-name: fadeIn;
		animation-duration: 1.1s;
		animation-fill-mode: forwards;
		animation-delay: .15s;
	}

	#cont::-webkit-scrollbar{
		width: 10px;
	}
	#cont::-webkit-scrollbar-track{
		background: rgba(255,255,255,.06);
	}
	#cont::-webkit-scrollbar-thumb{
		background: rgba(255,255,255,.22);
		border-radius: 999px;
	}

	#headline{
		color: var(--text);
		margin: 4% 0 0 0;
		font-size: 3.2vh;
		text-align: center;
		letter-spacing: .2px;
		text-shadow: 0 10px 30px rgba(0,0,0,.55);
	}

	/* CONTENT CARD – weniger transparent (lesbar) */
	#boxes{
		position: relative;
		margin: 16px auto 70px auto;
		width: 92%;
		height: auto;

		padding: 18px 16px;

		background: linear-gradient(
			180deg,
			rgba(10,10,10,.80),
			rgba(10,10,10,.65)
		);

		border: 1px solid rgba(255,255,255,.18);
		border-radius: var(--radius);
		box-shadow: var(--shadow);

		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);

		color: rgba(255,255,255,.92);
	}

	.download-link{
		display: inline-flex;
		align-items: center;
		justify-content: center;

		padding: 12px 14px;
		border-radius: 999px;

		background: linear-gradient(135deg, var(--brand), #b10000);
		border: 1px solid rgba(255,255,255,.16);
		box-shadow: 0 14px 30px rgba(0,0,0,.25);

		color: white;
		text-decoration: none;

		font-weight: 900;
		font-size: 14px;
		letter-spacing: .2px;

		margin-bottom: 10px;
		width: 100%;
	}

	.download-link:active{
		transform: scale(.99);
		filter: brightness(.98);
	}

	#flyer{
		height: auto;
		width: 86%;
		margin: 0 7% 10px 7%;
		border-radius: 16px;
		box-shadow: 0 18px 55px rgba(0,0,0,.45);
		border: 1px solid rgba(255,255,255,.12);
	}

	#boxes h2{
		color: rgba(255,255,255,.96);
		margin: 16px 0 8px 0;
		font-size: 16px;
		font-weight: 900;
		letter-spacing: .25px;
		text-shadow: 0 8px 22px rgba(0,0,0,.35);
	}

	#boxes p{
		font-size: 14px;
		line-height: 1.65;
		color: rgba(255,255,255,.90);
		margin-bottom: 10px;
	}

	#boxes ul{
		padding-left: 22px;
		margin: 8px 0 14px 0;
	}

	#boxes li{
		margin: 6px 0;
	}

	#boxes a{
		color: rgba(255,255,255,.96);
		text-decoration: none;
		border-bottom: 2px solid rgba(255,255,255,.28);
	}

	#boxes a:active{
		border-bottom-color: rgba(255,255,255,.60);
	}

	@keyframes fadeIn {
		0% { opacity: 0; transform: translateY(8px); }
		100% { opacity: 1; transform: translateY(0); }
	}
}