@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Regular.ttf') format('truetype');
	/*font-weight: 900;*/
	font-style: normal;
  }

@font-face {
	font-family: 'CaesarDressing';
	src: url('fonts/CaesarDressing-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

:root {
	--buttonBGcolor: #a90909;;
	--headerBorder: #a90909;
	--productBG: #a90909;
}

/* General */
html, body {
	font-family: Poppins;
	/* min-width: 480px; */
}
/* ##################################################### START WEBSHOP ############################################# */

.greek-font{
	font-family: 'CaesarDressing', serif;
	letter-spacing: 1px;
}

.section-title-text {
	text-align: center;
	font-size: 54px;
	margin-top: 24px;
	margin-bottom: 6px;
	position: relative;
	color: var(--buttonBGcolor);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#rolunk .section-title-text {
	font-size: 48px;
	margin: 30px 0;
}

#rolunk .section-title-text::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--buttonBGcolor), #d4af37);
	border-radius: 2px;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
  }
  li {
	padding: 4px 0 4px 0;
  }
  ul ul {
	display: none;
	position: absolute;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	  border: 1px solid gray;
  }

  li:hover > ul {
	display: block;
	padding: 4px 10px;
  }

.products_group{
	/*background-image: url("../images/header-background.png");*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/*border: 2px solid #e7e5e4;*/
}

.top-slide h1{
	font-weight: bold;
	text-shadow:
    -1px -1px 0 #D79C4C,
    1px -1px 0 #D79C4C,
    -1px 1px 0 #D79C4C,
    1px 1px 0 #D79C4C;
}

.card {
	margin-bottom: 20px;
}

.card-img-top {
	object-fit: cover;
}

.top-slide h4{
	font-weight: bold;
	text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

#servicestitle h2, .products_group_title h2{
	text-align: center;
	font-size: 32px;
	text-transform: uppercase;
    font-weight: 700;
	color: #222222;
	margin-bottom: 40px;
	position: relative;
	letter-spacing: 2px;
}

#servicestitle h2:after, .products_group_title h2:after{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, var(--buttonBGcolor), #c41010);
	border-radius: 2px;
}

#rolunk.section{
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.95));
	border-radius: 30px;
	margin: 40px 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.6s ease;
	transform: translateY(20px);
	opacity: 0.9;
}

#rolunk.section:hover {
	transform: translateY(0);
	opacity: 1;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

#rolunk.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--buttonBGcolor), #c41010, #d4af37);
}

.pattern-divider {
	background: linear-gradient(90deg, transparent, var(--buttonBGcolor), #d4af37, var(--buttonBGcolor), transparent);
	height: 4px;
	margin: 60px auto;
	width: 200px;
	border-radius: 2px;
	box-shadow: 0 2px 10px rgba(169, 9, 9, 0.3);
	position: relative;
}

.pattern-divider::before,
.pattern-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	background: var(--buttonBGcolor);
	border-radius: 50%;
	transform: translateY(-50%);
}

.pattern-divider::before {
	left: -15px;
}

.pattern-divider::after {
	right: -15px;
}

.company-rolunk-paragraph {
	max-width: 85ch;
	margin: 0 auto;
	padding: 40px 30px;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	text-align: justify;
	position: relative;
}

.company-rolunk-paragraph::before {
	content: '"';
	font-size: 80px;
	color: var(--buttonBGcolor);
	opacity: 0.3;
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: Georgia, serif;
}

.company-rolunk-paragraph p {
	margin-bottom: 20px;
	text-indent: 30px;
}

.company-rolunk-paragraph p:first-child {
	margin-top: 30px;
}

.slider-container {
	overflow: visible;
	width: 100%; /* A teljes szélesség */
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	margin: 20px 0;
	height: auto;
}

.slider {
	display: flex;
	transition: transform 1s ease-in-out;
	text-align: center;
}

.slide {
	min-width: 100%;
	box-sizing: border-box;
	background-color: #fff;
}

.slider img {
	height: 100px;
	width: auto;
}

#services .col:hover, #products_group .col:hover{
	/*
	background-color: var(--productBG);
	color: #fff;
	*/
}

.containerfull{
	display: table;
	width: 100%;
	margin: 0;
	padding: 20px 0;
}

