* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
	font-family: 'Open Sans', sans-serif, Arial;
}

h1, h2, h3 {
  font-weight: normal;
}





/* Boxed layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.header_bg {
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  background-position: inherit;
}

.menu .nav-menu li ul li a {
  color: white;
}


.header_bg_center {
  max-width: 100%;     /* Zmenší se podle šířky rodiče */
  height: auto;        /* Zachová poměr stran */
  display: block;      /* Odstraní spodní mezeru (inline image behavior) */
  margin: 0 auto;      /* Vycentrování jako záloha */
}

.main_logo {
	width: 160px;
	height: 88px;
	float: none;
	margin: 0 auto;
	margin-top: 19px;
}
.header_menu {
	margin-top: -44px;
	background: transparent;
	background-image: none;
	width: inherit;
}

.header_menu a {
	color: #5c5454;
	text-decoration: none;
	font-weight: normal;
}  

main {
	margin-top: 30px;
}


/* HERO sekce s obrázkem */
.hero {
  position: relative;
  background-image: url('../img/main_banner_new.jpg');
  background-size: contain; /* celý obrázek bez ořezu */
  background-position: center top;
  background-repeat: no-repeat;
  aspect-ratio: 1156 / 460; /* moderní způsob */
}

/* Fallback pro starší prohlížeče */
@supports not (aspect-ratio: 1) {
  .hero::before {
    content: '';
    display: block;
    padding-top: calc(460 / 1156 * 100%); /* výška podle šířky */
  }
}

/* Navigace */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 1rem 0;
	position: absolute;
	top: 40px;
	left: 30px;
	right: 40px;
	right: 30px;
	background-color: #312A24;
	border: 2px solid #535353;
	margin: 20px;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
}

/* Menu */
.nav-menu {
	list-style: none;
	/*display: flex;*/
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	margin: 0 auto;
}

.nav-menu li a {
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;  
}
.header_menu.inside {
	display:none;
}

.reservation_box {
	width: 287px;
	height: 539px;
	background: url("../img/reservation_bg.png") no-repeat;
	position: relative;
	float: right;
	margin-top: -150px;
	margin-left: 0;
	text-align: center;
	margin-right: 60px;
}
.reservation_form ul {
	width: 100%;
	list-style-type: none;
	list-style-position: outside;
	margin: 0px;
	padding: 0px;
}
.footer {
  width: 100%;

}
.footer {
	min-width: inherit;
	width: 100%;
	height: inherit;
	background-image: none;
	background: #333;
	padding-bottom: 10px;
}
.footer_center {
	text-align: center;
	padding-top: 20px;
	padding-right: 10px;
}
.fotovoltaika {
	float: left;
	margin: -13px 20px 0 5px;
}



/* Grid wrapper */



/*.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}*/

.grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* Grid sloupec */
.col {

  padding: 1rem;

}

.col.left {


}
.col.right {


}



/* Tablety: 2 sloupce */
@media (max-width: 1024px) {
  .grid {
    /*grid-template-columns: repeat(2, 1fr);*/
  }
.main_logo a img {
  width: 120px;
  height: auto;
} 
.main_logo {
	width: 160px;
	height: 88px;
	float: left;
	margin: 0 auto;
	margin-top: 0;
} 
.header_bg {
	height: 90px;
}
.reservation_box {
	margin-right: 40px;
}
}

/* Mobily: 1 sloupec */
@media (max-width: 900px) {
	
.navbar {
	padding: 2rem 0 0 1rem;
}
.menu_item a {
	font-size: 15px;
}
.header_menu a {
	font-weight: normal;
}
.menu_item {
	margin-right: 18px;
}
.navbar {

	top: 20px;
}
.reservation_box {
	margin-right: 40px;
}
 
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
	
/* Mobily: 1 sloupec */	
  .grid {
    grid-template-columns: 1fr;
  }	
  .nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
	z-index: 99;
  }

  .nav-menu.show {
    display: flex;
	z-index: 99;
  }

  .hamburger {
    display: block;
	margin-bottom: 10px;
	margin-right: 10px;
  }
  .menu li:hover ul {
    margin-top : -50px;
	margin-left : 150px;
    background: #372f27;
}
.navbar {
	padding: 0.5rem 0 0 1rem;
	top: 10px;
	left: 0;
	right: 0;
}
.nav-menu.show li ul {
	background:rgba(0, 0, 0, 0.8);
}
/*.nav-menu.show li.menu_item li a {

	color: #c2c2c2;

}*/
.header_menu {
	margin-top: -10px;
	background: transparent;
	background-image: none;
	font-size:14px;
	width: inherit;
	margin-right:0;
}
.header_menu a {
	color: #aaa;
	text-decoration: none;
}
.header_menu.outside {
	display:none;
}
.header_menu.inside {
	display:block;
}

.main_logo {
	float: none;
	margin: 0 auto;
	margin-top: 0;
} 
.menu_day, .taxi_service, .wifi{
width:auto;	
padding-left:5px;
margin-right: 10px;

}
.reservation_box {
	width: 287px;
	height: 539px;
	background: url("../img/reservation_bg.png") no-repeat;
	position: relative;
	float: none;
	margin-top: -20px;
	margin-left: 0;
	text-align: center;
	margin-right: 0;
	margin: -20px auto 0;
}
.title {
	color: #ffffff;
	font-size: 18px;
	margin-top: 0;
	padding-top: 10px;
}

}



