/* 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;
    display: block;
    border-radius: 35px;
    margin: 0 auto;
}

/* Varsayılan: yatay hero */
.hero-img.horizontal {
    display: block;
    height: auto;
}
.hero-img.vertical {
    display: none;
}

/* 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;
    }

    @media (orientation: portrait) {
        .hero-img.horizontal {
            display: none;
        }

        .hero-img.vertical {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

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

    .herro {
    padding-bottom: 25px;
    }

    /* Dikey mod */
    @media (orientation: portrait) {
        .hero-img.horizontal {
            display: none;
        }
        .hero-img.vertical {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
    }

    /* Yatay mod */
    @media (orientation: landscape) {
        .hero-img.horizontal {
            display: block;
            width: 100%;
            height: auto;
        }
        .hero-img.vertical {
            display: none;
        }
    }
}

/* 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;
        display: block;
        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;
        display: block;
        margin: 0;
        border-radius: 35px;
    }
}