.reszletek{
	display: inline-block;
	border: 2px solid var(--buttonBGcolor);
	padding: 8px 16px;
	color: var(--buttonBGcolor);
	background-color: transparent;
	cursor: pointer;
	float: left;
	border-radius: 25px;
	transition: all 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 12px;
}

.reszletek:hover{
	background-color: var(--buttonBGcolor);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(169, 9, 9, 0.3);
}

.gomb{
	border-radius: 5px;
	font-size: 18px;
}

.itemcart{
	display: inline-block;
	width: calc(60% - 10px);
}

.product_number {
	width: 60px;
	display: inline-block;
	padding: 8px 12px;
	border: 2px solid #ddd;
	border-radius: 10px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	background-color: #fff;
	transition: all 0.3s ease;
}

.product_number:focus {
	outline: none;
	border-color: var(--buttonBGcolor);
	box-shadow: 0 0 10px rgba(169, 9, 9, 0.2);
}

.addcartitems{
	display: inline-block;
	border: 2px solid transparent;
	padding: 8px 16px;
	background: linear-gradient(135deg, var(--buttonBGcolor), #c41010);
	color: #fff;
	cursor: pointer;
	float: right;
	border-radius: 25px;
	transition: all 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 12px;
}

.addcartitems:hover{
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(169, 9, 9, 0.4);
	background: linear-gradient(135deg, #c41010, var(--buttonBGcolor));
	border-color: rgba(255, 255, 255, 0.3);
}

/* ##################################################### END WEBSHOP ############################################# */

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container_video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

a {
	color: var(--main-blue);
}

a:hover {
	color: var(--main-blue-dark);
}

.align-items-center {
    align-items: center !important;
}

.link-icon {
	color: var(--main-blue-dark);
	font-size: 20px;
	margin-right: 12px;
}

/* Sections */
.section {
	position: relative;
	transition: background-color 0.4s;
}
.section.light {
	/*background-color: #eee;*/
	color: #303030;
}
.section.dark {
	background-color: #333;
	color: #e0e0e0;
}
.section + .section {
	/*border-top: 4px solid #999;*/
}
.section.light.section-active {
	background-color: #d0d0d0;
}
.section.dark.section-active {
	background-color: #202020;
}

header {
	background-color: transparent;
	color: #fff;
}

.section-head {
	width: 100%;
	padding: 15px 0;
	transition: background-color 0.4s;
}
.section.light .section-head {
	color: black;
/*	background-color: #e8e8e8;
	border-bottom: 1px dashed #ddd;
	*/
}
.section.dark .section-head {
	color: white;
	background-color: #303030;
	border-bottom: 1px dashed #222;
}

.section-content {
	padding: 10px 0;
}

.section-active .section-head {
	/*
	position: fixed;
	top: 60px;
	*/
	color: white;
	background-color: #303030;
	box-shadow: 0 2px 1px 2px rgba(0, 0, 0, 0.2), 0 -2px 1px 2px rgba(200, 200, 200, 0.8);
	/* box-shadow: 0 2px 1px 2px rgba(200, 0, 0, 0.8); */
}

#welcome {
	margin-top: 80px;
	padding-bottom: 0;
	background-image: url('../images/wallpaper.jpg');
	background-size: cover;
	background-position: center top;
}

.navbar-toggler-icon{
	background-color: #fff!important;
	border-radius: 3px!important;
	border: 1px solid #fff!important;	
}

#welcome_main {
	height: calc(100vw * 0.4);
	max-height: 50vh;
	min-height: 200px;
	overflow: visible;
}

#welcome_main > .row {
	height: 100%;
}

/* Slider kép arányok és méretek - arányos megjelenítés */
.slider-image-container {
	min-height: 200px !important;
	max-height: 50vh !important;
	height: calc(100vw * 0.4) !important;
	max-width: 100% !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-end !important;
	align-items: center !important;
	position: relative !important;
}

/* Slider szövegek pozícionálása */
.top-slide .brand_main {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	position: absolute !important;
	bottom: 60px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 90% !important;
}

.top-slide .brand_short {
	position: absolute !important;
	bottom: 20px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
}

