@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
        
:root {
    --primary-color: #0e4383;
    --secondary-color: #e4a12f;
    --accent-color-1: #27ae60;
    --accent-color-2: #c0392b;
    --accent-color-3: #2980b9;
    --accent-color-4: #8e44ad;
    --accent-color-5: #d35400;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-text: #333333;
    --light-text: #666666;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    direction: rtl;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: #000;
}

.nav {
    display: flex;
    gap: 1.25rem;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-size: 1.125rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.about-button {
    background-color: #3c3c10;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-button:hover {
    background-color: #5a5a18;
}

/* Hamburger menu icon for mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-text);
}

/* Main content styles */
.main-content {
    max-width: 1200px;
    margin: 1.25rem auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}

.images-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-container {
    width: 100%;
}

.initiative-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.initiative-image:hover {
    transform: scale(1.02);
}

.text-content {
    flex: 1;
    padding: 1.25rem;
    text-align: right;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.9375rem;
    color: #333;
}

/* Media queries for responsiveness */
@media screen and (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .main-content {
        padding: 1rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header {
        padding: 0.75rem 1.25rem;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
        order: 4;
    }
    
    .nav.active {
        display: flex;
    }
    
    .logo {
        order: 1;
    }
    
    .about-button {
        order: 2;
    }
    
    .main-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .images-wrapper, .text-content {
        width: 100%;
    }
    
    .text-content {
        padding: 0;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .header {
        padding: 0.625rem 0.9375rem;
    }
    
    .about-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav a {
        padding: 0.625rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 375px) {
    html {
        font-size: 12px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}  