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

@media (orientation: landscape) {

	: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;
	}

	html{
		height: 100%;
		width: 100%;
		position: relative;
		overflow: hidden;
	}

	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.25;
		background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.70));
		transition: opacity .35s ease;
	}

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

		opacity: 0.60;
		background: radial-gradient(1200px 800px at 30% 20%, rgba(0,0,0,.25), rgba(0,0,0,.80));
	}

	#logo{
		width: 15%;
		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: 60%;
		cursor: pointer;
		filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
		transition: transform .25s ease, filter .25s ease;
	}

	#logo img:hover{
		transform: translateY(-1px) scale(1.02);
		filter: drop-shadow(0 14px 26px rgba(0,0,0,0.6));
	}

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

		overflow-y: auto;
		scroll-behavior: smooth;

		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;
	}
	#cont::-webkit-scrollbar-thumb:hover{
		background: rgba(255,255,255,.30);
	}

	#headline{
		color: var(--text);
		margin: 2.5% 0 0 0;
		font-size: 4vh;
		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: 18px auto 60px auto;
		width: min(980px, 86%);
		height: auto;

		padding: 24px 24px;

		background: linear-gradient(
			180deg,
			rgba(10,10,10,.78),
			rgba(10,10,10,.62)
		);

		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: 10px 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: 800;
		font-size: 14px;
		letter-spacing: .2px;

		margin-bottom: 12px;

		transition: transform .2s ease, filter .2s ease;
	}

	.download-link:hover{
		transform: translateY(-2px);
		filter: brightness(1.05);
	}

	#flyer{
		height: 45vh;
		width: auto;
		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: 18px 0 8px 0;
		font-size: clamp(16px, 1.1vw, 18px);
		font-weight: 900;
		letter-spacing: .25px;
		text-shadow: 0 8px 22px rgba(0,0,0,.35);
	}

	#boxes p{
		font-size: 15px;
		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:hover{
		border-bottom-color: rgba(255,255,255,.60);
	}

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