/* Custom Schedule Page Styles */

/* General overrides */
.schedule-section {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.sec-title h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.sec-title .title {
    color: #800020;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Card Styles */
.schedule-card {
    background: #ffffff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.1);
    /* Maroon shadow hint */
}

/* Maroon Accent Line */
.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #800020;
}

.schedule-card .card-body {
    padding: 30px;
}

/* Header within Card */
.schedule-card-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.schedule-card-header h3 {
    margin: 0;
    font-size: 22px;
    color: #800020;
    font-weight: 700;
}

.schedule-card-header i {
    font-size: 24px;
    color: #800020;
    margin-right: 15px;
}

/* List Items */
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    position: relative;
    padding: 12px 15px 12px 35px;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 15px;
    transition: background-color 0.2s;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li:hover {
    background-color: #fdfdfd;
    color: #000;
    padding-left: 40px;
    /* Slight movement effect */
}

.schedule-list li i {
    position: absolute;
    left: 0;
    top: 16px;
    color: #800020;
    font-size: 16px;
}


/* Modern Pills/Tabs Styling */
.custom-nav-tabs {
    border-bottom: none !important;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.custom-nav-tabs .nav-item .nav-link {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: #666;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-nav-tabs .nav-item .nav-link small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

.custom-nav-tabs .nav-item .nav-link:hover {
    background-color: #f0f0f0;
    color: #800020;
}

.custom-nav-tabs .nav-item .nav-link.active {
    background-color: #800020;
    color: #fff;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

/* Symposium Card Specifics */
.symposium-card {
    border-left: none;
    /* Reset the thick left border */
}

.symposium-card::before {
    height: 6px;
    /* Top accent bar instead of left */
    width: 100%;
    left: 0;
    top: 0;
}

.session-badge {
    background-color: #800020;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
    vertical-align: middle;
}

.session-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.session-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.topic-group {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eee;
}

.topic-header {
    font-size: 16px;
    font-weight: 700;
    color: #800020;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.topic-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.topic-list li i {
    color: #800020;
    margin-top: 5px;
    margin-right: 12px;
    font-size: 14px;
}

.topic-list li strong {
    color: #333;
    margin-right: 5px;
}

/* Animation utilities */
.animate-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .custom-nav-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .custom-nav-tabs .nav-item .nav-link {
        border-radius: 10px;
        width: 100%;
    }

    .schedule-card .card-body {
        padding: 20px;
    }
}