@import "fonts/md-font.css";

body {
	margin: 0 !important;
	padding: 0 !important;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Stilvoller Look für die Login/Register-Karten (Milchglas-Effekt) */
.card {
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.96) !important;
}

/* Mauszeiger für interaktive Elemente */

/* 1. FÜR REINE INFOS: Mauszeiger mit Info/Hilfe-Fragezeichen */
/* Gilt für Spans oder Labels, die rein informativ sind (z.B. das Lehrer/Schüler-Piktogramm) */
/* span[data-bs-toggle="tooltip"], */
label[data-bs-toggle="tooltip"] {
	cursor: help !important;
}

/* 2. FÜR AKTIONEN / LINKS: Die klassische Auswahlhand (Pointer) */
/* Gilt für echte Links, Buttons oder Icons, auf die man auch klicken kann (Sperren, Löschen etc.) */
a[data-bs-toggle="tooltip"],
button[data-bs-toggle="tooltip"],
button[data-bs-toggle="modal"],
.btn[data-bs-toggle="tooltip"] {
	cursor: pointer !important;
}

/* Sorgt dafür, dass Icons innerhalb der Tooltips das Verhalten korrekt erben */
[data-bs-toggle="tooltip"] * {
	cursor: inherit !important;
}

/* Header / Logo */
.site-header {
	background: transparent;
	z-index: 10;
}

.brand-link {
	text-decoration: none;
	color: inherit;
}

.logo-text {
	display: inline-block;
	font-size: 4.5rem;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.logo-text {
		font-size: 2.4rem;
	}
}

@media (min-width: 769px) and (max-width: 1200px) {
	.logo-text {
		font-size: 3.6rem;
	}
}

/* Band-Hintergrund für Logo: großes, responsives SVG (SVG liegt jetzt im css-Ordner) */
body {
	background-image: url('magic-dreams-bg.svg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* Main: füllt verbleibenden Platz und zentriert Inhalt */
#main-content {
	flex: 1 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: column;
	padding: 3rem 0;
}

.home-hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 8rem);
	padding: 2rem 1rem;
}

.home-hero-box {
	width: min(100%, 500px);
	max-width: 1000px;
	padding: 1.5rem 1rem;
	border: 3px solid #000;
	border-radius: 36px;
	background: #ffd84d;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

.home-hero-line {
	font-family: 'md-font', sans-serif;
	/* font-size: clamp(1rem, 1.5vw, 1.5rem); */
	font-size: 1.2rem;
	/* font-weight: 700; */
	font-weight: normal;
	color: #000;
	margin: 1rem 0;
	text-align: center;
}

.home-hero-line:first-child {
	margin-top: 0;
}

.home-hero-line:last-child {
	margin-bottom: 0;
}

/* Responsive Content / Sections */
.page-content {
	width: min(100%, 1140px);
	padding: 0 1.25rem;
	margin: 0 auto;
}

.page-section {
	margin-bottom: 3rem;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.5rem;
	backdrop-filter: blur(8px);
}

.section-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #ffd84d;
	opacity: 0.95;
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(2.5rem, 4vw, 3.8rem);
	color: #ffd84d;
	line-height: 1.05;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 720px;
	margin-bottom: 1.75rem;
}

.page-text {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.8;
}

.page-text ul,
.page-text ol {
	margin-left: 1.5rem;
}

.page-text h3 {
	margin-top: 1.75rem;
}

.image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.image-grid figure {
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}

.image-grid img,
.gallery-thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1rem;
	object-fit: contain;
	background: rgba(0, 0, 0, 0.08);
}

.gallery-thumb {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 0;
}

.gallery-thumb a {
	width: 100%;
	padding: 0;
}

.gallery-thumb img {
	max-height: none;
	width: 100%;
}

@media (max-width: 768px) {
	.lightgallery {
		padding: 0 0.5rem;
	}

	.gallery-thumb {
		padding: 0.5rem 0;
	}

	.gallery-thumb img {
		max-height: 280px;
		object-fit: scale-down;
	}
}

