:root{
  --brand:#340506;
  --white:#fff;
  --soft:rgba(255,255,255,.8);
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  height:100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--brand);
  color:var(--white);
}

/* =====================
   HERO (GIF)
===================== */
.hero{
  position:relative;
  height:70vh;
  overflow:hidden;
}

.hero-gif{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* GIF ÜZERİ KARARTMA */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(52,5,6,.25),
    rgba(52,5,6,.85)
  );
}

.hero-text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.hero-text h1{
  margin:0;
  font-size:clamp(22px,3vw,34px);
  font-weight:500;
}

.hero-text p{
  margin-top:10px;
  color:var(--soft);
  font-size:16px;
}

/* =====================
   ALT MARKA ALANI
===================== */
.brand{
  padding:60px 20px;
  background:var(--brand);
  text-align:center;
}

.logo{
  width:60%;
  max-width:520px;
  margin-bottom:20px;
}

.brand a{
  color:var(--soft);
  text-decoration:none;
  font-size:14px;
  letter-spacing:.3px;
}

/* MOBİL */
@media(max-width:768px){
  .hero{ height:65vh; }
  .logo{ width:80%; }
}