/* Desktop slider optimalizálás */
@media (min-width: 1200px) {
	#welcome_main {
		height: calc(100vw * 0.35);
		max-height: 40vh;
		min-height: 250px;
	}
	
	.slider-image-container {
		height: calc(100vw * 0.35) !important;
		max-height: 40vh !important;
		min-height: 250px !important;
	}
}

/* Tablet slider */
@media (max-width: 992px) {
	#welcome_main {
		height: calc(100vw * 0.45);
		max-height: 45vh;
		min-height: 180px;
	}
	
	.slider-image-container {
		height: calc(100vw * 0.45) !important;
		max-height: 45vh !important;
		min-height: 180px !important;
	}
}

#top-slider {

}

.top-slide {
/*	padding: 50px 0 25px 0;*/
}

#welcome .mb-5, .my-5 {
    margin-bottom: 0!important;
}

.brand_main {
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

.start_button {
	position: relative;
	bottom: 0;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.list-1 {
	padding: 0 0 0 20px;
}

ul.list-1 > li {
	position: relative;
	margin: 20px 10px;
}

ul.list-1 > li:before {
	position: absolute;
	top: 0;
	left: -20px;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	color:  var(--main-blue-dark);
	line-height: 30px;
}

ul.list-1 > li > h5 {
	display: inline-block;
	font-family: 'Exo 2', sans-serif;
}
.section.light ul.list-1 > li > h5 {
	color: black;
}
.section.dark ul.list-1 > li > h5 {
	color: white;
}

ul.list-2 {
	list-style: none;
	margin: 0;
	padding: 0 0 0 20px;
}

ul.list-2 > li {
	position: relative;
	margin: 5px 10px;
}

ul.list-2 > li:before {
	position: absolute;
	top: 0;
	left: -20px;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	/* color: rgb(200, 100, 0); */
	color: var(--main-blue-dark);
	line-height: 30px;
}

/* Contact */

#contact {
	background: linear-gradient(135deg, rgba(169, 9, 9, 0.1), rgba(212, 175, 55, 0.1));
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

#contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../assets/contact.jpg');
	background-attachment: fixed;
	background-size: cover;
	opacity: 0.1;
	z-index: -1;
}

#contact .section-head {
	background-color: rgba(210, 210, 210, 0.85);
}

#contact .section-content {
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	border-radius: 25px;
	padding: 40px 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	margin: 20px 0;
	position: relative;
	backdrop-filter: blur(10px);
}

/* Bootstrap grid oszlopok visszaállítása a contact szekcióban */
#contact .col-lg-8,
#contact .col-lg-4,
#contact .col-md-8,
#contact .col-md-4,
#contact .col-sm-12 {
	background: none !important;
	border: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 15px !important;
	box-shadow: none !important;
	transition: none !important;
	transform: none !important;
	position: static !important;
	width: auto !important;
	flex: none !important;
	display: block !important;
}

/* Erősebb Bootstrap grid reset */
#contact .col-lg-8 {
	flex: 0 0 65.666667% !important;
	max-width: 65.666667% !important;
}

#contact .col-lg-4 {
	flex: 0 0 33.333333% !important;
	max-width: 33.333333% !important;
}

/* Csak desktop méretben */
@media (min-width: 992px) {
	#contact .row {
		display: flex !important;
		flex-wrap: wrap !important;
	}
}

/* 990px alatt minden Bootstrap flex szabály letiltása */
@media (max-width: 990px) {
	#contact .col-lg-8,
	#contact .col-lg-4 {
		flex: none !important;
		max-width: none !important;
		width: 100% !important;
		display: block !important;
	}
}

#contact .section-content a{
	color: var(--buttonBGcolor);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

#contact .section-content a:hover{
	color: #c41010;
	text-decoration: underline;
}

#contact .section-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--buttonBGcolor);
	position: relative;
	padding-bottom: 10px;
}

#contact .section-content h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--buttonBGcolor), #d4af37);
	border-radius: 2px;
}

#contact .section-content h5 {
	font-family: "Poppins", sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--buttonBGcolor);
	position: relative;
	padding-left: 20px;
}

#contact .section-content h5::before {
	content: '🕒';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2rem;
}

/* Különböző ikonok a különböző nyitvatartás típusokhoz */
#contact .section-content h5:nth-of-type(1)::before {
	content: '🏪';
}

