/* Yazı Tipleri */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Görseldeki gibi koyu arka plan */
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

/* --- Üst Resim Alanı (Hero) --- */
.detail-hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Ekranın %60'ını kaplar */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Resmi karartma efekti */
    z-index: 2;
}

.detail-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.detail-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 15px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- İçerik Alanı --- */
.detail-body {
    padding: 80px 20px;
    background-color: #2c0873;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 100%;
}

.agenda-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
    color: #ffffff;
}

.agenda-title strong {
    color: #ffffff;
    border-bottom: 2px solid #555;
}

.description-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
    text-align: justify; /* Metni iki yana yaslar */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .detail-header-content h1 { font-size: 3rem; letter-spacing: 5px; }
    .detail-hero { height: 50vh; }
    .agenda-title { font-size: 1.1rem; }
}