:root {
	--purk-red1: #FF0000;
	--purk-red2: #891D1D;
	--purk-red3: #D4001B;
	--purk-red4: #B5362D;
	--purk-red5: #8C2720;
	--purk-bg-secondary: #f4f4f4;
	--purk-gray: #707070;
	--purk-gray-light: #b3b3b3;
}

html {
	font-size: 16px;
}

body {
	font-family: 'Montserrat', sans-serif;
}


/* ELEM */

a {
	color: var(--purk-red3);
	text-decoration: none;
}

a:hover {
	color: var(--purk-red1);
	text-decoration: underline;
}

h1 {
	color: white;
	font-size: 5.5rem;
	font-weight: normal;
	text-shadow: 13px 6px 16px #000000A8;
	text-align: center;
	margin: -5rem 0 0;
	text-transform: uppercase;
	font-weight: bold;
}

h2 {
	font-weight: bold;
	font-size: 4.25rem;
	position: relative;
	margin-bottom: 2.5rem;
	color: var(--purk-red3);
	font-style: italic;
}
/*
h2::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 9px;
	background-color: var(--purk-red3);
	left: 0;
	bottom: -1rem;
}
*/

h2.text-white::after {
	background-color: white;
}

h2.h2-rect {
	display: inline-block;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    background-color: #fff;
    top: 2rem;
    padding: 1.5rem 6rem;
	max-width: 100%;
}
h2.h2-rect::after {
	content: none;
}
h2.h2-rect-red {
	background-color: var(--purk-red3);
	color: #fff;
}
h2.classic {
	text-transform: uppercase;
	font-style: normal;
    font-size: 3.75rem;
}

h3 {
	font-size: 40px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	position: relative;
}
h3::before {
	content: '';
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	border-top: 1px solid var(--purk-red3);
}
h3 span {
    padding: 0 4rem;
    background-color: white;
	position: relative;
}
h3.classic::before {
	content: none;
}

h4 {
	text-align: left;
	font-size:  25px;
	font-style: italic;
	font-weight: bold;
	color: var(--purk-red3);
}

tbody, td, tfoot, th, thead, tr {
    border-style: none;
}

.table th {
	background-color: var(--purk-red3);
	color: white;
	font-weight: normal;
}

main {
	padding-top: 1rem;
}

hr {
	border-color: var(--purk-red3);
	border-top-width: 2px;
}

li::marker {
	color: var(--purk-red3);
}

@media (max-width: 575.98px) {
	h1 {
		font-size: 1.5rem;
		margin: -2rem 0px 3rem;
	}
	.slick-arrow {
		display: none!important;
	}
	h2 {
		font-size: 3.5rem;
	}
	h2.classic {
		font-size: 2.5rem;
	}
	h3 span {
		padding: 0 0;
	}
}


/* CLASS */

.table {
	--bs-table-striped-bg: var(--purk-bg-secondary);
}

/* Sbalené menu pod breakpointem navbar-expand-xl: červený panel přes celou šířku pod hlavičkou.
   Bootstrapí .navbar je position:relative – vypnutím se rozbalený panel kotví k celé hlavičce. */
@media (max-width: 1199.98px) {
	.navbar {
		position: static;
	}
	.navbar-collapse {
		z-index: 10;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--purk-red3);
	}
	.navbar-light .navbar-nav .nav-item {
		text-align: center;
		padding: 0;
	}
	.navbar-light .navbar-nav .nav-item + .nav-item {
		border-top: 1px solid rgba(255, 255, 255, 0.25);
	}
	.navbar-light .navbar-nav .nav-link {
		color: #fff !important;
		padding: 1rem 0;
	}
	.navbar-light .navbar-nav .nav-link.btn {
		margin: 0 !important;
		padding: 1rem 0 !important;
		width: 100%;
		border-radius: 0 !important;
		border: none !important;
		background: none !important;
	}
}

.nav-item {
	padding: 1rem 0.5rem;
}

.nav-link:hover,
.nav-link.active
{
	text-decoration: underline !important;
}

