@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noto+Naskh+Arabic:wght@400..700&display=swap');

:root {
    --primary-color: #181818;
    --warm-gold: #D4AF37;
    --soft-cream: #F7F5F0;
    --charcoal: #2C3E50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(to bottom, #FAFBFC 0%, #F5F7FA 100%);
    min-height: 100vh;
    color: #1a1a1a;
    line-height: 1.6;
}

p{
    font-family: 'Inter';
}

.logo{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.display-font {
    font-family: 'Playfair Display', serif;
}

.arabic-font {
   font-family: 'Noto Naskh Arabic', "Amiri", "Scheherazade New", serif;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

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

nav .logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
}

nav .back-home {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color:  var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav .back-home:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
}

.section-header {
    background: white;
    border-bottom: 4px solid var(--primary-color);
    padding: 60px 0;
}

.section-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header h1 {
    font-family: Segoe UI;
    font-size: 48px;
    font-weight: 700;
    color:  var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
}

.nameslist{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
    gap: 40px;
}

.nameslist li, .allahName{
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nameslist li h1{
    font-size: 36px;
}

.allahName{
    margin-bottom: 60px;
}

.allahName h1{
    font-size: 60px;
}


#footer {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 60px;
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 32px;
    }
    .section-header p {
        font-size: 16px;
    }

}