/*
Air 2026 Custom Styles
Extends the Webful Education template with Air 2026 specific styling
*/

/* ========================================
   Logo and Header Styles
   ======================================== */
.header {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .row {
    display: flex;
    align-items: center;
}

.header .logo {
    padding: 5px 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.header .logo img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header .top-bar {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header .top-bar-title {
    flex: 0;
}

.header #responsive-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

.header .top-bar ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    height: 100%;
}

.header .top-bar ul li {
    display: flex;
    align-items: center;
}

.header .top-bar ul li a {
    font-size: 13px;
    padding: 10px 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 64em) {
    .header .top-bar ul li a {
        font-size: 14px;
        padding: 10px 10px;
    }
}

@media only screen and (max-width: 40em) {
    .header {
        padding: 10px 0;
    }

    .header .row {
        display: block;
    }

    .header .logo {
        text-align: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .header .logo img {
        max-height: 45px;
    }

    .header .nav-wrap {
        justify-content: center;
    }

    .header .top-bar,
    .header #responsive-menu,
    .header .top-bar ul {
        display: block;
    }
}

/* ========================================
   Top Banner with Countdown
   ======================================== */
.air2026-top-banner {
    background: linear-gradient(135deg, #174873 0%, #1e5a8f 100%);
    color: white;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.air2026-top-banner .row {
    align-items: center;
}

.banner-announcement {
    color: white;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.banner-announcement i {
    margin-right: 8px;
}

.countdown-label {
    font-size: 11px;
    margin-bottom: 5px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-align: center;
    color: white;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.count-item {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.count-num {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.count-unit {
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.submit-btn-col {
    text-align: right;
}

.submit-btn-col .button {
    margin-bottom: 0;
}

/* ========================================
   Deadline Widget
   ======================================== */
.air2026-deadline-widget {
    background: linear-gradient(135deg, #174873 0%, #1e5a8f 100%);
    color: white !important;
    text-align: center;
    padding: 30px 20px !important;
    border-radius: 10px;
}

.air2026-deadline-widget h2 {
    color: white !important;
    border-bottom: none !important;
    margin-bottom: 10px !important;
    font-size: 1.2rem !important;
}

.deadline-icon-wrapper {
    font-size: 60px;
    margin-bottom: 20px;
}

.deadline-date {
    font-size: 24px !important;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0 !important;
}

/* ========================================
   Two-Step Process
   ======================================== */
.air2026-process-wrapper {
    margin-top: 20px;
}

.air2026-process-step {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 150px;
}

.air2026-process-step .step-number {
    width: 60px;
    height: 60px;
    background: #174873;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.air2026-process-step .step-content {
    flex: 1;
}

.air2026-process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.air2026-process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-arrow {
    font-size: 40px;
    color: #174873;
    line-height: 150px;
}

/* ========================================
   Submission Guidelines Cards
   ======================================== */
.air2026-guideline-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 320px;
}

.air2026-guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(23, 72, 115, 0.15);
}

.guideline-icon {
    font-size: 50px;
    color: #174873;
    background: #e8f2f7;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.air2026-guideline-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #174873;
    margin-bottom: 15px;
}

.guideline-number {
    font-size: 18px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 15px;
}

.air2026-guideline-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.air2026-cta-section {
    background: linear-gradient(135deg, #174873 0%, #1e5a8f 100%);
    padding: 50px 0;
    margin-bottom: 0;
}

.air2026-cta-section h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.air2026-cta-section p {
    color: white;
    font-size: 16px;
    margin-bottom: 0;
}

.air2026-cta-section .button {
    margin-bottom: 0;
}

/* ========================================
   Key Dates Table
   ======================================== */
.air2026-dates-table {
    width: 100%;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.air2026-dates-table thead {
    background: #174873;
}

.air2026-dates-table th {
    padding: 15px;
    color: white;
    font-weight: 700;
    text-align: left;
}

.air2026-dates-table td {
    padding: 15px;
    border-bottom: 1px solid #ededed;
}

.air2026-dates-table tbody tr:last-child td {
    border-bottom: none;
}

.air2026-dates-table .phase-header td {
    background: #e8f2f7;
    color: #174873;
    font-weight: 700;
}

.air2026-dates-table .highlight-row {
    background: #fff9e6;
}

.air2026-dates-table .highlight-row td:last-child {
    color: #174873;
    font-weight: 700;
}

/* ========================================
   Journal Placeholders
   ======================================== */
.journal-placeholder {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journal-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.journal-placeholder p {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   Override Template Colors
   ======================================== */
.button.primary {
    background-color: #174873;
}

.button.primary:hover {
    background-color: #1e5a8f;
}

.button.secondary {
    background-color: #e79800;
}

.button.secondary:hover {
    background-color: #174873;
}

.topBar {
    background-color: #174873;
}

.header .top-bar ul li a {
    color: #174873;
}

.header .top-bar ul li a:hover {
    color: #e79800;
    border-bottom-color: #e79800;
}

.title-section {
    background-color: rgba(23, 72, 115, 0.9);
}

#object {
    background-color: #174873;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media only screen and (max-width: 40em) {
    .air2026-top-banner .banner-text-col,
    .air2026-top-banner .countdown-col,
    .air2026-top-banner .submit-btn-col {
        text-align: center;
        margin-bottom: 10px;
    }

    .countdown-timer {
        margin-bottom: 10px;
    }

    .submit-btn-col {
        text-align: center !important;
    }

    .process-arrow {
        display: none;
    }

    .air2026-cta-section .text-right {
        text-align: center !important;
        margin-top: 20px;
    }

    .air2026-dates-table {
        font-size: 14px;
    }

    .air2026-dates-table th,
    .air2026-dates-table td {
        padding: 10px;
    }

    .air2026-process-step {
        min-height: auto;
    }

    .air2026-guideline-card {
        min-height: auto;
        margin-bottom: 20px;
    }

    .air2026-dates-table tbody tr:hover {
        background-color: #e8f2f7 !important;
    }
}
