/* ===== OVERVIEW PAGE STYLES ===== */

/* ===== OBJECTIVES GRID ===== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.objective-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}
.objective-item:hover {
    background: white;
    border-color: rgba(213,0,128,0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.objective-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.objective-icon svg { width: 24px; height: 24px; color: var(--primary); }
.objective-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.objective-content p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ===== ORG GRID ===== */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.org-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}
.org-card:hover {
    background: white;
    border-color: rgba(213,0,128,0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.org-logo {
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}
.org-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.org-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== OVERVIEW INTRO ===== */
.overview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(213,0,128,0.1);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.overview-main-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.overview-main-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== OVERVIEW GRID ===== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.overview-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(213,0,128,0.1);
}
.overview-card:hover::before { opacity: 1; }

/* Title Card - Featured */
.overview-card-title {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff5f9 0%, #ffecf3 50%, #fff0f5 100%);
    background-size: 200% 200%;
    animation: titleGradientShift 8s ease-in-out infinite;
    border: 2px solid rgba(213,0,128,0.12);
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.overview-card-title::before { display: none; }
.overview-card-title::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, transparent 60%);
    animation: titleShimmer 12s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}
@keyframes titleGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes titleShimmer {
    0%, 100% { transform: translate(-20%, -20%) rotate(0deg); opacity: 0.4; }
    50% { transform: translate(20%, 20%) rotate(10deg); opacity: 0.7; }
}
.overview-card-title .overview-card-content { position: relative; z-index: 1; }
.overview-card-title .overview-card-value { font-size: 1.6rem; font-weight: 800; }
.overview-card-title .overview-card-visual {
    width: 140px;
    height: 140px;
    min-width: 140px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(213,0,128,0.1);
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--ease);
}
.overview-card-title:hover .overview-card-visual {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(213,0,128,0.2);
}
.overview-card-content { flex: 1; min-width: 0; }
.overview-card-label { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.overview-card-value { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.overview-card-sub { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.25rem; }
.overview-card-visual {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--bg-pink), rgba(213,0,128,0.06));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    transition: all 0.4s var(--ease);
}
.overview-card:hover .overview-card-visual {
    background: linear-gradient(135deg, #ffecf3, rgba(213,0,128,0.1));
}
.overview-card-visual img { max-width: 100%; max-height: 100%; object-fit: contain; }
.overview-card-logo .overview-card-visual-logo {
    width: auto;
    height: 70px;
    min-width: 80px;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: none;
}
.overview-card-logo .overview-card-visual-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s var(--ease);
}
.overview-card-logo:hover .overview-card-visual-logo img { transform: scale(1.05); }

/* ===== CONFERENCE THEME SECTION ===== */
.conference-theme {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}
.conference-theme::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(213,0,128,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.conference-theme::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: themeGlow 8s ease-in-out infinite;
}
@keyframes themeGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
}
.theme-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(213,0,128,0.08) 0%, transparent 100%);
}
.theme-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease);
}
.conference-theme:hover .theme-image img { transform: scale(1.03); }
.theme-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3rem 3rem 0;
    position: relative;
    z-index: 1;
}
.theme-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.theme-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.theme-title span { color: var(--accent); }
.theme-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.theme-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}
.theme-link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.theme-link:hover { color: white; }
.theme-link:hover svg { transform: translateX(5px); }

/* ===== RESPONSIVE (Overview) ===== */
@media (max-width: 1024px) {
    .overview-grid { grid-template-columns: 1fr; }
    .overview-card-title { grid-column: span 1; }
    .conference-theme { grid-template-columns: 1fr; }
    .theme-content { padding: 2rem; }
}
@media (max-width: 768px) {
    .overview-card-title .overview-card-visual { width: 100px; height: 100px; min-width: 100px; }
    .theme-image { padding: 1.5rem; }
    .theme-content { padding: 1.5rem; }
    .theme-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .overview-card { padding: 1.25rem 1.5rem; }
    .overview-card-title { padding: 1.5rem; }
}
