@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,.18);
		--glass: rgba(255,255,255,.10);
		--glass2: rgba(255,255,255,.16);
		--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/Musik00099.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.52;
		background: radial-gradient(1200px 800px at 30% 20%, rgba(0,0,0,.25), rgba(0,0,0,.68));
	}

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

	/* schöner Scrollbar */
	#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);
	}

	/* Grid statt absolute bottom */
	#boxes{
		width: min(1200px, 92%);
		margin: 22px auto 60px auto;

		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;

		padding: 10px 0 30px 0;
	}

	.box{
		height: 62vh;
		border-radius: var(--radius);
		box-shadow: var(--shadow-soft);
		overflow: hidden;
		position: relative;

		border: 1px solid rgba(255,255,255,.12);
		background: rgba(255,255,255,.04);

		transform: translateY(0);
		transition: transform .25s ease, box-shadow .25s ease;
	}

	.box:hover{
		transform: translateY(-6px);
		box-shadow: 0 18px 55px rgba(0,0,0,.45);
	}

	.box img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top;
		transform: scale(1.02);
		transition: transform .45s ease;
	}

	.box:hover img{
		transform: scale(1.06);
	}

	/* Overlay modern (Glass) */
	.box-overlay{
		opacity: 0;
		position: absolute;
		inset: 0;

		background: rgba(0,0,0,.35);
		border-top: 1px solid rgba(255,255,255,.12);

		color: var(--text);
		text-align: center;

		transition: opacity .25s ease;

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

		gap: 8px;
		padding: 24px;

		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.box-overlay p{
		margin: 0;
		line-height: 1.25;
		font-size: clamp(14px, 1.1vw, 18px);
		color: rgba(255,255,255,.88);
	}

	.box-overlay p b{
		color: rgba(255,255,255,.95);
		font-size: clamp(16px, 1.2vw, 20px);
	}

	.box:hover .box-overlay{
		opacity: 1;
	}

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

	/* Responsive falls Bildschirm schmaler */
	@media (max-width: 1100px){
		#boxes{
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
		.box{
			height: 58vh;
		}
	}

	@media (max-width: 760px){
		#boxes{
			grid-template-columns: 1fr;
		}
		.box{
			height: 56vh;
		}
	}
}