/* Alapvető stílusok */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #FFFFFF; /* Fehér szöveg */
    background-color: #1A1A1A; /* Sötét szürke háttér */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}
/* Fejléc stílusai */
.site-header {
    position: relative;
    color: white;
    padding: 20px;
    overflow: hidden; /* A pseudo-element kilógását megakadályozza */
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/header.jpg') no-repeat center center;
    background-size: cover;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    z-index: 0; /* Háttérként viselkedik */
}

.header-content {
    position: relative;
    z-index: 1; /* A tartalom a blur fölé kerül */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.neato-header {
    background: url('../images/header.jpg') no-repeat center center;
    background-size: cover;
    color: black;
    min-height: 400px; /* Magasság beállítása */
    padding: 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
	flex: 1;
}

.neato-header h1 {
    font-size: 2.5rem;
   font-family: 'Raleway', sans-serif;
   color: 000000;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
}

.neato-header h2 {
    font-size: 1.2rem;
   font-family: 'Raleway', sans-serif;
   color: 000000;
    font-weight: italic;
    margin-bottom: 20px;
    overflow: hidden;
}

.site-logo {
    max-width: 200px;
    height: auto;
    margin-right: 20px;
}

/* Lábléc stílusai */
.site-footer {
    background-color: #1A1A1A; /* Sötét háttér */
    color: #FFFFFF;
    text-align: center;
    padding: 15px 0;
    border-top: 2px solid #555555;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

/* Mobil optimalizáció */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .neato-header h2 {
        font-size: 1rem;
    }

    .site-logo {
        max-width: 100px;
        margin-bottom: 5px;
    }

    .site-footer {
        font-size: 0.8rem;
    }
	.prev, .next {
        padding: 5px;
    }
}

#carousel {
  margin-top: 300px;
  position: relative;
  height: 400px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
#carousel div {
  position: absolute;
  transition: transform 400ms, left 400ms, opacity 400ms, z-index 0s;
  opacity: 1;
}
#carousel div img {
  width: 600px;
  transition: width 400ms;
   -webkit-user-drag: none;
   box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
   border-radius: 10px;
}
#carousel div.hideLeft {
  left: 0%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideLeft img {
  width: 200px;
}
#carousel div.hideRight {
  left: 100%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideRight img {
  width: 200px;
}
#carousel div.prev {
  z-index: 5;
  left: 30%;
  transform: translateY(50px) translateX(-50%);
}
#carousel img:hover {
  cursor: 
}
#carousel div.prev img {
  width: 300px;
}
#carousel div.prevLeftSecond {
  z-index: 4;
  left: 15%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.prevLeftSecond img {
  width: 200px;
}
#carousel div.selected {
  z-index: 10;
  left: 50%;
  transform: translateY(0px) translateX(-50%);
}
#carousel div.next {
  z-index: 5;
  left: 70%;
  transform: translateY(50px) translateX(-50%);
}
#carousel div.next img {
  width: 300px;
}
#carousel div.nextRightSecond {
  z-index: 4;
  left: 85%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.nextRightSecond img {
  width: 200px;
}

/*previous or next buttons css*/

.buttons {
    position: relative;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
    justify-content: center;
    align-content: center;

}

.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}