@font-face{
    font-family:'Muhammadi Quranic';
    src:url('assets/fonts/MuhammadiQuranic.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}/* ===================================
   RahmatTV Quran Portal
   Main Style Sheet
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f5f7f3;
    color:#222;
    direction:rtl;
    font-family:Tahoma, Arial, sans-serif;
    line-height:1.8;
}

/* ===========================
   HEADER
=========================== */

.header{

    background:#0B5D3B;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 40px;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo-icon{

    font-size:34px;

}

.logo-text h2{

    margin:0;

    font-size:28px;

}

.logo-text small{

    color:#FFD54F;

    font-size:14px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:20px;

}

nav ul li a{

    color:white;

    text-decoration:none;

    font-size:18px;

}

nav ul li a:hover{

    color:#FFD54F;

}

/* ===========================
   HERO
=========================== */

.hero{

    background:#146B45;

    color:white;

    text-align:center;

    padding:70px 20px;

}

.hero h1{

    font-size:48px;

    margin-bottom:15px;

}

.hero p{

    font-size:22px;

}

/* ===========================
   SEARCH
=========================== */

.search-box{

    width:90%;

    max-width:700px;

    margin:40px auto;

}

.search-box input{

    width:100%;

    padding:16px;

    font-size:20px;

    border:2px solid #0B5D3B;

    border-radius:10px;

}

/* ===========================
   SURAH CARD
=========================== */

.surah-list{

    width:90%;

    margin:auto;

}

.surah-card{

    display:block;

    background:white;

    padding:20px;

    text-align:center;

    text-decoration:none;

    color:#222;

    font-size:24px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.10);

    transition:.3s;

}

.surah-card:hover{

    background:#0B5D3B;

    color:white;

}

/* ===========================
   FOOTER
=========================== */

footer{

    margin-top:60px;

    background:#0B5D3B;

    color:white;

    text-align:center;

    padding:20px;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.header{

flex-direction:column;

gap:15px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:18px;

}

}