/* ================================== */
/* CONFERENCE 2026 – UPGRADED DESIGN */
/* ================================== */

body.pkp_page_conference2026 {
    overflow-x: hidden;
}

/* حذف هدر و فوتر ژورنال */
body.pkp_page_conference2026 .pkp_structure_head,
body.pkp_page_conference2026 .pkp_navigation_primary_wrapper,
body.pkp_page_conference2026 .pkp_structure_footer_wrapper,
body.pkp_page_conference2026 .pkp_structure_footer {
    display: none !important;
}

/* ================= HERO ================= */

.conf-hero {
    background: linear-gradient(135deg,#1f4e79,#173a5e);
    color: #fff;
    padding: 160px 0 120px 0;
    text-align: center;
}

.conf-hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 950px;
    margin: 0 auto 25px auto;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.conf-hero h2 {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
}

.conf-hero h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #f39c12;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.hero-sub {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* ================= MENU ================= */

.conf-nav {
    margin-top: 30px;
}

.conf-nav a {
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s ease;
}

.conf-nav a:hover {
    color: #f39c12;
}

.menu-template {
    border: 1px solid #fff;
    padding: 8px 18px;
    border-radius: 6px;
}

.menu-template:hover {
    background: rgba(255,255,255,0.15);
}

/* Primary Button */
.btn-primary {
    background: #f39c12;
    padding: 12px 28px;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #e58e0e;
}

/* ================= HIGHLIGHTS ================= */

.conf-highlights {
    padding: 70px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    text-align: center;
}

.highlight-grid strong {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.highlight-grid p {
    font-size: 14px;
    opacity: 0.8;
}

/* ================= SECTIONS ================= */

.conf-section {
    padding: 120px 0;
}

.conf-section.light {
    background: #f6f8fb;
}

.conf-section h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.conf-section h3:after {
    content: "";
    width: 70px;
    height: 3px;
    background: #f39c12;
    display: block;
    margin: 15px auto 0 auto;
}

.conf-section p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
}

/* ================= CARDS ================= */

.conf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* ================= TIMELINE ================= */

.conf-timeline {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.conf-timeline li {
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
}

/* ================= CTA FINAL ================= */

.conf-cta-final {
    background: linear-gradient(135deg,#173a5e,#1f4e79);
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.conf-cta-final h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* ================= TEMPLATE BOX ================= */

.template-box {
    max-width: 700px;
    margin: 100px auto;
    padding: 50px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.template-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.template-box p {
    margin-bottom: 30px;
}

/* ================= RTL SUPPORT ================= */

html[lang="fa-IR"] .conf-hero,
html[lang="fa-IR"] .conf-section {
    direction: rtl;
    text-align: right;
}

html[lang="fa-IR"] .conf-section h3:after {
    margin: 15px auto 0 auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width:768px){

    .conf-hero {
        padding: 100px 0 80px 0;
    }

    .conf-hero h1 {
        font-size: 28px;
    }

    .conf-section {
        padding: 80px 0;
    }

}