/* =========================================
   SCHEDULE PAGE BASE
========================================= */

.schedule-section {
    padding: 130px 10%;
    background: radial-gradient(circle at top center, #143a57 0%, #0e2540 60%);
    min-height: 100vh;
}

.schedule-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 90px;
    color: #2dd4ff;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================================
   GRID LAYOUT
========================================= */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
}

/* =========================================
   EVENT CARD DESIGN
========================================= */

.event-card {
    background: linear-gradient(145deg, #183a53, #16324a);
    padding: 40px 35px;
    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}

/* Top Accent Glow Strip */
.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3fe0ff, #49a6ff);
}

/* Hover Effect */
.event-card:hover {
    transform: translateY(-12px);
    border: 1px solid rgba(63,224,255,0.7);
    box-shadow: 0 25px 70px rgba(63,224,255,0.22);
}

/* =========================================
   CARD TITLE
========================================= */

.event-card h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================
   EVENT INFO LIST
========================================= */
/* INFO GRID INSIDE CARD */

.event-card ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    row-gap: 18px;
}

.event-card li {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start;
    column-gap: 10px;
    font-size: 14px;
    color: #cfd9e6;
}

/* LABEL */
.event-card strong {
    color: #3fe0ff;
    font-weight: 600;
}

/* VALUE TEXT */
.event-card li span {
    color: #f0f6fb;
}


/* =========================================
   FOOTER MATCH
========================================= */

footer {
    padding: 35px 10%;
    text-align: center;
    background: #0e2540;
    color: #b9c9d8;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .schedule-section {
        padding: 120px 8%;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 100px 6%;
    }

    .schedule-section h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .schedule-grid {
        gap: 30px;
    }
}
