/* ----------------------------------------------------------- */
/* HERO SECTION */
/* ----------------------------------------------------------- */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* SINEMATİK FADE */

}

/* Hero görünür olduğunda */


/* Karanlık overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    z-index: 1;

    /* Fade */
    opacity: 0;
    transition: opacity 1.2s ease;
}

body.hero-visible .hero-overlay {
    opacity: 1;
}

/* Metin alanı */
.hero-content {
    position: relative;
    z-index: 2;
    color: #f0e3d0;
    max-width: 900px;
    padding: 20px;
}

/* Başlıklar */
.hero h1 {
    font-size: 48px;
    font-family: 'Inter18BoldItalic', sans-serif;
    margin-bottom: 20px;
    text-shadow: 3px 3px 25px rgb(0, 0, 0);
}

.hero h2 {
    font-size: 26px;
    font-family: 'Inter18BoldItalic', sans-serif;
    font-weight: 300;
    margin-bottom: 35px;
    text-shadow: 3px 3px 25px rgba(0,0,0,1);
}

/* Button */
.hero-button {
    display: inline-block;
    background: transparent;
    border: 2px solid #f0e3d0;
    padding: 12px 32px;
    border-radius: 8px;
    color: #f0e3d0;
    font-size: 20px;
    font-family: 'Inter18Bold', sans-serif;
    text-decoration: none;
    transition: 0.25s ease;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-button:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.hero-subtext {
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.85);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 36px; }
    .hero h2 { font-size: 20px; }
    .hero-button { font-size: 18px; padding: 10px 26px; }
}

@media (max-width: 600px) {
    .hero { height: calc(100vh - 80px); }
    .hero h1 { font-size: 28px; }
    .hero h2 { font-size: 18px; }
    .hero-button { font-size: 16px; padding: 9px 22px; }
    .hero-subtext { font-size: 14px; }
}

/* HERO STAGE VIDEO */
.hero-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* HERO CONTENT FADE */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

body.hero-visible .hero-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER */
.hero-content h1 { transition-delay: 0.1s; }
.hero-content h2 { transition-delay: 0.25s; }
.hero-content .hero-button { transition-delay: 0.4s; }
.hero-content .hero-subtext { transition-delay: 0.55s; }

#heroVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


/* Desktop videoyu biraz yukarı al */
@media (min-width:769px){
  #heroVideo{
    object-position: center 80%;
  }
}