.timeline {
	border-left: 2px solid rgba(255, 255, 255, 0.18);
	padding-left: 1.5rem;
}

.timeline-item {
	margin-bottom: 2rem;
}

.timeline-item h3 {
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.page-section {
		padding: 1.5rem;
	}

	.section-title {
		font-size: 2.4rem;
	}
}

/* Navigation */
.nav-modern {
	/* background: rgba(2, 8, 20, 0.78); */
	/* backdrop-filter: blur(20px); */
	/* border: 1px solid rgba(255, 255, 255, 0.12); */
	border-radius: 1.5rem;
	margin: 0 auto 2rem;
	max-width: 1140px;
	/* box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18); */
}

.nav-modern .container-fluid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nav-modern .navbar-toggler {
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 1rem;
	width: 3.25rem;
	height: 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	margin-right: 1rem;
}

.nav-modern .navbar-toggler-icon {
	background-image: none;
	font-size: 1.25rem;
	color: #fff;
}

.nav-modern .navbar-collapse {
	justify-content: flex-start;
}

@media (min-width: 768px) {
	.nav-modern .navbar-collapse {
		justify-content: flex-start;
	}

	.nav-modern .navbar-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}

.nav-modern .navbar-nav {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.nav-modern .nav-item {
	margin: 0.25rem;
}

.nav-modern .nav-link {
	color: rgba(255, 255, 255, 0.85);
	padding: 0.85rem 1.2rem;
	border-radius: 1rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.nav-modern .nav-link:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
}

.nav-modern .nav-link.active {
	color: #ffffff;
	background: rgba(255, 216, 77, 0.18);
	box-shadow: inset 0 0 0 1px rgba(255, 216, 77, 0.35);
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

@media (max-width: 991px) {
	.nav-modern {
		padding: 0.8rem 1rem;
		margin: 0;
	}

	.nav-modern .container-fluid {
		justify-content: flex-start;
	}

	.nav-modern .navbar-collapse {
		background: rgba(0, 0, 0, 0.92);
		backdrop-filter: blur(20px);
		border-radius: 1rem;
		margin-top: 0.85rem;
		padding: 1rem;
		width: 100%;
	}

	.nav-modern .navbar-nav {
		justify-content: flex-start;
	}

	.nav-modern .nav-link {
		width: 100%;
		text-align: left;
	}

	.nav-modern .navbar-toggler {
		display: flex;
	}
}

@media (min-width: 768px) {
	.nav-modern .navbar-toggler {
		display: none;
	}
}

/* 404 Stoppschild */
.stop-sign-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 2rem 0 3rem 0;
	margin: 0 auto;
	clear: both;
}

.stop-sign {
	width: 340px;
	height: 340px;
	display: block;
}

.stop-title {
	font-size: 3.25rem;
	margin: 0 0 0.25rem 0;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 700;
}

.stop-text {
	font-size: 1rem;
	margin: 0 0 0.75rem 0;
}

@media (max-width: 480px) {
	.stop-sign {
		width: 260px;
		height: 260px;
	}
}

#the-band h1,
#geschichte h1,
#impressum h1,
#datenschutz h1 {
	font-size: clamp(1.3rem, 2vw, 1.9rem);
	color: #ffd84d;
	line-height: 1.05;
	margin-bottom: 1rem;
}

#impressum h1,
#datenschutz h1 {
	font-size: clamp(1.3rem, 1.2vw, 1.9rem);
}

#impressum h2,
#datenschutz h2 {
	font-size: clamp(1.2rem, 1vw, 1.75rem);
	color: #ffd84d;
}

#datenschutz h3 {
	font-size: clamp(1rem, .8vw, 1.5rem);
	color: #ffd84d;
}

#datenschutz h4 {
	font-size: clamp(1rem, .8vw, 1.5rem);
	color: #ffd84d;
}
