/* ===========================================================
   HERO SECTION
=========================================================== */


/* ===========================================================
   HERO BASE
=========================================================== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url("/img/hero/hero-1920.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Arka plan overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 1;
}

/* İçerik */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 20px;
}

/* ===========================================================
   HERO TYPOGRAPHY
=========================================================== */

.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);
}

/* Satır kırılımı */
.hero-content .break {
    display: block;
    margin-top: 2px;
}

/* ===========================================================
   HERO CTA
=========================================================== */

.hero-button {
    display: inline-block;
    background: transparent;
    border: 2px solid #CC8A00;
    padding: 12px 32px;
    border-radius: 8px;
    color: white;
    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: #CC8A00;
    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: 1200px) {
    .hero {
        background-image: url("/img/hero/hero-1200.png");
    }
}

@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);
        background-image: url("/img/hero/hero-600.png");
    }

    .hero-content .break {
        display: inline;
        margin-top: 0;
    }

    .hero h1 { font-size: 28px; }
    .hero h2 { font-size: 18px; }

    .hero-button {
        font-size: 16px;
        padding: 9px 22px;
    }

    .hero-subtext {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .hero {
        background-image: url("/img/hero/hero-375.png");
    }
}



/*------------------------------------------ HERO - KURSLAR-------------------------------------------*/


.hero-lite{
  padding:80px 20px;
  text-align:center;
  background:#fff;
}
.hero-lite h1{font-size:42px;}
.hero-lite p{max-width:640px;margin:12px auto 24px;}
.hero-actions{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;}
.hero-cta{padding:14px 32px;border-radius:30px;background:#d98700;color:#fff;}
.hero-link{color:#d98700;}

.hero-lite{
  padding:60px 20px 50px;
  text-align:center;
  background:#fff;
}

.hero-lite h1{
  font-size:clamp(28px, 4vw, 44px);
  font-weight:600;
  letter-spacing:-0.5px;
  margin-bottom:12px;
  color:#d98700;
}

.hero-lite p{
  max-width:720px;
  margin:0 auto;
  font-size:clamp(14px, 2.5vw, 18px);
  line-height:1.6;
  color:#444;
}

/* Mobil optimizasyon */
@media(max-width:600px){
  .hero-lite{
    padding:45px 16px 40px;
  }
  .hero-lite h1{
    font-size:26px;
  }
}
.hero-lite-content{
  display:block;
}

