/* Istikbal Core Styles */


.it-poems-wrapper{
    max-width:1100px;
    margin:60px auto;
    padding:20px;
    font-family:'Inter',sans-serif;
}

.it-poems-hero{
    text-align:center;
    margin-bottom:50px;
}

.it-poems-hero h1{
    font-size:48px;
    margin-bottom:10px;
    color:#1e293b;
}

.it-poems-hero p{
    color:#64748b;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

#itPoemSearch{
    margin-top:30px;
    width:100%;
    max-width:500px;
    padding:16px 20px;
    border-radius:14px;
    border:none;
    background:#f1f5f9;
    font-size:16px;
    outline:none;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.it-poems-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.it-poem-item{
    border-radius:18px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.it-poem-item:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.it-poem-toggle{
    width:100%;
    border:none;
    background:white;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:700;
    color:#1e293b;
}

.it-poem-icon{
    font-size:28px;
    color:#94a3b8;
}

.it-poem-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.it-poem-content.active{
    max-height:2000px;
}

.it-poem-inner{
    padding:0 24px 30px;
    color:#334155;
    line-height:2;
    font-size:18px;
}

.it-poem-inner p{
    margin-bottom:18px;
}

@media(max-width:768px){

    .it-poems-hero h1{
        font-size:36px;
    }

    .it-poem-toggle{
        font-size:17px;
        padding:18px;
    }

    .it-poem-inner{
        font-size:16px;
    }

}
/* ===============================
   ISTIKBAL HOME PRO
================================ */

.it-home{
    max-width:1200px;
    margin:40px auto 80px;
    padding:0 20px;
    font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:#172033;
}

.it-home-hero{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:50px;
    align-items:center;
    padding:70px 55px;
    border-radius:32px;
    background:
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(248,250,252,.88)),
        url("https://istikbalturut.com/wp-content/uploads/2025/11/pexels-photo-4590785.jpeg");
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 80px rgba(15,23,42,.12);
    position:relative;
    overflow:hidden;
}

.it-home-hero::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:5px;
    background:linear-gradient(90deg,#e74c3c,#8b5fbf,#3498db);
}

.it-home-eyebrow{
    display:inline-block;
    margin-bottom:16px;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#7c3aed;
    font-weight:800;
}

.it-home-hero h1{
    font-family:Georgia,"Times New Roman",serif;
    font-size:64px;
    line-height:1.05;
    margin:0 0 22px;
    color:#111827;
}

.it-home-lead{
    max-width:660px;
    font-size:20px;
    line-height:1.8;
    color:#475569;
    margin:0 0 26px;
}

.it-home-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.it-home-tags span{
    padding:9px 15px;
    border-radius:999px;
    background:#fff;
    border:1px solid #e5e7eb;
    color:#334155;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.it-home-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.it-home-btn{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    transition:.25s ease;
}

.it-home-btn.primary{
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
    box-shadow:0 14px 30px rgba(37,99,235,.25);
}

.it-home-btn.secondary{
    background:white;
    color:#1e293b;
    border:1px solid #e2e8f0;
}

.it-home-btn:hover{
    transform:translateY(-2px);
}

.it-home-book{
    text-align:center;
    position:relative;
}

.it-home-book img{
    max-width:310px;
    width:100%;
    border-radius:22px;
    border:10px solid white;
    box-shadow:0 25px 55px rgba(15,23,42,.25);
}

.it-home-book-badge{
    display:inline-block;
    margin-top:-18px;
    position:relative;
    padding:10px 22px;
    border-radius:999px;
    background:linear-gradient(135deg,#e74c3c,#8b5fbf);
    color:white;
    font-size:14px;
    font-weight:900;
    box-shadow:0 12px 25px rgba(139,95,191,.25);
}

.it-home-intro{
    max-width:900px;
    margin:45px auto;
    padding:32px;
    border-radius:24px;
    background:white;
    border-left:5px solid #2563eb;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.it-home-intro p{
    margin:0;
    font-size:19px;
    line-height:1.8;
    color:#475569;
}

.it-home-section-title{
    text-align:center;
    margin:65px auto 28px;
    max-width:760px;
}

.it-home-section-title h2,
.it-home-latest h2{
    font-family:Georgia,"Times New Roman",serif;
    font-size:36px;
    margin:0 0 12px;
    color:#111827;
}

.it-home-section-title p{
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

.it-home-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:55px;
}

.it-home-card{
    display:block;
    text-decoration:none;
    background:white;
    padding:30px;
    border-radius:24px;
    border:1px solid #e5e7eb;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
    transition:.25s ease;
}

.it-home-card:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.it-home-card-icon{
    font-size:34px;
    margin-bottom:14px;
}

.it-home-card h3{
    margin:0 0 10px;
    font-size:22px;
    color:#111827;
}

.it-home-card p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.it-home-book-section{
    padding:45px;
    border-radius:28px;
    background:linear-gradient(135deg,#172033,#2563eb);
    color:white;
    margin-bottom:55px;
    box-shadow:0 24px 60px rgba(37,99,235,.2);
}

.it-home-book-section h2{
    font-family:Georgia,"Times New Roman",serif;
    font-size:38px;
    margin:0 0 14px;
    color:white;
}

.it-home-book-section p{
    max-width:760px;
    font-size:18px;
    line-height:1.8;
    margin:0;
    opacity:.92;
}

.it-home-eyebrow.light{
    color:#bfdbfe;
}

.it-home-latest{
    background:#f8fafc;
    padding:35px;
    border-radius:28px;
    border:1px solid #e2e8f0;
}

.it-home-latest h2{
    text-align:center;
}

@media(max-width:900px){
    .it-home-hero{
        grid-template-columns:1fr;
        padding:45px 25px;
        text-align:center;
    }

    .it-home-hero h1{
        font-size:44px;
    }

    .it-home-lead{
        margin-left:auto;
        margin-right:auto;
        font-size:18px;
    }

    .it-home-tags,
    .it-home-actions{
        justify-content:center;
    }

    .it-home-cards{
        grid-template-columns:1fr;
    }
}

@media(max-width:520px){
    .it-home{
        padding:0 12px;
        margin-top:25px;
    }

    .it-home-hero{
        border-radius:22px;
    }

    .it-home-hero h1{
        font-size:36px;
    }

    .it-home-intro,
    .it-home-book-section,
    .it-home-latest{
        padding:24px;
    }
}

/* ===============================
   ASTRA MENU CUSTOM
================================ */

.ast-primary-header-bar{
    background:rgba(255,255,255,0.84) !important;
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(226,232,240,.7) !important;
    box-shadow:0 10px 35px rgba(15,23,42,.05);
}

.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link{
    font-weight:700;
    font-size:15px;
    color:#1e293b !important;
    padding:0 18px !important;
    border-radius:12px;
    transition:all .25s ease;
    position:relative;
    z-index:1;
}

/* SOFT HOVER EFFECT */

.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link::before{
    content:"";
    position:absolute;
    left:8px;
    right:8px;
    top:50%;
    height:32px;
    transform:translateY(-50%) scale(.8);
    background:rgba(124,58,237,.08);
    border-radius:12px;
    opacity:0;
    transition:all .25s ease;
    z-index:-1;
}

.ast-builder-menu-1 .main-header-menu > .menu-item:hover > .menu-link::before{
    opacity:1;
    transform:translateY(-50%) scale(1);
}

.ast-builder-menu-1 .main-header-menu > .menu-item:hover > .menu-link{
    color:#7c3aed !important;
}

/* ACTIVE MENU */

.ast-builder-menu-1 .main-header-menu > .menu-item.current-menu-item > .menu-link{
    color:#7c3aed !important;
}

.ast-builder-menu-1 .main-header-menu > .menu-item.current-menu-item > .menu-link::before{
    opacity:1;
    background:rgba(124,58,237,.12);
    transform:translateY(-50%) scale(1);
}

/* DROPDOWN */

.ast-builder-menu-1 .sub-menu{
    border:0 !important;
    border-radius:16px;
    padding:10px !important;
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    overflow:hidden;
}

.ast-builder-menu-1 .sub-menu .menu-link{
    border-radius:10px;
    padding:12px 16px !important;
    font-size:14px;
    font-weight:600;
}

.ast-builder-menu-1 .sub-menu .menu-link:hover{
    background:#f8fafc;
    color:#7c3aed !important;
}

.ast-mobile-menu-trigger-minimal{
    transform:scale(1.15);
}

/* =========================================================
   FACEBOOK ARCHIVE PRO
   ADD THIS INSIDE style.css
========================================================= */

#fbArchiveApp{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 80px;
}

.fb-hero{
    text-align:center;
    margin-bottom:40px;
}

.fb-hero h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
    color:#0f172a;
}

.fb-hero p{
    font-size:17px;
    color:#64748b;
}

.fb-toolbar{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:35px;
}

#fbSearch,
#fbCategory{
    border:1px solid #e2e8f0;
    border-radius:14px;
    padding:0 18px !important;
    font-size:15px;
    background:#fff;
    min-width:260px;
    height:52px !important;
    line-height:52px !important;
    color:#1e293b !important;
    box-shadow:0 4px 20px rgba(15,23,42,.04);
}