#contact .section-content h5:nth-of-type(2)::before {
	content: '🌐';
}

#contact .section-content label {
	font-family: "Poppins", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.3rem;
	letter-spacing: .05em;
}

#contact .section-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#contact .section-content ul li {
	background: rgba(255, 255, 255, 0.8);
	margin: 15px 0;
	padding: 15px 20px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-left: 4px solid var(--buttonBGcolor);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

#contact .section-content ul li:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-left-color: #d4af37;
}

#contact .section-content ul li i {
	color: var(--buttonBGcolor);
	font-size: 1.2rem;
	margin-right: 15px;
	width: 20px;
	text-align: center;
}

#contact .section-content ul li:first-child {
	background: linear-gradient(135deg, rgba(169, 9, 9, 0.1), rgba(212, 175, 55, 0.1));
	border: 2px solid var(--buttonBGcolor);
	padding: 25px;
	text-align: center;
	flex-direction: column;
}

#contact .section-content ul li:first-child img {
	max-width: 200px;
	margin-bottom: 15px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact .section-content ul li:first-child strong span {
	color: var(--buttonBGcolor);
	font-size: 1.2em;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Content frame */
#frame {
	margin-top: 64px;
	border-top: 4px solid var(--buttonBGcolor);
	background-image: url('../assets/wallpaper.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-color: transparent;
}

#frame .section-head {
	background-color: rgba(255, 255, 255, 0.5);
}

#frame .section-content {
	background-color: rgba(255, 255, 255, 0.3);
	min-height: calc(100vh - 384px);
	padding: 50px 0;
}

#frame .section-content h2 {
	margin-bottom: 50px;
}

/* Form */

.section.dark .form-control {
	font-family: "Open Sans", sans-serif;
	font-size: 0.9rem;
	background-color: rgba(0, 0, 0, 0.5);
	color: #e0e0e0;
	border: 2px solid rgba(0, 0, 0, 0.6);
	border-radius: 1px;
	padding: 1.4rem 0.7rem;
	transition: background-color 0.4s;
}

.section.dark .form-control:focus {
	background-color: rgba(0, 0, 0, 0.8);
}

/* FOOTER */
footer {
	/*padding: 20px 0 50px 0;*/
	border-top: 2px solid var(--main-blue-dark);
	/*background-color: black;*/
	color: #aaa;
	background: linear-gradient(90deg, var(--main-blue) 0%, var(--main-blue-dark) 100%)
}

footer h5 {
	font-family: Poppins, serif;
	font-size: .9rem;
	/*font-weight: 700;*/
	margin-top: 2rem;
	margin-bottom: 12px;
	letter-spacing: .05em;
	/*text-transform: uppercase;*/
	color: #FFF;
}

.container.pb-4 p,
.container.pb-4 a {
	color: #cbd5e1;
	font-family: Poppins, serif;
	font-size: 0.8rem;
}

footer a:hover {
	color: var(--main-blue-light);
	text-decoration: none;
}

/* MODAL */
.modal {
	padding-right: 0 !important;
}

.modal-content {
	/* background-color: #404040; */
	/* color: #ccc; */
	border-radius: 0 !important;
	border: 4px solid rgba(255, 255, 255, 0.25);
}

.modal-header {
	display: block;
	border-bottom: 1px dashed #C0C0C0;
}

.modal-header .close {
	color: black;
	text-shadow: none;
}

.modal-header h5 {
	display: block;
	font-family: "Exo 2", sans-serif;
	text-transform: uppercase;
	color: black;
}

.modal-footer {
	display: block;
	border-top: 1px dashed #C0C0C0;
}

#map_frame {
	border: 4px solid rgba(0, 0, 0, 0.2);
}

#map {
	height: 384px;
}

#map_frame {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

#map_frame:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

#map_frame iframe {
	border-radius: 20px;
}

.openingName {
	font-weight: 700;
	color: var(--buttonBGcolor);
	margin: 0;
	display: inline-block;
	min-width: 100px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.openingTime {
	font-weight: 600;
	color: #fff;
	display: inline-block;
	background: linear-gradient(135deg, var(--buttonBGcolor), #c41010);
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 14px;
	box-shadow: 0 3px 10px rgba(169, 9, 9, 0.3);
	margin-left: 10px;
}

/* Nyitvatartás container stílus */
.opening-hours-container {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.95));
	padding: 25px;
	border-radius: 20px;
	margin-top: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(169, 9, 9, 0.1);
}

