/* ============================================
   CONFERENCE TEMPLATE (FULLWIDTH)
   WIDER LAYOUT + SMALLER H1
   ============================================ */

:root {
    --primary: #0066cc;
    --primary-dark: #004a99;
    --success: #059669;
    --text: #0f172a;
    --text-sec: #475569;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-sec: #f8fafc;
    --border: #e2e8f0;
}

/* Base */
.conf-fullwidth {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'BPG Nino', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.conf-fullwidth * { box-sizing: border-box; }

/* WIDER containers - Match header width */
.conf-container-fw,
.conf-hero-inner{
    max-width: 1480px; /* Much wider to match header */
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .conf-container-fw,
    .conf-hero-inner { padding: 0 3rem; }
}

@media (min-width: 1200px) {
    .conf-container-fw,
    .conf-hero-inner { padding: 0 4rem; }
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.woocommerce-breadcrumb{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 10px auto 12px !important;
    padding: 8px 14px !important;

    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;

    font-size: 13px;
    color: var(--text-muted);
    opacity: 1;
}

.woocommerce-breadcrumb a{
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-breadcrumb a:hover{
    text-decoration: underline;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb{
    max-width: 1480px;
    width: fit-content;
}

/* ============================================
   HERO
   ============================================ */

.conf-hero-fullwidth{
    width: 100%;
    background: white;
    padding: 12px 0 34px;
}

@media (min-width: 768px){
    .conf-hero-fullwidth{
        padding: 14px 0 44px;
    }
}

/* Badge */
.conf-badge-fw{
    display: inline-block;
    padding: 0.42rem 0.95rem;
    background: rgba(0, 102, 204, 0.10);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    margin: 8px 0 12px;
}

/* Title - SMALLER as requested */
.conf-title-fw{
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

@media (min-width: 768px){
    .conf-title-fw{
        font-size: 1.85rem;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px){
    .conf-title-fw{
        font-size: 2rem;
    }
}

/* Unified hero grid card */
.conf-grid-fw{
    display: grid;
    gap: 18px;
    align-items: stretch;

    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px){
    .conf-grid-fw{
        gap: 22px;
        padding: 22px;
    }
}

@media (min-width: 1024px){
    .conf-grid-fw{
        grid-template-columns: 1.25fr 1fr;
        gap: 26px;
        padding: 26px;
    }
}

/* Image container */
.conf-img-fw{
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Desktop/tablet image: impactful but not absurd */
.conf-img-fw img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    min-height: 320px;
    max-height: 440px;
}

/* Mobile fix: stop the skyscraper image */
@media (max-width: 639px){
    .conf-img-fw img{
        min-height: 180px;
        max-height: 240px;
    }
}

.conf-placeholder-fw{
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: #f9fafb;

    min-height: 240px;
}
@media (max-width: 639px){
    .conf-placeholder-fw{ min-height: 180px; }
}

/* Meta cards */
.conf-meta-fw{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.meta-item-fw{
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 16px;
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);

    transition: all 0.2s ease;
}

.meta-item-fw:hover{
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.meta-item-fw svg{
    color: var(--primary);
    flex-shrink: 0;
}

.meta-label-fw{
    font-size: 0.70rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.meta-value-fw{
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
}

/* ============================================
   ABOUT SECTION - BETTER SPACING
   ============================================ */

.conf-about-fw {
    padding-top: 30px;
    background: var(--bg-sec);
}


.conf-section-title-fw{
    font-size: 1.65rem;
    font-weight: 700;
    margin-top: -10px;
    color: var(--text);
    text-align: center;
}

@media (min-width: 768px){
    .conf-section-title-fw{ font-size: 2rem; margin-bottom: 22px; }
}

/* Wider and more professional */
.conf-about-content-fw{
    max-width: 1280px;
    margin: 0 auto;
    background: white;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-sec);
}

@media (max-width: 639px){
    .conf-about-content-fw{
        padding: 18px;
        border-radius: 16px;
        font-size: 0.98rem;
    }
}

.conf-about-content-fw p{ margin-bottom: 1.1rem; }
.conf-about-content-fw p:last-child{ margin-bottom: 0; }

/* ============================================
   REGISTRATION (Hidden)
   ============================================ */
.conf-registration-fw{ display: none !important; }

/* ============================================
   ATTENDEES
   ============================================ */

.conf-attendees-fw{
    padding: 44px 0 60px;
    background: var(--bg-sec);
}

@media (min-width: 768px){
    .conf-attendees-fw{ padding: 56px 0 72px; }
}

.conf-table-wrap-fw{
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    background: white;
}

.conf-table-fw{
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.conf-table-fw thead{
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.conf-table-fw thead th{
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.conf-table-fw tbody tr{
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.conf-table-fw tbody tr:last-child{ border-bottom: none; }

.conf-table-fw tbody tr:hover{
    background: rgba(0, 102, 204, 0.03);
}

.conf-table-fw tbody td{
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.conf-table-fw tbody td:first-child{ font-weight: 700; }

/* Mobile table */
@media (max-width: 639px){
    .conf-table-wrap-fw{ overflow-x: auto; }
    .conf-table-fw{ min-width: 440px; }
}

/* ============================================
   UX
   ============================================ */

html{ scroll-behavior: smooth; }

::selection{
    background: var(--primary);
    color: white;
}

@media (prefers-reduced-motion: reduce){
    *{
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================
   PDF PROGRAM SECTION - CLEAN CENTERED DISPLAY
   ============================================ */

.conf-program-fw {
    padding-top: 50px;
	padding-bottom: 20px;
    background: var(--bg-sec);
}

.program-display-fw {
    max-width: 1100px;
    margin: 0 auto;
}

/* Open in New Tab Link */
.pdf-open-link-fw {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pdf-open-link-fw a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.pdf-open-link-fw a:hover {
    background: var(--bg-sec);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.pdf-open-link-fw svg {
    flex-shrink: 0;
}

/* PDF Display - Large & Centered */
.pdf-display-fw {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    background: white;
}

.pdf-display-fw iframe {
    width: 100%;
    height: 900px;
    display: block;
    background: white;
}

@media (max-width: 1024px) {
    .pdf-display-fw iframe {
        height: 800px;
    }
}

@media (max-width: 768px) {
    .pdf-display-fw iframe {
        height: 700px;
    }
    
    .program-display-fw {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .pdf-display-fw iframe {
        height: 600px;
    }
    
    .pdf-display-fw {
        border-radius: 8px;
    }
}