:root{
  --red:#ED1C24;
  --red-dark:#c8121a;
  --panel-dark:#0b0b0c;
}

*{box-sizing:border-box;margin:0;padding:0;}

html,body{
  width:100%;
  font-family:'Montserrat',Arial,sans-serif;
  background:#000;
  overflow-x:hidden;
}

.hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:680px;
  overflow:hidden;
}

/* ---------- background media ---------- */
.hero-media{
  position:absolute;
  inset:0;
}

.slides{
  position:absolute;
  inset:0;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.4s ease-in-out;
}

.slide.active{
  opacity:1;
}

.zemin-golge{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:60%;
  object-fit:cover;
  object-position:bottom;
  pointer-events:none;
}

/* ---------- content panel (desktop: overlay) ---------- */
.hero-panel{
  position:absolute;
  inset:0;
  z-index:3;
}

.hero-inner{
  width:100%;
  height:100%;
  max-width:1560px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:7vh 6.5vw 5vh;
}

.logo-wrap{
  max-width:600px;
  text-align:center;
}

.logo-crop{
  display:block;
  width:100%;
  max-width:500px;
  margin:0 auto;
  aspect-ratio:873/500;
  object-fit:cover;
  object-position:top;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.tagline{
  font-family:'Caveat','Segoe Script',cursive;
  font-weight:700;
  font-size:clamp(26px,2.6vw,38px);
  color:#fff;
  margin-top:-4px;
  padding-left:6px;
  display:inline-block;
  border-bottom:3px solid var(--red);
  transition:opacity .5s ease;
}

.bottom-content{
  width:100%;
}

.text-col{
  max-width:640px;
  margin-bottom:20px;
}

.heading-red{
  color:var(--red);
  font-weight:800;
  font-size:clamp(13px,1.15vw,17px);
  text-transform:uppercase;
  line-height:1.35;
  margin-bottom:10px;
  transition:opacity .5s ease;
  min-height:1.3em;
}

.body-text{
  color:#fff;
  font-weight:600;
  font-size:clamp(11px,.85vw,13px);
  line-height:1.55;
  margin-bottom:4px;
  transition:opacity .5s ease;
}

.bottom-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
}

.social{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:700;
  font-size:clamp(11px,.85vw,13px);
}

.social a{
  color:#fff;
  text-decoration:none;
}

.social a:hover{
  color:var(--red);
}

.social .social-x{
  display:flex;
  align-items:center;
}

.social .divider{
  color:#fff;
  opacity:.6;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-width:210px;
  height:54px;
  padding:0 20px;
  border:2px solid #fff;
  background:transparent;
  color:#fff;
  font-family:'Montserrat',Arial,sans-serif;
  font-weight:800;
  font-size:14px;
  letter-spacing:.3px;
  text-decoration:none;
  transition:background .25s ease,border-color .25s ease,color .25s ease;
}

.btn .arrow{
  width:26px;
  height:12px;
  color:#fff;
  flex-shrink:0;
}

.btn:hover{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

/* =====================================================
   MOBILE / TABLET — stacked layout (image banner + panel)
   ===================================================== */
@media (max-width:900px){

  .hero{
    height:auto;
    min-height:0;
    overflow:visible;
  }

  .hero-media{
    position:relative;
    inset:auto;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
  }

  .zemin-golge{
    display:none;
  }

  .hero-panel{
    position:relative;
    inset:auto;
    background:linear-gradient(180deg,#141414 0%,var(--panel-dark) 100%);
  }

  .hero-inner{
    height:auto;
    max-width:none;
    display:block;
    padding:32px 24px 40px;
  }

  .logo-wrap{
    max-width:320px;
    margin:0 auto 28px;
  }

  .bottom-content{
    text-align:center;
  }

  .text-col{
    max-width:460px;
    margin:0 auto 24px;
  }

  .heading-red{
    font-size:15px;
  }

  .body-text{
    font-size:13.5px;
  }

  .bottom-row{
    flex-direction:column;
    align-items:center;
    gap:22px;
  }

  .social{
    justify-content:center;
  }

  .buttons{
    width:100%;
    flex-direction:column;
  }

  .btn{
    width:100%;
    min-width:0;
  }
}

@media (max-width:420px){
  .hero-media{
    aspect-ratio:1/1;
  }
}