#fbCategory option{
    color:#1e293b !important;
    background:#fff !important;
}


#fbSearch:focus,
#fbCategory:focus{
    outline:none;
    border-color:#7c3aed;
}

#fbStats{
    margin-bottom:25px;
    text-align:center;
    color:#64748b;
    font-size:14px;
}

#fbPosts{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
    gap:24px;
}

.fb-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:24px;
    transition:.25s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
    position:relative;
    overflow:hidden;
}

.fb-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.fb-top{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-bottom:14px;
}

.fb-category{
    background:rgba(124,58,237,.1);
    color:#7c3aed;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    text-transform:capitalize;
}

.fb-date{
    font-size:12px;
    color:#94a3b8;
}

.fb-title{
    font-size:20px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:14px;
    color:#0f172a;
}

.fb-text{
    color:#334155;
    line-height:1.75;
    font-size:15px;
}

.fb-meta{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.fb-type{
    font-size:12px;
    color:#64748b;
    text-transform:capitalize;
}

.fb-read{
    color:#7c3aed;
    font-weight:700;
    font-size:14px;
}

.fb-load-wrap{
    text-align:center;
    margin-top:45px;
}

#fbLoadMore{
    border:none;
    background:linear-gradient(90deg,#7c3aed,#2563eb);
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

#fbLoadMore:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(124,58,237,.3);
}

@media(max-width:768px){

    #fbPosts{
        grid-template-columns:1fr;
    }

    .fb-hero h1{
        font-size:32px;
    }

}
#fbCategory{
    color:#1e293b !important;
    appearance:auto;
}

#fbCategory option{
    color:#1e293b;
    background:#fff;
}