@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');


@font-face {
  font-family: "OrpheusPro";
  src: url(../resources/font/Orpheus_Pro.otf);
}

:root {
    --primary-color: rgb(196 69 105 / 90%);
    --warm-gold: #D4AF37;
    --soft-cream: #F7F5F0;
    --blackcolor: #1a1a1a;
}

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;
}

.section-header p{
    font-family: 'Inter';
}


.display-font {
    font-family: 'Playfair Display', serif;
}

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

/* Navigation */
.breadcrumb {
    background: rgba(256, 256, 256, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.breadcrumb .nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumb .taglineList{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumb .taglineList li a{
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.breadcrumb .taglineList li a.logoicon {
    padding: 0px 0px;
}

.breadcrumb .taglineList li a:hover, .breadcrumb .taglineList li .active{
    background: var(--primary-color);
    color: white;
    opacity: 0.5;
}

.breadcrumb .logoicon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb .logoicon img{
    width:20px;
}

.breadcrumb .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(--blackcolor);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb .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;
    flex-direction: row-reverse;
    align-content: center;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
}

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

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

.allahName{
    margin-bottom: 60px;
}

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

.container-flex{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    justify-content: center;
}


.french{
    font-size:16px;
    line-height: 1.8;
    padding: 12px;
}

.arab{
    font-family: 'Noto Naskh Arabic', "Amiri", "Scheherazade New", serif;
    direction:rtl;
    line-height: 1.8;
    font-size:20px;
    padding: 12px;
}

#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;
    }

}