/* Bootstrap utilita .link-dark je !important, proto i tady */
.navbar-nav .nav-link,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
	font-size: 18px;
	line-height: 21px;
	font-weight: normal;
	letter-spacing: 0;
	color: #000 !important;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Větší rozestupy položek menu na velkých obrazovkách (dle grafického návrhu);
   selektor musí přebít bootstrapí .navbar-expand-xl .navbar-nav .nav-link */
@media (min-width: 1600px) {
	.navbar-expand-xl .navbar-nav .nav-link,
	.navbar-expand-xl .navbar-nav .nav-link:hover,
	.navbar-expand-xl .navbar-nav .nav-link:focus {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

.navbar-nav .nav-link.btn,
.navbar-nav .nav-link.btn:hover,
.navbar-nav .nav-link.btn:focus {
	color: #fff !important;
}

/* Tlačítka v menu (linkClass 'btn btn-dark' / 'btn btn-primary') se nepodtrhávají */
.navbar-nav .nav-link.btn:hover,
.navbar-nav .nav-link.btn.active {
	text-decoration: none !important;
}

.dropdown-menu {
	min-width: 4rem;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--purk-red3);
}

.bg-secondary {
    background-color: var(--purk-bg-secondary) !important;
}

.btn {
	border-radius: 10px;
	box-shadow: none !important;
}
.btn:hover {
	text-decoration: none;
}

.btn-primary {
	color: #fff;
	background-color: var(--purk-red3);
	border-color: var(--purk-red3);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active
{
	color: #fff !important;
	border-color: var(--purk-red3) !important;
	background-color: var(--purk-red3) !important;
}

.btn-dark {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active
{
	color: #fff !important;
	border-color: #000 !important;
	background-color: #000 !important;
}

.btn-lg {
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
	max-width: 90%;
	margin-bottom: 0.5rem;
}

.btn-outline-primary {
    color: var(--purk-red3);
    border-color: var(--purk-red3);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--purk-red3);
    border-color: var(--purk-red3);
}

.btn-link {
	color: var(--purk-red3);
}
.btn-link:hover {
    color: var(--purk-red1);
}

.btn-light {
	color: var(--purk-red3);
	background-color: #fff;
	border: none;
	font-weight: bold;
}
.btn-light:hover {
    color: var(--purk-red1);
}

.text-black {
	color: #000 !important;
}

.text-secondary {
  color: var(--purk-gray);
}

.purk-block {
	margin-bottom: 5rem;
}

.bg-red1 {
	background-color: var(--purk-red1);
}

.bg-red2 {
	background-color: var(--purk-red2);
}

.bg-red3 {
	background-color: var(--purk-red3);
}

.bg-red4 {
	background-color: var(--purk-red4);
}

.bg-red5 {
	background-color: var(--purk-red5);
}

.bg-red-gray {
	background-image: url(../img/bg-red-gray.png);
	background-position: center top;
	background-repeat: repeat-y;
}
@media (max-width: 575.98px) {
	.bg-red-gray {
		background-image: none;
		background-color: var(--purk-red1);
	}
}

.offset-md-neg-3 {
	margin-left: -25%;
}
@media (max-width: 575.98px) {
	.offset-md-neg-3 {
		margin-left: auto;
	}
}

.over-box {
	position: relative;
	z-index: 2;
}

.bg-white-red {
	background-image: url(../img/bg-white-red.png);
	background-position: center top;
	background-repeat: repeat-y;
}
@media (max-width: 575.98px) {
	.bg-white-red {
		background-image: none;
		background-color: var(--purk-red3);
	}
}

.bg-red-white {
	background-image: url(../img/bg-red-white.png);
	background-position: center top;
	background-repeat: repeat-y;
}
@media (max-width: 575.98px) {
	.bg-red-white {
		background-image: none;
		background-color: var(--purk-red3);
	}
	.bg-red-white .col-md-6:nth-child(2) {
		background-color: white;
		margin-bottom: 1rem;
	}
}

.bg-pattern {
	background-image: url(../img/bg-pattern.svg);
	background-position: 0;
}

.img-pattern {
	position: absolute;
	right: 50px;
	top: 50px;
	height: 520px;
	width: fit-content;
	object-fit: cover;
}
@media (max-width: 575.98px) {
	.img-pattern {
		display: none;
	}
}

.img-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 575.98px) {
	.img-fit {
		height: auto;
	}
}

.img-300 {
	max-height: 300px;
	height: 50%;
}

.img-600 {
	max-height: 600px;
	height: 100%;
}
/*
.container .img-300 {
	max-height: 200px;
}

.container .img-600 {
	max-height: 400px;
}
*/
.text-primary {
    color: var(--purk-red3) !important;
}

.border-primary {
    border-color: var(--purk-red3) !important;
}

.border-end {
    border-right: 2px solid var(--purk-gray-light) !important;
}
.border-end:last-child {
	border-right: none !important;
}

.with-logo {
	position: relative;
}

.with-logo::after {
	content: '';
	position: absolute;
	width: 66px;
	height: 84px;
	right: 75px;
	bottom: -30px;
	background: url(/theme/base/img/logo-male.png) no-repeat;
}

.lead {
	font-size: 50px;
	font-weight: bold;
	vertical-align: middle;
}

.liner {
	font-family: 'Roboto', sans-serif;
    color: var(--purk-red3);
    position: relative;
    padding-left: 120px;
}

.liner::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: var(--purk-red3);
    left: 0;
    top: 45%;
}

