@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_18pt-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_18pt-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_24pt-Regular.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_24pt-Italic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_28pt-Regular.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/static/Inter_28pt-Italic.ttf') format('truetype');
	font-weight: 600;
	font-style: italic;
}

/* OPEN SANS laden */
@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/opensans/OpenSans-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/opensans/OpenSans-Italic-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
}


/* Falls du weitere Gewichtungen brauchst (z. B. Bold, Light etc.), ergänze sie entsprechend */

.akwtitle {
	font-family: 'akw', sans-serif;
	font-size: 1.85rem;  /* Passe die Größe nach Bedarf an */
	line-height: 2em;
}

.uppercase {
	text-transform: uppercase !important;
}

@font-face {
	font-family: 'akw';
	src: url('../fonts/inter/Inter-Variable.ttf') format('truetype'); 
	font-weight: 100 900; /* Variable Font */
	font-style: normal;
}

/* Allgemeine Überschriften */
h1, h2, h3, h4 {
	font-family: 'akw', sans-serif;
	font-weight: 600; /* Fett für Überschriften */
	line-height: 1.2;
	margin-bottom: 0.75em;
}

h1 {
	font-size: 2rem; /* 48px */
}

h2 {
	font-size: 1.5rem; /* 40px */
}

h3 {
	font-size: 1rem; /* 32px */
}

h4 {
	font-size: 0.9rem; /* 24px */
}

p {
	color: #7C7C7C;
	font-family: "Open Sans",sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.04;
}

/* Subhead-Klasse */
.subhead {
	font-family: 'akw', sans-serif !important;
	font-weight: 300; /* Dünn */
	font-size: 0.75rem; /* 20px */
	letter-spacing: 0.4em;
	margin-bottom: 0.4em;
	display: inline-block;
}



.card-body {
	background-color: #fff;
	padding: 20px;
}

.card-img-top {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.btn-primary {
	background-color: #ff6600; /* Hauptfarbe Orange */
	border-color: #e65c00;
}

.btn-primary:hover {
	background-color: #e65c00;
	border-color: #cc5200;
}

.image-wrapper {
	position: relative;
	background-color: #ffcc99; /* Hellerer Orangeton als Hintergrund */
}

.image-wrapper {
	background: linear-gradient(to bottom, #ff9933, transparent, #ff9933);
}

/* Audio Player Design */
.audio-player {
	width: 300px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.play-button-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.play-button {
	width: 50px;
	height: 50px;
	background-color: #1DB954; /* Spotify-Grün */
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.play-button::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 15px solid white;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.play-button.paused::before {
	content: '';
	display: flex;
	position: absolute;
	width: 20px;
	height: 20px;
	background: none;
	border-left: 6px solid white;
	border-right: 6px solid white;
	margin-left: 4px;
}

.progress-bar-container {
	width: 100%;
	height: 5px;
	background-color: #ccc;
	border-radius: 5px;
	margin-top: 15px;
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background-color: #1DB954;
	width: 0%;
	border-radius: 5px;
	transition: width 0.1s;
}

.eq-visualizer {
	display: flex;
	gap: 3px;
	margin-top: 10px;
}

.eq-visualizer .bar {
	width: 4px;
	height: 20px;
	background-color: #1DB954;
	animation: bounce 1s infinite ease-in-out;
	display: none;
}

.eq-visualizer .bar:nth-child(2) { animation-delay: 0.2s; }
.eq-visualizer .bar:nth-child(3) { animation-delay: 0.4s; }
.eq-visualizer .bar:nth-child(4) { animation-delay: 0.6s; }
.eq-visualizer .bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
	0%, 100% { transform: scaleY(0.4); }
	50% { transform: scaleY(1); }
}

/* VIDEOPLAYER */
.video-wrapper {
	display: block;
	width: 100%;
	max-width: 100%; /* Stelle sicher, dass das Video sich an die Bildschirmgröße anpasst */
}

video {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.rounded video {
	border-radius: 15px; /* Passe den Radius nach Bedarf an */
	overflow: hidden;
}

.image-folded-wrapper {
	position: relative;
	display: inline-block; /* Sorgt dafür, dass das Bild nicht überläuft */
}

.image-folded-wrapper img {
	display: block;
	width: 100%;
	height: auto;
}

.image-folded-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 55px;  /* Breite des Rechtecks */
	height: 55px;  /* Höhe des Rechtecks */
	background: linear-gradient(to top right, #ff9933 50%, white 50%);
/*	clip-path: polygon(0 0, 100% 0, 100% 100%); */

}

.image-folded::after {
	content: " © AKW-BERLIN.DE ";
	position: absolute;
	bottom: 0;
	right: 0;
	color: white;
	font-size: 0.85em;
}

/* Spezielle Klasse für das Pfeil-Icon */
.custom-arrow {
  font-size: 50px;  /* Größerer Pfeil */
  color: white;     /* Weißer Pfeil */
  background-color: black;  /* Kreis Hintergrundfarbe */
  border-radius: 50%;  /* Kreisform */
  padding: 20px;     /* Abstand, um den Kreis zu vergrößern */
  display: inline-block;  /* Damit der Kreis um das Icon erscheint */
  text-align: center;  /* Zentriert das Icon im Kreis */
}


@media (max-width: 768px) {
	.bg-image {
		background-attachment: scroll; /* Fixed deaktivieren für Mobile */
		background-position: center top; /* Bildfokus anpassen */
	}

	.akwtitle {
		font-size: 1.85rem; /* Kleinere Größe für Mobile */
		padding: 10px 15px;
	}

	.subhead {
		font-size: 0.75rem;
	}

	.button-group {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

.accordion-wrapper .card-header button {
  cursor: pointer;
  width: 100%;
  padding: 0 0 0 1rem;
  text-align: left;
  margin: 0;
  border: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bs-primary);
  transition: all 150ms ease-in-out;
  background: none;
}

.footer-get-in-touch ul li {
	font-size: 0.7rem;
}