@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Pattaya&family=Paytone+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Pattaya&family=Paytone+One&display=swap');
html, body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans", serif;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #000;
}

/* ------ Alap színek és segédosztályok ------ */
.blue { color: #2b92df;}
.yellow{color:#F2C230;}
.black { color: #000; }
.bold { font-weight: bold; }
.bold600{font-weight: 600;}
.caps { text-transform: uppercase; }
.size32 { font-size: 32px; }
.size20 { font-size: 20px; }
.shadow { text-shadow: 0 0 0px #2b92df; }
.noshadow { text-shadow: none; }
.opacity075 { opacity: 0.75; }
.green { color: green; }
.red { color: red; }
.headline-wrapper {
  position: relative;
  overflow: hidden;
  height: 80px; /* a h1 magasságához igazítsd */
}
.carticon{
	max-height: 30px;
}
.cartitems{
	padding:2px 5px 2px 5px;
	background-color:red;
	color:white;
	font-size: 13px;
	border-radius: 10px;
	position: absolute;
	margin-left:-15px;
	margin-top:-5px;
}
.headline {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
}
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.simple-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.simple-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.simple-gallery2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.simple-gallery2 img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.simple-gallery2 img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
/* közös animáció */
@keyframes slideInOut {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* az első cím indul 0s-nál */
.headline.first {
  animation: slideInOut 6s ease-in-out infinite;
	  animation-delay: 6s;
}

/* a második cím indul 6s késleltetéssel */
.headline.second {
  animation: slideInOut 6s ease-in-out infinite;
  animation-delay: 3s;
}


/* ------ Logo ------ */
.logo {
  max-width: 135px;
  display: block;
  float: left;
}
.hazhozszallitas{
	max-width: 300px;
	margin: auto;
}
.hazhozszallitasicon{
	max-width: 125px;
	margin: auto;
	position: absolute;
	margin-top:-75px;
	margin-left:-15px;
}
.hazhozszallitasicon2{
	max-width: 125px;
	margin: auto;
	position: relative;
	

}
/* ------ Menü ------ */
.main-navigation {
  background-color: #212529;
  padding: 10px 0;
	color:#F2C230;
}

.main-navigation .navbar-nav .nav-link {
  color: #F2C230;
  font-weight: 400;
  padding: 10px 15px;
  transition: 0.3s;
  font-family: "Fira Sans", sans-serif;
	text-transform: uppercase;
	font-size: 16px;
}

.main-navigation .navbar-nav .nav-link:hover {
  color: #be992a;
}

.main-navigation .btn-circled {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: bold;
  background-color: #F2C230;
  color: #fff;
  border: none;
  transition: 0.3s;
  font-family: "Fira Sans", sans-serif;
}

.main-navigation .btn-circled:hover {
  background-color: #1b7fa6;
}

/* ------ Címsorok ------ */
h1, h2, h3, h4, h5, h6 {
 
  color: #F2C230;
 
  margin: 0 0 0.5rem 0;
 font-family: "Literata", sans-serif;
}

h1 { font-size: 2.125rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.375rem; }

#pozicioCarousel .carousel-caption {
  z-index: 10;

}

#pozicioCarousel .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  z-index: 5;
}

.title-background {
	padding-top:30px;
  background-color:#222;
	opacity: 0.7;
	color:#fff;
  width:100%;

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding-bottom:10px;
	  font-family: "Fira Sans", sans-serif;
	font-weight: 200;

}
#carouselTextWrapper{
	margin-top:-10px;
}
.carousel-item img{
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.carousel-indicators li {
  background-color: #0d6efd;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #fff;
  border: 2px solid #0d6efd;
}
.lead{
	color:#000;
}
/* ------ Bannerek ------ */
.banner-area {
  padding: 60px 0;
  background-color: #fff;
  color: #fff;
}

.banner-area .lead {
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-family: "Open Sans", "Roboto", "Lato", "Montserrat", sans-serif;
}

/* ------ Kép kártya ------ */
.card {
  background-color: #2c2f33;
   border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  font-family: "Lato", "Roboto", "Open Sans", "Montserrat", sans-serif;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f5f5f5;
}

.card-body {
  padding: 20px;
	display: flex;
    flex-direction: column;
}

.card-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.card-body p {
    flex-grow: 1;
}
.card-text {
  font-size: 0.95rem;
}

/* ------ Űrlapok ------ */
form .form-control,
form .form-control-file,
form select,
form textarea {
  background-color: #2c2f33;
  border: 1px solid #2b92df;
  color: #000;
  min-height: 20px;
  border-radius: 5px;
  font-family: "Roboto", "Open Sans", "Lato", "Montserrat", sans-serif;
}

form .form-control:focus,
form select:focus,
form textarea:focus {
  border-color: #1b7fa6;
  box-shadow: 0 0 5px #2b92df;
  outline: none;
}

form label {
  font-weight: bold;
  font-family: "Montserrat", "Roboto", "Open Sans", "Lato", sans-serif;
}

form select {
  padding: 20px;
  color: #000000;
}

/* ------ Gombok ------ */
.btn-primary {
  background-color: #F2C230;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
  font-family: "Lato", "Roboto", "Open Sans", "Montserrat", sans-serif;
}

.btn-primary:hover {
  background-color: #be992a;
}

.btn-outline-primary {
  color: #be992a;
  border: 2px solid #be992a;
}

.btn-outline-primary:hover {
  background-color: #be992a;
  color: #fff;
}

/* ------ Logo-bar és contact-bar ------ */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-bar .logo {
  float: none;
  margin: 0;
}

.logo-bar .slogan-text {
  flex: 1;
  text-align: center;
}

.contact-bar {
  padding: 10px 0;
}

.contact-bar .contact-item h5,
.contact-bar .contact-item p {
  margin: 0;
}

/* ------ Footer ------ */
footer {
  background-color: #212529;
  padding:60px 0;
  margin-top:50px;
  color: #fff;
  font-family: "Roboto", "Open Sans", "Lato", "Montserrat", sans-serif;
}

footer a {
  color: #2ea2cc;
}
.footer-brand{
	font-size:19px;
}
footer a:hover {
  color: #1b7fa6;
}

.footer-links li {
  list-style-type: none;
  text-align: left;
  margin-left:-40px;
}

.text-white2 {
  color:#fff;
}

.text-white2:hover {
  color:#2ea2cc;
}

.leftmarg40px {
  margin-left:40px;
}

/* ------ Scroll to top ------ */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #2ea2cc;
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  display: none;
  transition: 0.3s;
  z-index: 999;
}

.scroll-to-top:hover {
  background-color: #1b7fa6;
}

/* ------ Reszponzív ------ */
@media (max-width: 768px) {
  .logo {
    float: none;
    margin: 0 auto 20px auto;
  }

  .banner-area h1, .banner-area h2 {
    font-size: 1.5rem;
  }

  .card-body {
    padding: 15px;
  }

  .contact-bar {
    display: none !important;
  }

  .logo-bar .logo,
  .logo-bar .slogan-text {
    text-align: center;
    display: block;
    float: none;
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  .logo-bar {
    justify-content: center;
  }

  .logo-bar .logo,
  .logo-bar .slogan-text {
    text-align: left;
    margin: 0;
    display: block;
  }
}

@media (max-width: 1024px) {
  .contact-bar {
    display: none !important;
  }

  .logo-bar .logo,
  .logo-bar .slogan-text {
    text-align: center;
    display: block;
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 994px) {
	.banner-img-5{
		display:none;
	}
}
