:root {
	--gold: #b38e5d;
	--gold-hover: #967548;
	--gold-disabled: #dccbb3;
	--text-dark: #212529;
}

body {
	background-color: white;
	color: var(--text-dark);
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.text-gold {
	color: var(--gold);
}

/* Formulářové prvky */
.form-control, .form-select {
	border-radius: 8px;
	border: 1px solid #ddd;
	padding: 12px;
	font-size: 1rem;
}

.form-control:focus, .form-select:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 0.2rem rgba(179, 142, 93, 0.25);
}

/* Custom Checkbox */
.custom-checkbox .form-check-input:checked {
	background-color: var(--gold);
	border-color: var(--gold);
}

.form-check-input:focus {
	box-shadow: 0 0 0 0.2rem rgba(179, 142, 93, 0.25);
}



/* Tlačítko - Gold Pill */
.btn-gold-pill {
	background-color: var(--gold);
	color: white;
	font-weight: 500;
	text-decoration: none;
	font-size: 1.1rem;
	border: none;
	padding: 12px 30px;
	border-radius: 50px;
	transition: background-color 0.2s, transform 0.1s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-gold-pill:hover {
	background-color: var(--gold-hover);
	color: white;
}

.btn-gold-pill:active {
	transform: scale(0.98);
}

.btn-gold-pill:disabled {
	background-color: var(--gold-disabled);
	cursor: not-allowed;
	transform: none;
}

/* Navbar */
.navbar-brand img {
	max-height: 40px;
}

.lang-switch a {
	color: #ccc;
	text-decoration: none;
	margin-left: 10px;
	font-weight: bold;
	transition: color 0.2s;
}

.lang-switch a.active, .lang-switch a:hover {
	color: black;
}

/* Intl Tel Input - Fixes */
.iti {
	width: 100%;
	display: block;
}

.iti__flag {
	background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.iti__flag {
		background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
	}
}

/* Mapa a potvrzení */
.map-container img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid #eee;
}

.code-display-box {
	background-color: #f8f9fa;
	border: 2px solid var(--gold);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.code-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--gold);
	letter-spacing: 5px;
	line-height: 1;
	margin-top: 10px;
}

/* Header s kufrem */
.header-luggage {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.header-luggage img {
	height: 160px;  /* zvětšeno z 55px */
	width: auto;
	display: block;
	flex-shrink: 0;
}

.header-luggage h1 {
	line-height: 1.1;
	max-width: 180px;  /* vynutí zalomení do 3 řádků */
	font-size: 2.3rem;
	padding-top: 30px;
	text-align: left;
}

/* Minimalistický Cookie Banner - Centered Pill Design */
.cookie-bar-mini {
	position: fixed;
	bottom: 30px; /* Trochu výše od spodního okraje */
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	min-width: 280px; /* Aby to nebylo moc úzké */
	max-width: 90%;
	
	/* Flexbox pro vertikální stacking */
	display: flex;
	flex-direction: column; 
	align-items: center; /* Horizontální centrování */
	justify-content: center;
	
	background: rgba(255, 255, 255, 0.98); /* Téměř neprůhledné */
	backdrop-filter: blur(12px); /* Silnější blur pro moderní look */
	box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Hlubší stín */
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 28px; /* Výraznější zaoblení */
	padding: 20px 24px;
	z-index: 10000;
	gap: 16px; /* Větší mezera mezi textem a tlačítky */
	
	font-size: 0.95rem;
	color: #333;
	text-align: center;
	
	opacity: 0;
	animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.5s;
}

/* Text v banneru */
.cookie-bar-mini p {
	margin: 0;
	font-weight: 500;
	line-height: 1.5;
}

/* Odkaz v textu */
.cookie-bar-mini a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.cookie-bar-mini a:hover {
	color: var(--gold);
}

/* Kontejner pro tlačítka */
.cookie-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	width: 100%;
	justify-content: center;
}

/* Hlavní tlačítko OK */
.btn-cookie-agree {
	background-color: var(--gold);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 10px 32px; /* Širší a vyšší */
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 10px rgba(179, 142, 93, 0.3); /* Jemný stín v barvě gold */
}

.btn-cookie-agree:hover {
	background-color: var(--gold-hover);
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(179, 142, 93, 0.4);
}

.btn-cookie-agree:active {
	transform: translateY(1px);
}

/* Tlačítko Zavřít (Křížek) */
.btn-cookie-reject {
	background: #f5f5f5;
	color: #999;
	border: none;
	border-radius: 50%; /* Dokonalý kruh */
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-cookie-reject:hover {
	background: #e9ecef;
	color: #333;
	transform: rotate(90deg); /* Pěkný efekt rotace */
}

/* Animace příjezdu */
@keyframes slideUp {
	from { opacity: 0; transform: translate(-50%, 40px) scale(0.95); }
	to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

/* Mobilní úprava - sjednocená s desktopem */
@media (max-width: 480px) {
	.cookie-bar-mini {
		width: 90%;
		bottom: 20px;
		padding: 18px 20px;
		border-radius: 24px;
	}
	.cookie-bar-mini p {
		font-size: 0.9rem;
	}
	
	
}

.video-modal-dialog {
	max-width: 315px;
	margin: 0.5rem auto;
}

@media (max-width: 575.98px) {
	.video-modal-dialog {
		max-width: calc(100vw - 1rem);
		margin: 0.5rem auto;
	}

	#videoModal .modal-content {
		margin: 0 auto;
	}

	#videoModal iframe {
		width: 100%;
		height: min(78vh, 560px);
	}
}



