/* ARKA PLAN VE ANA DÜZEN */
.intro-wrapper {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow: hidden;
    }

    /* Arka plandaki flu görsel (Sergi Kapağı) */
.intro-bg {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-image: url('{% if exhibition.cover_image %}{{ exhibition.cover_image.url }}{% endif %}');
        background-size: cover;
        background-position: center;
        filter: blur(8px) brightness(0.4); /* Flu ve karanlık efekt */
        z-index: -1;
        transform: scale(1.1); /* Kenarlarda beyazlık olmasın diye büyüttük */
    }

    /* ORTADAKİ KART TASARIMI */
    .intro-card {
        background-color: rgba(255, 255, 255, 0.95); /* Hafif saydam beyaz */
        max-width: 600px;
        width: 100%;
        border-radius: 12px;
        padding: 50px 30px;
        /* text-align: center; */
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        font-family: 'Times New Roman', serif;
        color: #333;
        position: relative;
    }

    /* SANATÇI FOTOĞRAFI */
    .artist-img-box {
        width: 160px;
        height: 160px;
        margin: 0 auto 25px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .artist-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* YAZILAR */
    .artist-name {
        font-size: 2.2rem;
        margin: 0 0 5px;
        color: #111;
        text-align: center;
    }

    .artist-title {
        font-style: italic;
        color: #666;
        margin-bottom: 25px;
        font-size: 1rem;
        text-align: center;
    }

    .intro-text {
        font-family: sans-serif;
        line-height: 1.6;
        color: #444;
        margin-bottom: 30px;
        font-size: 1rem;
    }

    /* SOSYAL MEDYA BUTONLARI */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .social-btn {
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-family: sans-serif;
        font-weight: bold;
        transition: transform 0.2s;
    }
    
    .social-btn:hover {
        transform: translateY(-3px);
    }

    .btn-insta {
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        color: white;
    }

    .btn-web {
        background-color: #333;
        color: white;
    }

    /* AYIRICI ÇİZGİ */
    .divider {
        height: 1px;
        background-color: #ddd;
        margin: 0 auto 30px;
        width: 60%;
    }

    /* SERGİYİ GEZ BUTONU (ANA AKSİYON) */
    .enter-exhibition-btn {
        display: inline-block;
        background-color: #111;
        color: #fff;
        text-decoration: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-family: sans-serif;
        font-weight: bold;
        font-size: 1.1rem;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border: 2px solid #111;
    }

    .enter-exhibition-btn:hover {
        background-color: transparent;
        color: #111;
        cursor: pointer;
    }
