/* HERO SECTION */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 0px 20px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* HERO TEXT */

.hero-text h1 {
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text span {
  color: #ff3b3b;
}

.hero-text p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 700px;
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

a:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 60, 60, 0.35);
  transition: .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-primary:focus {
  outline: none !important;
  border: none !important;
}

.btn-secondary {
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  background: gray;
  color: #ddd;
  transition: all .2s ease-in-out;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #ff7a18, #ff4b2b);
  transition: all .2s ease-in-out;
  transform: translateY(-2px);
  color: white;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-primary:active,
.btn-secondary:active {
  outline: none !important;
  /* Eltünteti az alapértelmezett kék körvonalat */
  box-shadow: none !important;
  /* Eltünteti a Bootstrap-féle külső árnyékot */
  border-color: transparent;
  /* Ha van keret, azt is semlegesíti */
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
}

/* HERO IMAGE */

.hero-image {
  display: flex;
  justify-content: center;
}

@keyframes float {

  0% {
    transform: translate(0, 0) rotate(20deg);
  }

  50% {
    transform: translate(0px, -20px) rotate(20deg); 
  }

  100% {
    transform: translate(0, 0) rotate(20deg);
  }

}

/*
@keyframes float {

  0% {
    transform: translate(0, 0) rotate(-20deg);
  }

  50% {
    transform: translate(0px, -20px) rotate(-20deg); 
  }

  100% {
    transform: translate(0, 0) rotate(-20deg);
  }

}
*/

.hero-image img {
  width: 100%;
  max-width: 600px;
  animation: float 5s ease-in-out infinite;

}

/* RESPONSIVE HERO */

@media(max-width:1280px) {

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: auto;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-image {
    display: none;
  }

}

section {
  padding: 120px 20px;
}

.section-container {
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
  line-height: 1.6;
}



/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}


.feature-card {
  background: #1a1a1a41;
  padding: 30px 25px;
  border-radius: 16px;
  border: 1px solid #222222a2;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feature-card .text-box{
    display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.feature-card:hover {
  border-color: #ff3b3b;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(255, 60, 60, 0.25);
}

/* IMAGE IN CARD */

.feature-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 20%;
  margin-bottom: 20px;
  pointer-events: none;
  user-select: none;
}

/* CARD TEXT */

.feature-card h3 {
  color: #ff3b3b;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card p {
  color: #aaa;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* LINKS & BUTTONS */

.feature-card a.v-button {
  
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  padding: 8px 14px;
  border-radius: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.feature-card a.v-button:hover {
  transform: translateY(-2px);
}

.feature-card a.qc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(90deg, #4b4b4b, #616161);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.feature-card a.qc:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 2px 6px rgba(255, 60, 60, 0.6);
  background: linear-gradient(135deg, #e0e0e0, #5f5f5f);
}

/* RESPONSIVE GRID */

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.highlight {
  font-weight: 700;
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff1f1f;
}


#features {
  background-color: rgba(9, 9, 9, 0.7);
  padding-top: 0px;
  padding-bottom:0px;
}

.features {
  background: #151515;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 160px;
}

.more {
  display: flex;
  justify-content: center;
  align-items: center; /* Függőleges középre igazítás */
  transition: transform .3s ease-in-out;
  backface-visibility: hidden;
  transform: scale(1.05);
  text-align: center;
}

.more a {
  transition: color .3s ease-in-out; /* Csak a színt animáljuk a szövegen */
  color: rgb(164, 164, 164);
  letter-spacing: 0.025in;
  text-decoration: none;
}

.more:hover {
  transform: scale(1.1);
}

.more:hover a {
  color: #fff;
}


/**/





/* FAQ SECTION */

.faq-section{
  padding: 100px 20px;
  margin:0 auto;
  background: #11111197;
  backdrop-filter: blur(5px);
  border-radius: 50px;
  position: relative;
  box-shadow: 0 2px 6px rgba(255, 60, 60, 0.6);
  max-width: 1500px; /* adjust to desired width */

}

@media(max-width:850px) {
  .faq-section{
    padding: 40px 10px 80px 10px;
  }
}

.faq-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
}

/* FAQ LIST */

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item{
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question{
  padding: 20px 25px;
  font-weight: 600;
  color: #ff3b3b;
  position: relative;
}

.faq-question::after{
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after{
  transform: rotate(45deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #ccc;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer{
  max-height: 200px; /* adjust if needed */
  padding: 15px 25px 25px 25px;
}

/* RIGHT STACKED TEXT */

.faq-title{
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #ff3b3b;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
}

.faq-title span{
  display: block;
  margin-bottom: 10px;
}

/* Glow behind text */
.faq-glow{
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,59,59,0.85), transparent);
  filter: blur(80px);
  top: 40px;
  left: -40px;
  z-index: -1;
}

.shoe-glow{
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 219, 59, 0.85), transparent); /*   background: radial-gradient(circle, rgba(255,59,59,0.85), transparent); */
  filter: blur(80px);
  top: 380px;
  right: 440px;
  z-index: -1;
}

/* RESPONSIVE */

@media(max-width: 950px){
  .faq-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-title{
    margin-top: 40px;
    align-items: center;
  }

  .faq-glow{
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }
}

/* SECTION (centered + not broken) */
.socials-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}
/* INNER CONTAINER */
.socials-inner {
  max-width: 700px;   /* 👈 keeps it centered and tight */
  width: 100%;
  text-align: center;
}

/* TITLE */
.socials-title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

/* SUBTEXT */
.socials-sub {
  color: #aaa;
  margin-bottom: 40px;
}

/* PANEL (floating glass look, but stable) */
.socials-panel {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  padding: 25px;
  border-radius: 18px;

  background: rgba(20,20,20,0.1);
  backdrop-filter: blur(2px);

  border: 1px solid #373737;

  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* ITEMS */
.social-item {
  width: 100px;
  height: 100px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.social-item a:active{
  transform: scale(.98);
}

.social-item i {
  font-size: 24px;
  margin-bottom: 6px;
}

/* HOVER (clean, no chaos) */
.social-item:hover {
  transform: translateY(-6px);
  color: white;
  border:none;
}

#discord.social-item:hover {
  background-color: #7289da; 
}
#tiktok.social-item:hover {
  background: linear-gradient(90deg, #69c9d0, #ee1d52) !important;
}
#instagram.social-item:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}
#youtube.social-item:hover {
  background: linear-gradient(90deg, #ff0000, #cc0000) !important;
}

/* FULL-WIDTH SOCIAL BUTTON */
.social-item.full-width {
  flex: 0 0 100%;
  width: 100%;
  max-width: calc(100px * 4 + 18px * 3); /* 4 buttons + 3 gaps */
}

.social-item.full-width img {
  max-width: 96px;
}

.social-item.full-width:hover {
  background: linear-gradient(90deg, #9932cc, #8a2be2) !important;
}

/* MOBILE */
@media (max-width: 600px) {
  .social-item {
    width: 85px;
    height: 85px;
  }

  .social-item.full-width {
    max-width: calc(85px * 4 + 18px * 3);
  }

  .socials-title {
    font-size: 32px;
  }
}