/* --- Alapok --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
}

/* --- Hero szekció --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("nextrans.jpg") center/cover no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

/* Fekete félig áttetsző háromszög */
.overlay.triangle {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  clip-path: polygon(0 0, 65% 0, 45% 100%, 0% 100%);
  z-index: 1;
}

/* Szöveges tartalom */
.content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 80px 60px;
  max-width: 500px;
}

.content h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Linkek */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.links a {
  display: block;
  padding: 20px 25px;
  border-radius: 200px;
  background: rgba(0, 0, 0, 0.45); /* félig áttetsző fekete */
  backdrop-filter: blur(6px); /* üveg-hatás */
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: 
    transform 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
  width: 100%;
  box-sizing: border-box;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- Mobil optimalizáció --- */
@media (max-width: 768px) {
  .content {
    padding: 40px 20px;
    max-width: 90%;
  }

  .content h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .content p {
    font-size: 16px;
  }

  .links a {
    padding: 15px 18px;
    font-size: 16px;
  }

  /* Háttérkép fókusz mobilon */
  .hero {
    background-position: center center;
  }

  /* Overlay háromszög egyszerűsítése mobilon */
  .overlay.triangle {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Nagyon apró készülékekhez */
@media (max-width: 480px) {
  .content {
    padding: 20px 15px;
    max-width: 95%;
  }

  .content h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }

  .links a {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* --- Lebegő social ikonok --- */
.social-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-floating a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-floating a img {
  width: 26px;
  height: 26px;
}

.social-floating a:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mobil finomítás */
@media (max-width: 768px) {
  .social-floating {
    bottom: 16px;
    right: 16px;
  }

  .social-floating a {
    width: 46px;
    height: 46px;
  }

  .social-floating a img {
    width: 22px;
    height: 22px;
  }
}