/* HEADER */

/* Celková výška hlavičky cca 200 px, obsah svisle na střed, širší než běžný obsah */
header.container {
	max-width: 1520px;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

header .logo {
	position: relative;
    z-index: 5;
}

header .logo img {
	width: 170px;
}

/* Tlačítka v hlavičce (Kontakt, Rezervovat) – stejná velikost jako položky menu;
   !important kvůli bootstrapímu .navbar-expand-xl .navbar-nav .nav-link u Kontaktu */
header .btn {
	font-size: 18px;
	line-height: 21px;
	font-weight: normal;
	padding: 0.4rem 1.25rem !important;
}

/* Kontakt – černá pilulka */
header .btn-dark {
	border-radius: 50rem;
}

header .header-contact {
	font-size: 16px;
	line-height: 21px;
}

header .header-contact a.text-black:hover {
	text-decoration: none;
}

header .header-contact img {
	margin-right: 0.25rem;
	vertical-align: -0.2rem;
}

header .social {
	color: #000;
	display: inline-block;
	vertical-align: middle;
}

header .social:hover {
	color: var(--purk-red3);
}

header .social svg {
	fill: currentColor;
}

header .social .instagram {
	fill: none;
	width: 20px;
	height: 20px;
}

/* Nižší hlavička pod breakpointem sbaleného menu; kotva pro absolutně pozicovaný rozbalený panel */
@media (max-width: 1199.98px) {
	header.container {
		position: relative;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

/* Menší logo na mobilu */
@media (max-width: 575.98px) {
	header .logo img {
		width: 110px;
	}
}


/* KARUSEL */

#purk-karusel {
	margin-bottom: 0;
}

#mod-karusel {
	margin-bottom: 0;
}

#mod-karusel .subhead {
	text-shadow: 13px 6px 16px #000000A8;
	font-size: 40px;
	color: white;
	margin-bottom: 1rem;
}

#purk-karusel .btn-outline-primary {
	border-color: white;
	color: white;
	font-weight: bold;
	font-style: italic;
}

#karusel-karusel .karusel-item {
	min-height: 550px;
	height: calc(100vh - 220px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.slick-prev {
	left: 65px;
	z-index: 5;
}
.slick-next {
	right: 65px;
	z-index: 5;
}
.slick-arrow:before {
	background-image: url(/theme/base/img/arr-right.svg);
	width: 32px;
	height: 58px;
	display: block;
	background-size: 100%;
	content: '';
}
.slick-prev:before {
	transform: rotate(180deg);
}
.slick-dots {
	bottom: 25px;
}
.slick-dots li button:before {
	font-size: 18px;
	color: white;
	text-shadow: 0px 0px 3px #707070;
	opacity: 1;
}
.slick-dots li.slick-active button:before {
	color: var(--purk-red3);
	opacity: 1;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

#nonstop-badge {
	position: absolute;
	font-size: 33px;
	/* font-size: 27px; */
	color: white;
	background-color: var(--purk-red3);
    border-radius: 50%;
    width: 220px;
    height: 220px;
    text-align: center;
    padding-top: 60px;
	transform: rotate(22deg) scale(0.8);
	right: calc(50% - 530px);
    top: calc(50% - 350px);
}
/*
#nonstop-badge strong {
	font-size: 33px;
}
*/

/* RECENZE */

#karusel-recenze {
	padding: 5rem 0;
}

