/**
 * PMD Google Map — frontend štýly.
 *
 * Farby a rozmery vychádzajú z existujúcej témy PMD (main.css):
 * primárna #D90048, tmavomodrá #002B45, svetlá #E4F3F2.
 * Tlačidlo v InfoWindow zámerne používa reálne triedy témy
 * (.btn.btn--normal.btn--primary), tento súbor dopĺňa iba layout.
 */

.pmd-google-map-wrap {
	position: relative;
}

.pmd-google-map {
	position: relative;
	width: 100%;
	min-height: 500px;
	border-radius: 16px;
	overflow: hidden;
	background-color: #F3EFE6;
}

/* Textový box s nadpisom, textom a tlačidlami nad mapou (vľavo hore). */
.pmd-google-map__overlay {
	position: absolute;
	top: 32px;
	left: 32px;
	z-index: 2;
	max-width: 420px;
	padding: 32px;
	border-radius: 16px;
	background-color: #D90048;
}

.pmd-google-map__overlay-heading {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.pmd-google-map__overlay-text {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.pmd-google-map__overlay-text:last-child {
	margin-bottom: 0;
}

.pmd-google-map__overlay-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pmd-google-map__overlay-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	text-decoration: none;
	white-space: nowrap;
}

@media (max-width: 991.98px) {
	.pmd-google-map__overlay {
		max-width: 360px;
		padding: 24px;
		top: 20px;
		left: 20px;
	}

	.pmd-google-map__overlay-heading {
		font-size: 19px;
	}
}

@media (max-width: 767.98px) {
	.pmd-google-map-wrap {
		display: flex;
		flex-direction: column;
	}

	.pmd-google-map__overlay {
		position: static;
		max-width: none;
		border-radius: 10px;
		margin-bottom: 16px;
		order: -1;
	}
}

.pmd-google-map iframe {
	border: 0;
}

@media (max-width: 991.98px) {
	.pmd-google-map {
		min-height: 450px;
	}
}

@media (max-width: 767.98px) {
	.pmd-google-map {
		min-height: 380px;
		border-radius: 10px;
	}
}

/* Placeholder — chýbajúci API kľúč alebo žiadne aktívne body. */
.pmd-google-map--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F3EFE6;
}

.pmd-google-map__placeholder-icon {
	display: block;
	width: 56px;
	height: 56px;
	opacity: 0.35;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002B45' stroke-width='1.5'%3E%3Cpath d='M12 21s-7-6.2-7-11.5A7 7 0 0 1 19 9.5C19 14.8 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.5'/%3E%3C/svg%3E");
}

.pmd-google-map__fallback {
	margin: 0;
	padding: 0 1.5rem;
	text-align: center;
	color: rgba(0, 43, 69, 0.6);
	font-size: 14px;
}

/* Poznámka pre administrátora — nezobrazuje sa bežným návštevníkom. */
.pmd-google-map__admin-notice {
	margin: 0.75rem 0 0;
	padding: 0.75rem 1rem;
	border: 1px dashed rgba(0, 43, 69, 0.35);
	border-radius: 8px;
	background-color: rgba(254, 153, 35, 0.08);
	color: #002B45;
	font-size: 0.875rem;
	line-height: 1.5;
}

/* InfoWindow obsah (Google Maps vykresľuje tento obsah do vlastného wrapperu). */
.pmd-map-popup {
	max-width: 320px;
	padding: 4px;
	font-family: inherit;
}

.pmd-map-popup__title {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
	color: #002B45;
}

.pmd-map-popup__content {
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(0, 43, 69, 0.8);
}

.pmd-map-popup__content p:last-child {
	margin-bottom: 0;
}

.pmd-map-popup__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	text-decoration: none;
	white-space: nowrap;
}
