* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a472a;
    --secondary-color: #c41e3a;
    --accent-color: #2d5a3d;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0d1f15;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.nav-title {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.15);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    padding: 100px 20px;
}

.hero-overlay {
    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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-description {
    background: rgba(255,255,255,0.1);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
}

.hero-description p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a01830;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 100px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Rapport Section */
.rapport-section {
    background: var(--bg-light);
}

.communique {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.communique-header {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.date-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.communique-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.communique-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.violations-list {
    margin: 20px 0 20px 30px;
}

.violations-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1), rgba(45, 90, 61, 0.1));
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
}

.release-info {
    background: rgba(196, 30, 58, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.rapport-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.preview-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.rapport-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.rapport-actions {
    text-align: center;
}

.rapport-actions h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rapport-actions p {
    margin-bottom: 25px;
    color: #666;
}

.coming-soon {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Lettre Section */
.lettre-section {
    background: white;
}

.lettre-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

.lettre-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.lettre-preview {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
}

.lettre-preview h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.lettre-preview > ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.lettre-preview li {
    margin-bottom: 8px;
}

.lettre-excerpt {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.demands {
    background: rgba(26, 71, 42, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.demands h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.demands ul {
    margin-left: 20px;
}

.sign-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-light);
}

.sign-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sign-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.sign-info {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px !important;
}

.sources {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.sources h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    list-style: none;
}

.sources-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sources-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.palestine {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .rapport-preview,
    .lettre-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .communique {
        padding: 25px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
