/* Agenda Detail Styles */

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span.current {
    color: #ffffff;
    font-weight: 500;
}

/* Event Type Badge */
.event-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Event Info Cards */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.event-info-card i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.event-info-card .info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-info-card .label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.event-info-card .value {
    font-weight: 600;
    font-size: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background-color: #2563eb;
    color: #ffffff;
}

.action-btn.primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.action-btn.secondary {
    background-color: #64748b;
    color: #ffffff;
}

.action-btn.secondary:hover {
    background-color: #475569;
    transform: translateY(-1px);
}

.action-btn.success {
    background-color: #16a34a;
    color: #ffffff;
}

.action-btn.warning {
    background-color: #f59e0b;
    color: #ffffff;
}

.action-btn.danger {
    background-color: #ef4444;
    color: #ffffff;
}

/* Details Section Styles */
.details-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Content Card Styles */
.content-card {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

/* Prose Styles for Content */
.prose {
    line-height: 1.6;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #374151;
}

.prose p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.prose ul, .prose ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* Sidebar Styles */
.sidebar-card {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.info-value {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
}

/* Source Persons Styles */
.source-persons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.source-person-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    background-color: #3b82f6;
    font-size: 1.125rem;
}

.source-person-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.source-person-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Learning Materials Styles */
.materials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.material-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.material-card:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.material-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 1rem;
}

.material-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.material-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #2563eb;
    text-decoration: none;
    color: #ffffff;
}

/* Quick Actions Styles */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-action-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #111827;
    transition: all 0.3s ease;
}

.quick-action-link:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.quick-action-link i {
    font-size: 1.25rem;
}

.quick-action-link .action-text {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .event-info-card {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .sidebar-card {
        padding: 0.75rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.sticky-top {
    position: sticky;
    top: 1rem;
}

.text-green-600 {
    color: #16a34a;
}

.text-blue-600 {
    color: #2563eb;
}

.text-yellow-600 {
    color: #d97706;
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-900 {
    color: #111827;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.hover-bg-blue-100:hover {
    background-color: #dbeafe;
}

/* Print Styles */
@media print {
    .action-buttons,
    .quick-actions,
    .sidebar-card {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}
