/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Arapça font desteği */
[lang="ar"], [dir="rtl"] {
    font-family: 'Noto Sans Arabic', Arial, sans-serif;
}

/* Konteyner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 2px solid #c41e3a;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c41e3a;
}

/* Dil seçici */
.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.3);
}

.lang-btn.active {
    background: #c41e3a;
    color: white;
    border-color: #c41e3a;
}

/* Ana içerik */
main {
    margin-top: 80px;
}

/* Hero bölümü */
.hero {
    background: linear-gradient(135deg, rgba(40,40,40,0.95), rgba(20,20,20,0.9)), 
                url('https://images.unsplash.com/photo-1586473219010-2ffc57b0d282?w=1920&h=1080&fit=crop&crop=center&auto=format&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-quote-container {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    border-left: 4px solid #c41e3a;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.quote-author {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #009639;
    opacity: 0.9;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    opacity: 0.95;
    line-height: 1.7;
}

.stats-preview {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #c41e3a;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Bölümler */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c41e3a, #009639, #000000);
    border-radius: 2px;
}

/* Gazeteciler bölümü */
.journalists-section {
    background: white;
}

.search-container {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.search-container input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: #2c5530;
}

.journalists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.journalist-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border: 1px solid rgba(44,85,48,0.1);
    position: relative;
    overflow: hidden;
}

.journalist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(44,85,48,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journalist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,85,48,0.15);
    border-color: rgba(44,85,48,0.2);
}

.journalist-card:hover::before {
    opacity: 1;
}

.journalist-card[data-status="killed"] {
    border-left-color: #dc3545;
}

.journalist-card[data-status="injured"] {
    border-left-color: #ffc107;
}

.journalist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.journalist-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.martyred {
    background: #dc3545;
    color: white;
}

.status-badge.injured {
    background: #ffc107;
    color: #000;
}

.journalist-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.journalist-info strong {
    color: #333;
}

.journalist-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.journalist-description p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

.journalist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #c41e3a;
    box-shadow: 0 4px 15px rgba(196,30,58,0.3);
    position: relative;
}

.journalist-image::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #009639;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journalist-card:hover .journalist-image::after {
    opacity: 1;
}

.journalist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.journalist-card:hover .journalist-image img {
    filter: grayscale(0%);
}

/* İstatistikler bölümü */
.statistics-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(44,85,48,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2c5530;
    border: 1px solid rgba(44,85,48,0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #90ee90, #2c5530);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44,85,48,0.15);
    border-color: rgba(44,85,48,0.2);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card h3 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
}

/* Timeline bölümü */
.timeline-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c41e3a, #009639, #000000);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(196,30,58,0.3);
}

.timeline-event {
    margin-bottom: 6rem;
    position: relative;
    width: 45%;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(196,30,58,0.1);
    transition: all 0.3s ease;
}

.timeline-event:nth-child(odd) {
    left: 0;
    border-left: 4px solid #c41e3a;
}

.timeline-event:nth-child(even) {
    left: 55%;
    border-right: 4px solid #009639;
}

.timeline-event:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(196,30,58,0.15);
    border-color: rgba(196,30,58,0.3);
}

.timeline-event::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c41e3a, #009639);
    border: 4px solid white;
    box-shadow: 0 0 0 3px #1a1a1a, 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3;
    transform: translateY(-50%);
}

.timeline-event:nth-child(odd)::before {
    right: -32px;
}

.timeline-event:nth-child(even)::before {
    left: -32px;
}

.timeline-event::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c41e3a, #1a1a1a);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-event:nth-child(odd)::after {
    right: -30px;
}

.timeline-event:nth-child(even)::after {
    left: -30px;
}

.timeline-date {
    font-size: 1rem;
    color: #c41e3a;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid #c41e3a;
}

footer p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.dedication {
    font-weight: 600;
    font-size: 1.2rem !important;
    color: #009639;
}

/* RTL (Arapça) desteği */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .journalist-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-quote {
    border-left: none;
    border-right: 4px solid #90ee90;
}

[dir="rtl"] .timeline::before {
    left: auto;
    right: 30px;
}

[dir="rtl"] .timeline-event:nth-child(odd) {
    left: 55%;
    border-left: none;
    border-right: 4px solid #c41e3a;
}

[dir="rtl"] .timeline-event:nth-child(even) {
    left: 0;
    border-right: none;
    border-left: 4px solid #009639;
}

[dir="rtl"] .timeline-event:nth-child(odd)::before {
    right: auto;
    left: -32px;
}

[dir="rtl"] .timeline-event:nth-child(even)::before {
    left: auto;
    right: -32px;
}

[dir="rtl"] .timeline-event:nth-child(odd)::after {
    right: auto;
    left: -30px;
}

[dir="rtl"] .timeline-event:nth-child(even)::after {
    left: auto;
    right: -30px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 2rem;
    }
    
    .journalists-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-event:nth-child(odd),
    .timeline-event:nth-child(even) {
        left: 0;
        width: calc(100% - 4rem);
        border-left: 4px solid #c41e3a;
        border-right: none;
        margin-left: 3rem;
        margin-right: 0;
    }
    
    .timeline-event::before {
        left: -32px;
        right: auto;
    }
    
    .timeline-event::after {
        left: -30px;
        right: auto;
    }
    
    .timeline::before {
        left: 20px;
        transform: none;
    }
    
    [dir="rtl"] .timeline::before {
        right: 20px;
    }
    
    [dir="rtl"] .timeline-event {
        padding-right: 60px;
    }
    
    [dir="rtl"] .timeline-event::before {
        right: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    main {
        margin-top: 120px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-quote {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .stat-item {
        min-width: 250px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .journalist-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .big-number {
        font-size: 2.5rem;
    }
}