/* ============================================== */
/* --- 5. EVENT DETAILS / SCHEDULE SECTION (FINAL SIZING) --- */
/* ============================================== */

.special-day-schedule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto; 
    /* FIX 1: REDUCED OVERALL VERTICAL PADDING */
    padding: clamp(4rem, 8vw, 6rem) 0rem;
    box-sizing: border-box;
    background-color: #ffffff;

    /* NEW FIX: Subtle Top Divider */
    border-top: 1px solid #E6EBF0; /* A very light grey/blue */
    
    /* We need to re-adjust padding to account for the border and the desired spacing */
    padding-top: clamp(6rem, 8vw, 6rem); 
    padding-bottom: clamp(4rem, 8vw, 6rem); /* Keep the bottom large */
}

.schedule-container {
    width: 90%; 
    max-width: 1200px;
    text-align: center;
    color: #426A8D;
}

.schedule-container h4{
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-family: 'DM Sans', sans-serif; 
    font-weight: 500; 
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    margin: 0 auto 0.5rem; 
    color: #426A8D; /* Darkened for better contrast */
}

.schedule-container h1{
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    font-family: 'DM Serif Display', serif;
    font-weight: 900;
    /* FIX 3: REDUCED BOTTOM MARGIN */
    margin: 0 auto 3rem; 
    line-height: 1.1; 
}

.schedule-container h1 span {
    color: #95B8D6;
}

/* --- SCHEDULE GRID --- */
.schedule-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, auto);
    /* FIX 2: REDUCED ROW GAP */
    grid-row-gap: clamp(3rem, 5vw, 3.5rem);  
    grid-column-gap: clamp(1rem, 4vw, 4rem); 
    justify-items: center;
    align-items: start; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ... (rest of .schedule-items and media queries remain the same) ... */

.schedule-items{
    width: 100%; 
    max-width: 200px; 
    height: auto;
    text-align: center;
    color: #426A8D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    padding: 1rem;
}

.schedule-items img {
    /* Updated size */
    max-width: clamp(120px, 18vw, 180px); 
    height: auto;
    aspect-ratio: 1 / 1;     
    object-fit: contain;      
    display: block;
    margin: 0 auto 1.5rem; 
}

.schedule-items h3{
    font-size: clamp(1.8rem, 2.8vw, 2.4rem); 
    font-family: 'DM Serif Display', serif;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: 0.05em;
    color: #426A8D;
}

.schedule-items p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
/* ... (rest of media queries for responsiveness) ... */
@media (max-width: 700px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 700px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        grid-row-gap: clamp(3rem, 6vw, 4rem);
    }

    .schedule-container h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 2rem;
    }

    .schedule-items h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .schedule-items p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}