#karusel-recenze .slick-prev {
	left: -60px;
}

#karusel-recenze .slick-next {
	right: -40px;
}

#karusel-recenze .slick-arrow:before {
	filter: contrast(0.5);
}


/* CTYRI-IKONY */

#purk-ctyri-ikony .col-md-3 {
	padding: 4rem 2rem;
}

#purk-ctyri-ikony img {
	height: 80px;
	width: 80px;
}

#purk-ctyri-ikony p {
	display: inline-block;
	margin: 0 0 0 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
    vertical-align: middle;
	color: white;
	width: calc(100% - 7rem);
}


/* HODNOCENI */

#purk-hodnoceni {
}

#purk-hodnoceni .container {
	padding-top: 5rem;
}

#purk-hodnoceni .purk-hodnoceni-rate {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 3.2rem;
}

#purk-hodnoceni .purk-hodnoceni-rate-value {
	font-size: 4.6rem;
	color: var(--purk-red3);
}


/* BALICKY */
#purk-balicky .col-md-4 {
	text-align: center;
	background-size: cover;
    background-position: center;
	padding: 10rem 7% 12rem;
	position: relative;
}
/*
#purk-balicky .overlayer {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: black;
    opacity: 0.3;
    z-index: 0;
}
*/
#purk-balicky h4 {
	position: relative;
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
}

#purk-balicky .btn-lg {
	position: absolute;
	bottom: 4rem;
    left: calc(50% - 8rem);
}


/* CENOVY-BONUS */

#purk-cenovy-bonus {
	margin: 8rem 0 10rem;
}


/* AKTIVITY */

#purk-aktivity {

}

#purk-aktivity .ico-block {
	text-align: center;
	color: white;
	padding: 3rem 0;
}

#purk-aktivity .ico-block img {
	height: 50px;
}

#purk-aktivity .ico-block .h4 {
	font-weight: bold;
	text-transform: uppercase;
    margin-top: 2rem;
}


/* RECENZE */

#purk-recenze {
}


/* POKOJE */

.purk-pokoj {
	border-bottom: 1px solid var(--purk-red3);
	padding-bottom: 5rem;
}

.box-title {
	position: absolute;
	font-weight: bold;
	font-size: 24px;
	background-color: var(--purk-red3);
	padding: 1rem 4rem;
	color: white;
	width: auto;
}

/* KONTAKT */
#mapa {
	width: 100%;
	height: 480px;
	position: absolute;
	margin-top: -2rem;
}
#mapa img[src^="https://api.mapy.cz"],
#mapa-velka img[src^="https://api.mapy.cz"],
#mapa .print
#mapa-velka .print {
	filter: grayscale(1);
}

#mapa-velka {
	width: 100%;
	height: 570px;
}

#purk-kontakt-velky {
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	#mapa {
		position: relative;
	    margin-top: auto;
	}
}


/* AKCE */

.purk-akce {
	padding-top: 3rem;
}

.purk-akce .akce-item {
	margin-bottom: 6rem;
}

.purk-akce h2 {
	font-style: normal;
	text-transform: uppercase;
	font-size: 2.75rem;
	line-height: 1.15;
	margin-bottom: 3rem;
}

.purk-akce .akce-content {
	margin-bottom: 3rem;
}

.purk-akce .btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.25rem;
	padding: 1rem 2.5rem;
	border-radius: 8px;
}

.purk-akce .akce-footer {
	flex-wrap: wrap;
	gap: 1rem 3.5rem;
}

.purk-akce .akce-price {
	color: var(--purk-red3);
	font-weight: bold;
	font-size: 2rem;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.purk-akce .akce-text {
		padding-right: 3.5rem;
	}
	.purk-akce .akce-text.order-lg-last {
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: 3.5rem;
	}
}

@media (max-width: 991.98px) {
	.purk-akce .akce-item {
		margin-bottom: 4rem;
	}
	.purk-akce .akce-img {
		margin-top: 2rem;
	}
}
