﻿
/* ===== mp- PREFİX: diğer sayfaları etkilemez ===== */
:root {
    --mp-brand: #E31E64;
    --mp-bg: #ffffff;
    --mp-text: #eaeaf2;
}

/* Splash */
.mp-splash {
    position: fixed;
    inset: 0;
    background: var(--mp-bg);
    z-index: 9999;
    transition: opacity .6s ease, visibility .6s ease;
}

.mp-splash-logo {
    width: 160px;
    max-width: 38vw;
    filter: drop-shadow(0 6px 24px rgba(227,30,100,.4));
    animation: mpPop .7s ease both;
}

@keyframes mpPop {
    0% {
        transform: scale(.94);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.mp-splash--hide {
    opacity: 0;
    visibility: hidden;
}

/* Sayfa görünürlüğü */
.mp-opacity-0 {
    opacity: 0;
}

.mp-fade-in {
    animation: mpFadeIn .6s ease forwards;
}

@keyframes mpFadeIn {
    to {
        opacity: 1
    }
}

/* Hero (mevcut slider’ın üstüne hafif karartma ve metin okunabilirliği) */
.mp-hero {
    position: relative;
    background: #000;
}

    .mp-hero .mp-hero-scrim {
        pointer-events: none;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.65) 100%);
        z-index: 2; /* slider görselinin üstünde, yazının altında kalmasını istersen 1 yap */
    }

    /* Slider içindeki yazılar çoğu temada açık renkle daha iyi görünür —
     alt tarafta caption varsa güçlendirmek için: (yalnız bu sayfada etkili) */
    .mp-hero .carousel-caption,
    .mp-hero [class*="caption"] {
        text-shadow: 0 4px 24px rgba(0,0,0,.6);
    }

/* Övgü ikon alanı için ufak “hover” parlatma (AltIcon’da kullanmak istersen) */
.mp-feature-boost {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 6px 30px rgba(0,0,0,.25);
}

    .mp-feature-boost:hover {
        transform: translateY(-3px);
        border-color: rgba(227,30,100,.35);
        box-shadow: 0 10px 36px rgba(227,30,100,.18);
    }

/* Koyu zeminde bootstrap ok ikonları görünür olsun (sadece hero içi) */
#mp-page .mp-hero .carousel-control-prev-icon,
#mp-page .mp-hero .carousel-control-next-icon {
    filter: invert(1) grayscale(1);
}
/* Splash logo - dış beyaz glow + parıltı çizgisi */
.mp-splash-logo {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* Boyut ayarı */
    width: 660px; /* Masaüstü boyutu */
    max-width: 40vw; /* Ekran genişliğinin %40’ını geçmesin */
    height: auto;
    /* Outer Glow */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9)) drop-shadow(0 0 16px rgba(255,255,255,0.6)) drop-shadow(0 0 32px rgba(255,255,255,0.4));
}

@media (max-width: 768px) {
    .mp-splash-logo {
        width: 160px; /* mobilde küçült */
    }
}


    /* Parıltı çizgisi */
    .mp-splash-logo::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -30%;
        width: 40%;
        height: 200%;
        background: linear-gradient( 120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100% );
        transform: skewX(-20deg);
        animation: mpShine 1.5s ease-in-out 0.3s forwards;
    }

/* Shine animasyonu */
@keyframes mpShine {
    0% {
        left: -30%;
    }

    100% {
        left: 130%;
    }
}

