/* ==== BOOTSTRAP INTEGRÁCIÓ ==== */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* ==== ALAPOK + HÁTTÉR ==== */
html,
body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: #000 url('https://blckline.hu/shop/assets/img/BlckLine_Logo1.png') center center / cover no-repeat fixed;
  color: #fff;
  overflow-x: hidden;
  overflow-y: scroll; 
  position: relative;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: -1;  /* EZ HIÁNYZIK ÉS EZ A BAJ */
}


.team-list a{
  color: #ff3333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.team-list a:hover{
  text-shadow: 0 0 8px #ff3333;
}


/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}


ul.team-list{
  list-style-type: square;
  color: #ff3333;
}

/* 🎥 Valós füstvideó háttér */
#smoke-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.4) contrast(0.8);
  animation: smoothFade 27s ease-in-out infinite;
}

@keyframes smoothFade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0.05;
  }

  20% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.25;
  }

  80% {
    opacity: 0.15;
  }

  95% {
    opacity: 0.05;
  }

  100% {
    opacity: 0;
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  filter: brightness(0.9) blur(4px);
  z-index: 0;
}

/* ==== LOGÓ ==== */
.pulse-logo {
  position: fixed;
  top: -10px;
  left: 20px;
  width: 120px;
  z-index: 10;
  animation: pulseGlow 3s infinite ease-in-out;
}

.pulse-logo img {
  width: 100%;
  filter: drop-shadow(0 0 15px #ff3333);
}

.about-box img{
  filter: drop-shadow(0 0 15px #ff3333);
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px #ff3333);
  }

  50% {
    filter: drop-shadow(0 0 25px #ff3333);
  }
}

.line-text {
  color: #000;
  font-weight: 900;
  /* text-shadow: 0 0 5px #ff3333, 0 0 15px rgba(255, 51, 51, .6), 0 0 30px rgba(255, 51, 51, .3); */
  -webkit-text-stroke: .6px #ff3333;
}

/* ==== RÓLUNK SZEKCIÓ - RESPONSIVE JAVÍTÁS ==== */
.blckline-about {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.about-box {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #ff3333;
  box-shadow: 0 0 15px #ff3333aa, inset 0 0 10px #ff333366;
  border-radius: 20px;
  padding: 40px 60px;
  max-width: 800px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeIn 1.2s ease-out forwards, glowPulse 3s ease-in-out 1.2s infinite alternate;
}

.about-box h2 {
  color: #ff3333;
  font-family: 'Audiowide', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff3333;
}

.about-box p {
  margin-bottom: 18px;
}

.about-box strong {
  color: #fff;
}

.about-box .link-glow {
  color: #ff3333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.about-box .link-glow:hover {
  text-shadow: 0 0 8px #ff3333;
}

.about-box .owners {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #999;
  animation: fadeIn 1.2s ease-out forwards, glowPulse 3s ease-in-out 1.2s infinite alternate;
}

/* Mobilbarát beállítások */
@media (max-width: 768px) {


  .about-box {
    padding: 25px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 15px;
    box-shadow: 0 0 10px #ff333388, inset 0 0 5px #ff333344;
  }

  .about-box h2 {
    font-size: 1.5rem;
    text-align: center;
  }


  .about-box p {
    text-align: justify;
  }

  .about-box .owners {
    font-size: 0.85rem;
    text-align: left;
    margin-top: 30px;
  }


  .button-container{
    display: none;
  }
}

/* ==== HEADER ==== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  backdrop-filter: none;
  z-index: 120;
}

/* ==== MOBIL MENÜ ==== */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #ff3333;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger:hover div {
  box-shadow: 0 0 10px #ff3333;
}

#hamburger {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 150;
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100%;
  background: #0a0a0a;
  flex-direction: column;
  padding-top: 80px;
  transition: left .3s ease;
  z-index: 110;
}

.mobile-menu.active {
  display: flex;
  left: 0;
}

.mobile-menu a {
  padding: 15px 25px;
  border-bottom: 1px solid #ff3333;
  color: #ff3333;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 51, 51, 0.1);
}

#dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 95;
}

#dim.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==== TARTALOM ==== */
.content {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.8s ease forwards;
  padding: 0 4vw;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content h1 {
  margin-top: 50px;
  position: relative;
  font-family: 'Audiowide', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: #fff;
  /* text-shadow: 0 0 30px #ff3333; */
  overflow: hidden;
  display: inline-block;
  animation: pulseGlow 3s infinite ease-in-out;
}

.content h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
  opacity: 0.8;
  mix-blend-mode: screen;
  /* animation: pulseGlow 3s infinite ease-in-out; */
}

@keyframes lightSweep {
  0% {
    left: -150%;
    opacity: 0;
  }

  5% {
    opacity: 0.9;
  }

  20% {
    left: 100%;
    opacity: 0.7;
  }

  21%,
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ==== GOMBOK ==== */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
}

.button-container a {
  position: relative;
  padding: clamp(10px, 1.2vw, 12px) clamp(22px, 2vw, 28px);
  border: 2px solid #ff3333;
  border-radius: 8px;
  text-decoration: none;
  color: #ff3333;
  font-weight: 600;
  overflow: hidden;
  transition: all .3s ease;
  font-size: clamp(.9rem, 1.1vw, 1rem);
}

.button-container a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 51, 51, .4), transparent);
  transition: .5s;
}

.button-container a:hover::before {
  left: 100%;
}

.button-container a:hover {
  color: #fff;
  box-shadow: 0 0 25px #ff3333;
  transform: scale(1.05);
}

/* ==== LÁBLÉC ==== */
/* .footer {
  position: relative;
  width: 100%;
  margin-top: 50px;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  font-family: 'Audiowide', cursive;
  color: #aaa;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.footer a {
  color: #ff3333;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff3333;
} */

.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #aaa;
  font-size: 13px;
  font-family: 'Audiowide', cursive;
  z-index: 2;
  background-color: transparent;
}

.footer a {
  color: #ff3333;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ==== RESPONSIVE ==== */
@media (max-width:768px) {
  .hamburger {
    display: flex;
    margin-right: 40px;
  }

  .pulse-logo {
    position: absolute;
    width: 90px;
    top: 14px;
    left: 14px;
  }

  header {
    padding: 12px 26px;
  }

  .content {
    margin-top: 100px;
  }

  .footer {
    font-size: 12px;
    bottom: 10px;
  }

  .button-container{
    display: none !important;
  }
}

/* ==== MODAL ==== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease-in-out;
}

.modal-content {
  background: radial-gradient(circle at center, #1a0000 0%, #000 90%);
  padding: 35px 45px;
  border: 2px solid #ff3333;
  border-radius: 12px;
  color: #fff;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
  animation: pulseModal 6s infinite alternate;
  text-align: left;
}

@keyframes pulseModal {
  0% {
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
  }

  50% {
    box-shadow: 0 0 45px rgba(255, 51, 51, 0.8);
  }

  100% {
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
  }
}

.close-btn {
  float: right;
  font-size: 32px;
  color: #ff3333;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #fff;
}

.modal h2 {
  text-align: center;
  color: #ff3333;
  margin-bottom: 20px;
  font-family: 'Audiowide', cursive;
  text-shadow: 0 0 15px #ff3333;
}

.modal ul {
  list-style: none;
  padding-left: 0;
}

.modal ul li {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ==== NAVBAR ELTÜNTETÉSE CSAK GÉPEN ==== */
@media (min-width: 769px) {
  header {
    display: none !important;
  }
}
