/* Mobilde hero görseli daha büyük ve yüksekliği daha az */
.hero-image-responsive {
    min-height: 350px;
    height: 350px;
}
@media (max-width: 767px) {
    .hero-image-responsive {
        /* Mobilde görseli belirgin büyüt */
        height: 70vh;
        min-height: 600px;
        max-height: none;
    }
    .hero-text-area-responsive {
        margin-top: 2.5rem;
    }
}
/* Hero yazı alanı responsive düzenleme */
.hero-text-area-responsive {
    border-radius: 2.5rem 2.5rem 0 0;
    margin-top: 2.5rem;
    margin-bottom: 0;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.12);
}
@media (min-width: 1024px) {
    .hero-text-area-responsive {
        margin-top: 0;
        margin-bottom: 0;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        align-self: stretch;
    }
}
@media (max-width: 767px) {
    .hero-text-area-responsive {
        margin-top: 2.5rem;
        max-width: 90vw;
        border-radius: 2.5rem 2.5rem 0 0;
        box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
    }
}

@media (min-width: 1024px) {
    .hero-image-responsive {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Homepage: MC-like hero layout (image full width + dark content band) */
.mc-hero {
    padding-top: 88px; /* header space */
}
.mc-hero-image {
    width: 100%;
    height: 52vh;
    min-height: 320px;
    overflow: hidden;
}
.mc-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mc-hero-content {
    background: #181818;
    color: #fff;
    padding: 3.5rem 1.5rem;
}
@media (min-width: 1024px) {
    .mc-hero {
        padding-top: 96px;
    }
    .mc-hero-image {
        height: 62vh;
        min-height: 520px;
    }
    .mc-hero-content {
        padding: 5.5rem 0;
    }
    .mc-hero-content-inner {
        max-width: 72rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
}
/* Anasayfa büyük logo */
.homepage-logo-big {
    width: 8rem !important;
    height: 8rem !important;
    max-width: 11vw;
    max-height: 11vw;
    min-width: 5rem;
    min-height: 5rem;
    z-index: 30;
}

@media (min-width: 1024px) {
    .homepage-logo-big {
        width: 11rem !important;
        height: 11rem !important;
    }
}
[x-cloak] {
    display: none !important;
}

/* Anasayfa hero başlık ve açıklama sağa hizalı ve daha küçük */
.homepage-hero-text {
    text-align: right !important;
}
.homepage-hero-text h1 {
    font-size: 1.7rem !important;
    text-align: right !important;
}
.homepage-hero-text p {
    font-size: 0.85rem !important;
    text-align: right !important;
}
