/* ===================================================================
   ICEEICT 2024 – Archive-Specific Styles
   =================================================================== */

/* ===== HERO SECTION ===== */
.hero-2024 {
    position: relative;
    min-height: 560px;
    background: url('/static/images/cover.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-2024::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 14, 32, 0.85) 0%, rgba(7, 14, 32, 0.45) 50%, rgba(7, 14, 32, 0.1) 100%);
    z-index: 1;
}

.hero-2024 .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-mist-logo {
    width: 160px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero-info {
    color: #ffd166;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hero-info-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 0.2rem 0.7rem;
    font-size: 0.82rem;
    border-radius: 4px;
    margin-top: 0.6rem;
}

.scopus-badge {
    margin-top: 0.5rem;
}

.scopus-badge img {
    height: clamp(60px, 6vw, 90px);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* ===== CHEVRON TEXT BOXES ===== */
.chevron-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 1rem;
}

.chevron-item {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.8rem 0.6rem 1.2rem;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
    transition: transform 0.2s ease;
    font-family: var(--font-heading);
}

.chevron-item:first-child {
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.chevron-item:hover {
    transform: translateX(6px);
}

.chevron-red {
    background: #c0392b;
}

.chevron-green {
    background: #27ae60;
}

.chevron-dark-blue {
    background: #1a3a5c;
}

.chevron-light-blue {
    background: #2980b9;
}

.chevron-grey {
    background: #7f8c8d;
}

.chevron-medium-blue {
    background: #3498db;
}

/* ===== WELCOME & DATES ===== */
.welcome-section {
    padding: 3.5rem 0;
    background: var(--color-white);
}

.welcome-heading {
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 0.3rem;
}

.welcome-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: justify;
}

.date-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
}

.date-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(3, 64, 120, 0.15);
}

.date-badge {
    text-align: center;
    min-width: 80px;
}

.date-badge .date-old {
    font-size: 0.72rem;
    text-decoration: line-through;
    color: var(--color-muted);
    display: block;
}

.date-badge .date-current {
    font-size: 1rem;
    font-weight: 800;
    color: #c0392b;
    background: #fff;
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.date-badge .date-year {
    font-size: 0.75rem;
    color: var(--color-muted);
    display: block;
    margin-top: 2px;
}

.date-info .date-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.date-info .date-sub {
    font-size: 0.8rem;
    color: #c0392b;
    font-weight: 600;
}

/* ===== OPPORTUNITIES BANNER ===== */
.opportunities-section {
    padding: 3rem 0;
    background: var(--color-light);
}

.opportunities-header {
    background: linear-gradient(135deg, var(--color-navy), var(--color-dark-blue));
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.opp-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-gold);
}

.opp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.opp-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.opp-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.opp-card p,
.opp-card ul {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

.opp-card ul {
    padding-left: 1rem;
}

/* ===== KEYNOTES / PROFILE CARDS ===== */
.keynotes-section {
    padding: 3rem 0;
    background: var(--color-white);
}

.profile-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(3, 64, 120, 0.15);
}


.profile-img-wrap {
    padding: 1.2rem 1.2rem 0;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
    border: 3px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.profile-card h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-navy);
    margin: 0.8rem 0 0.2rem;
}

.profile-card .profile-title {
    font-size: 0.78rem;
    color: var(--color-gold);
    font-weight: 600;
}

.profile-card .profile-uni {
    font-size: 0.82rem;
    color: var(--color-muted);
    padding: 0 0.8rem;
    margin-bottom: 0.7rem;
}

.profile-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-top: auto;
}

.profile-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--color-navy);
    color: var(--color-gold);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.profile-icon-btn:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

/* ===== INDUSTRY-ACADEMIA ===== */
.industry-section {
    padding: 3rem 0;
    background: var(--color-light);
}

.industry-header {
    background: linear-gradient(135deg, var(--color-navy), var(--color-accent-blue));
    color: #fff;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.industry-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.awards-header {
    background: linear-gradient(135deg, var(--color-navy), var(--color-dark-blue));
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin: 2rem 0 1.5rem;
}

.award-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.award-card.award-image-only {
    padding: 0;
    justify-content: center;
    overflow: hidden;
}

.award-card.award-image-only .award-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.award-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.award-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.2rem;
}

.award-card p {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

/* ===== CONVENERS ===== */
.conveners-section {
    padding: 3rem 0;
    background: var(--color-white);
}

/* ===== SCROLLING ANNOUNCEMENT ===== */
.announcement-bar {
    background: linear-gradient(to right, var(--color-gold), #e6940f);
    padding: 0.4rem 0;
    overflow: hidden;
}

.announcement-bar p {
    animation: scrollText 20s linear infinite;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-navy);
    margin: 0;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== RESPONSIVE 2024 ===== */
@media (max-width: 767.98px) {
    .hero-2024 {
        min-height: 400px;
    }

    .hero-title-main {
        font-size: 1.3rem;
    }

    .chevron-item {
        font-size: 0.72rem;
        padding: 0.45rem 1.2rem 0.45rem 0.9rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }
}