﻿/* GOOGLE FONTS (Layout’a dokunmadan fontu buradan çekmek istersen) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap");

/* --- Sayfa Özel CSS --- */
.poetry-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Başlık Alanı */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.page-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.divider-custom {
    width: 60px;
    height: 3px;
    background-color: #000;
    margin: 20px auto;
    border-radius: 2px;
}

/* Şiir Kartları Grid (4 Sütun Ayarı) */
.poem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Geniş Ekranlarda (Desktop) Kesinlikle 4 Tane Yan Yana Olsun */
@media (min-width: 1200px) {
    .poem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Glassmorphism Şiir Kartı */
.poem-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 50px 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

    .poem-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.15);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        border-color: #000;
    }

/* Kart İçeriği */
.poem-date {
    font-size: 0.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Lato", sans-serif;
    letter-spacing: 1px;
}

.poem-card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.poem-excerpt {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    white-space: pre-line;
}

/* Alıntı için tırnak işareti dekoru */
.poem-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
}

/* Buton */
.btn-read {
    align-self: flex-start;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-read:hover {
        background: #000;
        border-color: #000;
        color: #fff;
    }

    .btn-read i {
        margin-left: 8px;
        font-size: 0.8em;
    }

/* Responsive */
@media (max-width: 991px) {
    .poem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .poem-grid {
        grid-template-columns: 1fr;
    }
}

/* --- KİLİTLİ KART YAPISI --- */
.locked-content-layer {
    filter: blur(8px);
    opacity: 0.6;
    user-select: none;
    pointer-events: none;
}

.locked-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.poem-card:hover .locked-overlay-layer {
    background: rgba(0,0,0,0.5);
}

.big-lock-icon {
    font-size: 6rem;
    color: #FFE338;
    filter: drop-shadow(0 0 15px rgba(255,193,7,0.8));
    margin-bottom: 15px;
}

.lock-text {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}
