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

body {
    font-family: 'Traditional Arabic', 'Amiri', 'Segoe UI', Tahoma, sans-serif;
    background: #f0f0f0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Shared Banner */
.shared-banner {
    background: linear-gradient(135deg, #1a2a4f 0%, #2a3a6f 100%);
    color: white;
    margin-bottom: 30px;
}

.fahras-temp-header {
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.2);
}

.fahras-temp-header h1 {
    margin: 0;
    font-size: 1.2em;
    color: #ffd700;
}

.fahras-shared-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    display: block;
    border-radius: 50%;
}

.title-arabic {
    font-size: 1.3em;
    font-weight: bold;
}

.title-english {
    font-size: 0.85em;
    opacity: 0.85;
}

.header-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.header-menu li a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
}

.header-menu li a:hover {
    text-decoration: underline;
}

/* Footer */
.shared-footer {
    background: #1a2a4f;
    color: white;
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 15px 0;
    padding: 0;
}

.footer-menu li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-menu li a:hover {
    text-decoration: underline;
}

.copyright-text {
    color: #aaa;
    font-size: 0.8em;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .fahras-shared-header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* Landing page cards */
.landing-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.archive-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.archive-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-right: 4px solid #1a2a4f;
}

.archive-card h2 {
    color: #1a2a4f;
    margin-bottom: 10px;
}

.archive-card p {
    color: #555;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #1a2a4f;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
}

.btn:hover {
    background: #2a3a6f;
}
