	/* --- RESET I FUNDAMENT --- */

* { box-sizing: border-box; }

body {
	margin: 0; padding: 0;
	background: #929292 url('https://recytujemy.pl/img/backgroung_kom.jpg') fixed no-repeat center;
	background-size: cover;
	font-family: Verdana, sans-serif;
	color: #fff; text-shadow: 2px 2px 4px #000;
	line-height: 1.6;
}

#wrapper { 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: 20px; 
}

header { 
	text-align: right; 
	padding: 20px 0; 
}

.logo_naglowek { 
	width: 100%; 
	max-width: 536px; 
	height: auto; 
}

	/* --- AKORDEON --- */

.toggler { 
	cursor: pointer; 
	font-size: 26px; 
	margin-top: 30px; 
	display: flex; 
	align-items: center; 
	gap: 10px; 
	user-select: none; 
}

.linia_toggler { 
	width: 100%; 
	height: 3px; 	
	background: url('https://recytujemy.pl/img/linia-3px.png') repeat-x; 
	margin: 10px 0 20px; 
}

.element { 
	display: none; 
	padding-bottom: 40px; 
	overflow: hidden; 
}

.pokaz { 
	display: block !important; 
}

	/* --- BLOK LEKTORA --- */

.osoba {
            display: grid;
            grid-template-columns: 210px 1fr;
            gap: 30px;
            background: rgba(0,0,0,0.4);
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 12px;
            align-items: stretch;
}

.bio_img img { 
	width: 200px; 
	border-radius: 6px; 
	box-shadow: 0 10px 20px rgba(0,0,0,0.6); 
}

.bio_tresc_container { 	
	display: flex; 
	flex-direction: column; 
	justify-content: space-between; 
}

.imie { 
	color: #ff0000; 
	font-size: 28px; 
	font-weight: bold; 
	display: block; margin-bottom: 10px; 
}

.opis_tekst { 
	text-align: justify; 
	margin-bottom: 20px; 
}

.audio-wrapper { 
	width: 100%; 
	text-align: center; 
	padding-top: 10px; 
}

audio { 
	width: 100%; 
	max-width: 450px; 
}

	/* --- VIDEO GRID --- */

.video-grid { 
	display: flex; 	
	flex-wrap: wrap; 
	gap: 20px; 
	justify-content: center; 
}

.video-grid iframe { 
	border: none; 
	box-shadow: 0 5px 15px #000; 
	max-width: 100%; 
}
	
	/* --- BLOK KONTAKTU (Siatka) --- */

.kontakt-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.dane-kontaktowe {
	background: rgba(0,0,0,0.4);
	padding: 30px;
	border-radius: 12px;
	font-size: 16px;
}

.dane-osoba { 
	margin-bottom: 25px; 
}

.dane-osoba strong { 
	color: #ff0000; 
	font-size: 22px; 
}

.dane-osoba a { 
	color: #fff; 	
	text-decoration: none; 
	font-weight: bold; 
}

.dane-osoba a:hover { 
	text-decoration: underline; 
	color: #ff0000; 
}

	/* --- STYLIZACJA NOWEGO FORMULARZA --- */

.formularz-wrapper h2 { 
	margin-top: 0; 
	color: #fff; 
	font-size: 24px; 
}

.form-group { 
	margin-bottom: 15px; 
	text-align: left; 
}

.form-group label { 
	display: block; 
	margin-bottom: 5px; 
	font-weight: bold; 
	font-size: 14px; 
}

.form-group input[type="text"],

.form-group input[type="email"],

.form-group input[type="tel"],

.form-group textarea {
	width: 100%; 
	padding: 12px; 
	background: #f1f1f1; 
	border: 1px solid #666; 
	color: #000; 
	text-shadow: none; 
	border-radius: 4px; 
	font-family: Verdana, sans-serif;
}

.form-group input[type="file"] { 
	color: #fff; 
	text-shadow: none; 
	margin-top: 5px; 
}
        
.submit-btn { 
	width: 100%; 
	padding: 15px; 
	background: #bababa; 
	border: none; 
	cursor: pointer; 
	font-weight: bold; 
	border-radius: 4px; 
	font-size: 16px;
	transition: background 0.3s;
}

.submit-btn:hover { 
	background: #ff0000; 	
	color: #fff; 
}

#file-info { 
	display: none; 
	margin-top: 10px; 
	font-size: 12px; 
	background: rgba(0,0,0,0.5); 
	padding: 5px 10px; 
	border-radius: 4px; align-items: center; 
	gap: 10px; 
}

#remove-file { 	
	background: #ff0000; 
	border: none; 
	color: #fff; 
	padding: 2px 8px; 
	cursor: pointer; 
	border-radius: 3px; 
	font-size: 11px; 
}

	/* --- RESPONSYWNOŚĆ --- */

@media (max-width: 800px) {

.osoba { 
	grid-template-columns: 1fr; 
	text-align: center; 
}

.bio_img { 
	margin: 0 auto 10px; 
}

.opis_tekst { 
	text-align: center; 
}

.logo_naglowek { 
	width: 300px; 
}

.kontakt-container { 
	grid-template-columns: 1fr; 
	gap: 20px; 
}

}
       
@media (min-width: 801px) {

body { 
	background-image: url('https://recytujemy.pl/img/backgroung_desktop.jpg'); 
}

}    