﻿/* =========================================
   🎬 İYİLİK SAHNESİ - GALA PRÖMİYERİ (KUSURSUZ RESPONSIVE v8)
========================================= */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at center, #3a0000 0%, #0a0000 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* 🚨 SİLİK ARKA PLAN DOKUSU 🚨 */
.cinema-marquee {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
    opacity: 0.02;
    font-size: 150px;
    font-weight: 900;
    color: #ffffff;
    pointer-events: none;
    user-select: none;
}

/* GERİ BUTONU */
.stage-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 100;
}

.back-btn {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: white;
        color: #3a0000;
    }

/* BAŞLIK ALANI */
.premiere-header {
    text-align: center;
    padding-top: 10vh;
    margin-bottom: 5vh;
    position: relative;
    z-index: 50;
}

.premiere-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.premiere-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
}

/* 🚨 GALA SAHNESİ 🚨 */
.grand-showcase {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    height: 60vh;
    min-height: 500px;
    display: flex;
    gap: 30px;
    padding: 0 30px;
    position: relative;
    z-index: 50;
}

/* 🚨 BEMBEYAZ PREMIUM KARTLAR 🚨 */
.grand-door {
    background: #ffffff;
    flex: 1;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: pointer;
}

    /* CAM PARLAMASI EFEKTİ (SHINE) */
    .grand-door::before {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        transition: all 0.8s ease;
        z-index: 20;
        pointer-events: none;
    }

/* 🚨 MASAÜSTÜ İÇİN FAREYİ YORMAYAN ORANLAR 🚨 */
@media (min-width: 993px) {
    .grand-showcase:hover .grand-door {
        flex: 0.9;
        filter: brightness(0.7);
    }

    .grand-showcase .grand-door:hover {
        flex: 1.3;
        filter: brightness(1);
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.8);
        z-index: 10;
    }
}

.grand-door:hover::before {
    left: 200%;
    transition: left 0.8s ease-in-out;
}

.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.d-logo {
    width: 400px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
    transition: all 0.7s ease;
}

.grand-door:hover .logo-wrapper {
    top: 30%;
}

.grand-door:hover .d-logo {
    transform: scale(1.15);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* YAZILAR VE BUTON (AŞAĞIDA GİZLİ) */
.text-area {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.2, 1);
    z-index: 10;
}

.grand-door:hover .text-area {
    bottom: 40px;
    opacity: 1;
    transition-delay: 0.1s;
}

/* TASARIM DETAYLARI */
.door-badge {
    background: #f8f9fa;
    color: #1a1d20;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}

.door-desc {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
}

.d-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: white;
}

/* RENKLER */
.door-red:hover {
    box-shadow: 0 30px 70px rgba(192, 0, 0, 0.3);
}

.door-red .d-btn {
    background: #c00000;
    box-shadow: 0 10px 20px rgba(192, 0, 0, 0.2);
}

.door-red .door-badge {
    color: #c00000;
    background: #ffe5e5;
    border-color: #ffcccc;
}

.door-green:hover {
    box-shadow: 0 30px 70px rgba(46, 125, 50, 0.3);
}

.door-green .d-btn {
    background: #2e7d32;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.door-green .door-badge {
    color: #2e7d32;
    background: #e8f5e9;
    border-color: #c8e6c9;
}


/* =========================================
   📱 MOBİL İÇİN YAZILARI BUHARLAŞTIRAN SİHİR
========================================= */
@media (max-width: 992px) {
    /* Navbar toparlanıyor */
    .stage-nav {
        padding: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .back-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    /* Başlıklar küçülüyor */
    .premiere-header {
        padding-top: 12vh;
        margin-bottom: 3vh;
    }

    .premiere-title {
        font-size: 2.8rem;
    }

    .premiere-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .cinema-marquee {
        font-size: 20vw;
        top: 15%;
    }

    /* Sahne dikey düzene geçiyor */
    .grand-showcase {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        gap: 20px;
    }

    /* 🚨 SADECE LOGO VE BUTON KALACAĞI İÇİN KART BOYU KISALDI 🚨 */
    .grand-door {
        height: 320px;
        width: 100%;
        border-radius: 25px;
    }

        .grand-door:hover {
            transform: scale(1.02); /* Mobilde zıplama yapmaz */
            z-index: 10;
        }

    /* 🚨 İŞTE İSTEDİĞİN O KUSURSUZ MİNİMALİZM 🚨 */
    .door-badge, .door-desc {
        display: none !important; /* Yazılar ve rozet buharlaştı! */
    }

    /* Logo ve Buton Ortalaması (Yazı olmadığı için boşlukları ayarladık) */
    .d-logo {
        width: 220px;
        max-height: 160px;
    }

    .grand-door:hover .logo-wrapper {
        top: 38%; /* Logo eskisi kadar tepeye çıkmaz, ortalar */
    }

    .text-area {
        padding: 0 20px;
    }

    .grand-door:hover .text-area {
        bottom: 35px; /* Buton tatlı bir yere kayar */
    }

    /* Butonu mobilde biraz daha tombul ve jilet yaptık */
    .d-btn {
        padding: 14px 45px;
        font-size: 1.05rem;
        width: auto;
    }
}

/* Çok küçük telefonlar için (iPhone SE vs) */
@media (max-width: 480px) {
    .premiere-title {
        font-size: 2.2rem;
    }

    .grand-door {
        height: 280px;
    }

    .d-logo {
        width: 180px;
    }
}
