/* Rólunk szekció egyedi stílusa */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem; /* 30px */
  padding: 1.875rem; /* 30px */
  align-items: flex-start;
  background-color: #fff9e6;
  background-image: url('kepek/hatter.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map-side {
  flex: 1;
  max-width: 50%;
  min-width: 18.75rem; /* 300px */
}

.map-img {
  width: 100%;
  border-radius: 0.625rem; /* 10px */
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 18.75rem; /* 300px */
}

.about-text h1 {
  color: #b44;
  margin-bottom: 0.625rem; /* 10px */
}

/* Mobil reszponzív */
@media (max-width: 48rem) {
  .about-section {
    flex-direction: column;
    background-image: url('kepek/hatter.jpg');
    background-size: cover;
    background-position: center;
  }

  .map-side,
  .about-content {
    max-width: 100%;
  }
}

/* Galéria (Coverflow) */
.coverflow {
  position: relative;
  margin: 0 auto;
  background-color: #fff1e6;
  padding: 2.5rem 0; /* 40px */
  border-radius: 0.625rem; /* 10px */
  max-width: 100%;
  overflow: hidden;
  z-index: 0;
}

.coverflow-track {
  position: relative;
  height: 21.875rem; /* 350px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverflow-img {
  position: absolute;
  transition: all 0.5s ease;
  border-radius: 0.9375rem; /* 15px */
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.2); /* 4px 15px */
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}

.coverflow-img.active {
  width: 28.125rem; /* 450px */
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  left: 50%;
}

.coverflow-img.prev {
  width: 15.625rem; /* 250px */
  opacity: 0.5;
  left: calc(50% - 30rem); /* 480px */
  z-index: 2;
}

.coverflow-img.next {
  width: 15.625rem; /* 250px */
  opacity: 0.5;
  left: calc(50% + 14.375rem); /* 230px */
  z-index: 2;
}

.coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 200, 200, 0.7);
  border: none;
  font-size: 1.75rem; /* 28px */
  cursor: pointer;
  padding: 0.5rem 0.9375rem; /* 8px 15px */
  z-index: 10;
  border-radius: 50%;
}

.coverflow-btn.left {
  left: 1.25rem; /* 20px */
}

.coverflow-btn.right {
  right: 1.25rem; /* 20px */
}

/* Mobil reszponzív */
@media (max-width: 48rem) {
  .coverflow-img.active {
    width: 90%;
    left: 50%;
    transform: translateX(-50%) scale(1);
  }

  .coverflow-img.prev,
  .coverflow-img.next {
    display: none;
  }
}
