/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Genel Tema: Koyu Siyah/Gri Arka Plan, Beyaz Metin */
body {
    font-family: "Inter", sans-serif;
    background: #101010; /* Koyu Siyah */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Filistin Bayrağı Dalgalanma Animasyonu */
.flag-animation {
    position: fixed;
    top: 0;
    left: 0px;
    width: 60px;      /* ✅ Genişlik küçültüldü (100 → 60) */
    height: 36px;     /* ✅ Yükseklik küçültüldü (60 → 36) */
    z-index: 1000;
    opacity: 0.7;     /* ✅ %70 saydamlık eklendi */
}

.flag-stripe {
    height: 12px;     /* ✅ Yeni yüksekliğe göre 36/3 = 12px */
    width: 100%;
}
.flag-stripe.black { background: #000000; }
.flag-stripe.white { background: #ffffff; }
.flag-stripe.green { background: #00732f; }

.flag-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;   /* ✅ 30 → 18 */
    border-bottom: 18px solid transparent;/* ✅ 30 → 18 */
    border-left: 24px solid #ce1126;      /* ✅ 40 → 24 */
}

@keyframes flagWave {
    0% { transform: translateX(-60px) rotate(0deg); } /* ✅ Boyuta göre ayarlandı */
    100% { transform: translateX(calc(100vw + 60px)) rotate(360deg); }
}


/* Header */
.header {
    background-image: linear-gradient(135deg, rgba(206, 17, 38, 0.75) 0%, rgba(139, 0, 0, 0.75) 100%),
                     url("foto.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

/* Header Grain Efekti */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.title {
    font-family: "Amiri", serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
    font-family: "Impact", sans-serif; /* ✅ Times New Roman */
}

.date {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 1;
    font-family: "Impact", sans-serif; /* ✅ Times New Roman */
}

/* 🕊️ Ateşkes Bölümü Tasarımı */
.peace-panel {
    background: #ececec;
    padding: 30px;
    margin: 25px auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 900px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.peace-panel:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Fotoğraf Bölümü */
.peace-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Metin Bölümü */
.peace-text h2 {
    font-size: 1.8em;
    color: #007a33;
    margin-bottom: 10px;
    font-weight: 700;
}

.peace-text p {
    color: #222;
    font-size: 1.1em;
    line-height: 1.6em;
    margin-bottom: 8px;
}

.peace-text strong {
    color: #c00000;
}

/* Ayet Bölümü */
.peace-verse {
    margin-top: 25px;
    background: #f5f5f5;
    border-left: 4px solid #007a33;
    padding: 15px 20px;
    border-radius: 12px;
}

.peace-verse .arabic {
    font-size: 1.2em;
    font-weight: 600;
    color: #222;
    direction: rtl;
    text-align: right;
    margin-bottom: 10px;
    font-family: "Amiri", serif;
}

.peace-verse .translation {
    font-size: 1em;
    color: #333;
    line-height: 1.6em;
}




/* Main Content */
.main {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00732f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

/* Statistics Section */
.stats-section {
    margin-bottom: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun */
    gap: 20px;
    margin-top: 30px;
}

/* Ortadaki kutu (grouped-stats) için düzenleme */
.grouped-stats {
    display: flex; /* İçindeki elemanları yan yana dizer */
    flex-direction: row; 
    padding: 0; /* İç dolguyu kaldırıp içeriği tamamen kaplamasını sağlamak için */
    overflow: hidden; /* Kenarlıkların taşmasını engellemek için */
    position: relative;
    justify-content: center;
}

/* Çocuk ve Kadın bölümlerini yan yana eşit olarak bölmek */
.grouped-stats .grouped-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; 
    padding: 15px; 
    text-align: center;
}

/* Sayıların ve etiketlerin hizalanması için */
.grouped-stats .stat-number {
    font-size: 2.5rem; /* Sayı boyutunu koru */
}

.grouped-stats .stat-label {
    font-size: 1rem; /* Etiket boyutunu koru */
    margin-top: 5px;
}

/* İstenirse bu iki kartın ortasına küçük bir dikey ayırıcı ekleyebilirsiniz.
   Şu an "görünmez bölme" istendiği için bu CSS pasif bırakılmıştır.
   Eğer görsel olarak bir ayrım isterseniz:
*/
.grouped-stats::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1); /* Hafif görünür ayırıcı */
}

.stat-card {
    background: rgba(30, 30, 30, 0.85); 
    border-radius: 20px;
    padding: 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Kırmızı (Şehit) Vurgusu */
.stat-card.total-deaths, .stat-card.children-women {
    border-left: 5px solid #ce1126; 
}

/* Sarı (Dikkat) Vurgusu */
.stat-card.daily-deaths {
    border-left: 5px solid #ffd700;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ce1126; /* Kırmızı Sayı Vurgusu */
}

.stat-card.daily-deaths .stat-number {
     color: #ffd700; /* Günlük ortalama için sarı vurgu */
}


.stat-label {
    font-size: 1.3rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(206, 17, 38, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Quotes Section */
.quotes-section {
    margin-bottom: 100px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.quote-card {
    background: rgba(0, 115, 47, 0.1); 
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 115, 47, 0.3);
    animation: fadeInUp 1s ease-out;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 115, 47, 0.2);
}

.quote-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    color: #00732f; /* Yeşil Vurgu */
}

.quote-header h3 {
    font-size: 1.6rem;
    color: #00732f;
}

.quote-text.arabic {
    font-family: "Amiri", serif;
    font-size: 1.5rem;
    text-align: right;
    direction: rtl;
    color: #0df16c; /* Arapça metin Yeşil */
    font-weight: 600;
    border-right: 3px solid #00732f; /* Arapça metin yanında Yeşil çizgi */
    padding-right: 15px;
}

.quote-translation {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 15px;
}

.quote-source {
    text-align: right;
    font-weight: 600;
    color: #ffd700;
    font-size: 1rem;
}

/* Boycott Section */
.boycott-section {
    margin-bottom: 80px;
    text-align: center;
    align-items: center;
}

.boykot-card {
    background: rgba(30, 30, 30, 0.85); 
    width: 90%;
    height: 100%;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center; 
    justify-content: space-around; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
    transition: all 0.3s ease; 
    padding-bottom: 100px;
}

.boycott-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.boycott-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ce1126; /* Kırmızı Vurgu */
}

.boycott-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.boycott-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ce1126, #8b0000);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(206, 17, 38, 0.5);
    text-transform: uppercase;
}

.boycott-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.7);
}

.arrow { margin-left: 10px; transition: transform 0.3s ease; }
.boycott-link:hover .arrow { transform: translateX(5px); }

.palestine-flag {
    width: 150px;
    height: 100px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin: auto; 
    align-self: center; 
    flex-shrink: 0; 
    padding-bottom: 100px;
}

.flag-part { position: absolute; width: 100%; }

.black-stripe { top: 0; height: 33.33%; background: #000000; }
.white-stripe { top: 33.33%; height: 33.33%; background: #ffffff; }
.green-stripe { top: 66.66%; height: 33.33%; background: #00732f; }

.red-triangle {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 75px solid #ce1126;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations ve Responsive Design */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .subtitle { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .quotes-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .boycott-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding: 40px 20px; 
        justify-content: center; 
    }
    .palestine-flag { 
        width: 100px; 
        height: 66px; 
        margin-top: 30px; 
    }
    .section-title { font-size: 2.5rem; }
    .stat-card { padding: 30px 20px; }
}

.date-since {
    font-family: "Impact", sans-serif;
    font-size: 40px;
    color: #f7f7f7; /* Açık renk */
    margin-top: 5px;
}

.date-since strong {
    font-weight: 900;
    color: #007A3D;
    -webkit-text-stroke: 1.5px #660606;

}