/* Hero Section */
.hero {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 100px;
    padding-right: 100px;
}

.hero-container {
    position: relative;
    width: 100%;
}

/* Görseller */
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 35px;
    margin: 0 auto;
}

/* Varsayılan: ikisi de kapalı */
.hero-img.horizontal { display: none; }
.hero-img.vertical { display: none; }

/* Dikey (telefon / portrait) */
@media (orientation: portrait) {
    .hero-img.vertical { display: block; }
}

/* Yatay (desktop / landscape) */
@media (orientation: landscape) {
    .hero-img.horizontal { display: block; }
}

/* Hero yazısı kapalı */
.hero-text {
    display: none;
}

/* Tablet ≤1024px */
@media (max-width:1024px){
    .hero {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-img.horizontal {
        width: 100%;
        height: auto;
    }
}


/* Telefonlar ≤740px */
@media (max-width:740px){
    /* 🔽 TELEFONLARDA BOŞLUK */
    .hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero {
    padding-bottom: 25px;
    }
}

/* Desktop / Tablet yatay (1025px - 1599px) */
@media (min-width:1025px) and (max-width:1599px){
    .hero-container {
        border-radius: 35px;
        overflow: hidden;
        position: relative;
    }

    .hero-img.horizontal {
        width: 100%;
        height: auto;
        min-height: 800px;
        object-fit: cover;
        aspect-ratio: 16 / 9;
        margin: 0;
        border-radius: 35px;
    }
}

/* Geniş ekranlar ≥1600px */
@media (min-width:1600px){
    .hero-container {
        max-width: 1600px;       /* 1600px’den sonra genişleme yok */
        margin-left: auto;
        margin-right: auto;
        border-radius: 35px;
        overflow: hidden;
        position: relative;
        border-radius: 35px;
    }

    .hero-img.horizontal {
        width: 100%;
        height: auto;
        min-height: 800px;
        object-fit: cover;
        aspect-ratio: 16 / 9;
        margin: 0;
        border-radius: 35px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}