/* Minden egyes nap stílusa */
.opening-day {
	margin: 12px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	border-left: 4px solid var(--buttonBGcolor);
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.opening-day:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-left-color: #d4af37;
}

/* Egységes megjelenés minden napnak - eltávolítva a first-child kiemelés */

/* Zárva állapot kézi osztállyal - ha a PHP-ban hozzáadunk egy 'closed' class-t */
.openingTime.closed {
	background: linear-gradient(135deg, #888, #666) !important;
	color: #fff !important;
}

/* Alternatív: ha a szöveg "Zárva!" - ezt JavaScript tudná kezelni */

/* Vasárnap is egységes legyen a többi nappal */

@media (max-device-width: 800px), (max-width: 800px){
	img{
		/*max-width: 100%!important;*/
		max-width: 100%;
	}
	.company_logo_contact_page {
		max-width: 30% !important;
	}
	
	#rolunk.section {
		margin: 20px 10px;
		border-radius: 20px;
	}
	
	.company-rolunk-paragraph {
		padding: 30px 20px;
		font-size: 15px;
	}
	
	#rolunk .section-title-text {
		font-size: 36px;
	}
	
	.pattern-divider {
		width: 150px;
		margin: 40px auto;
	}

}

@media (max-width: 480px) {
	#rolunk.section {
		margin: 15px 5px;
		border-radius: 15px;
	}
	
	.company-rolunk-paragraph {
		padding: 20px 15px;
		font-size: 14px;
		line-height: 1.6;
	}
	
	.company-rolunk-paragraph::before {
		font-size: 60px;
		top: 5px;
		left: 5px;
	}
	
	#rolunk .section-title-text {
		font-size: 28px;
		margin: 20px 0;
	}
	
	.pattern-divider {
		width: 100px;
		margin: 30px auto;
	}
	
	#contact .section-content {
		margin: 10px 0;
		padding: 20px 15px;
		border-radius: 15px;
	}
	
	/* Bootstrap oszlopok mobilon is megfelelően működjenek */
	#contact .col-lg-8,
	#contact .col-lg-4 {
		padding: 10px !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	
	#contact .section-content h3 {
		font-size: 1.4rem;
	}
	
	#contact .section-content ul li {
		padding: 12px 15px;
		margin: 10px 0;
		border-radius: 10px;
		flex-direction: column;
		align-items: flex-start;
	}
	
	#contact .section-content ul li i {
		margin-bottom: 5px;
	}
	
	#map_frame {
		border-radius: 15px;
		margin-bottom: 20px;
	}
	
	/* Nyitvatartás mobil optimalizálás */
	.opening-hours-container {
		padding: 20px 15px;
	}
	
	.opening-day {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		padding: 10px 12px;
	}
	
	.openingName {
		min-width: auto;
		margin-bottom: 8px;
		font-size: 14px;
	}
	
	.openingTime {
		margin-left: 0;
		font-size: 13px;
		padding: 6px 12px;
	}
}

@media (max-width: 768px) {
	#contact {
		padding: 40px 0;
	}
	
	#contact .section-content {
		margin: 15px 0;
		padding: 30px 20px;
	}
	
	/* Bootstrap oszlopok tableten - flex szabályok eltávolítva */
	#contact .col-lg-8,
	#contact .col-lg-4 {
		padding: 12px !important;
		flex: none !important;
		max-width: none !important;
		width: 100% !important;
	}
	
	#contact .section-content ul li:hover {
		transform: translateX(5px);
	}
	
	/* Nyitvatartás tablet optimalizálás */
	.opening-hours-container {
		padding: 20px;
	}
	
	.opening-day {
		padding: 10px 12px;
		margin: 8px 0;
	}
	
	.openingName {
		font-size: 14px;
		min-width: 90px;
	}
	
	.openingTime {
		font-size: 13px;
		padding: 6px 14px;
	}
}


@media (max-height: 500px), (max-device-width: 990px), (max-width: 990px) {
	ul ul {
	  display: none!important;
	}
  }


