/* ===== SCHEDULE ===== */

.schedule-section {
    margin: 0px 5.5vw;
    display: flex;
    flex-direction: column;
}

.schedule-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    text-align: center;
    margin-bottom: 43px;
}

.schedule-grid {
    font-family: "Josefin Sans", sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: space-between;
    color: #000;
}

.schedule-left {
    text-align: left;
}

.schedule-left img {
    display: none;
}

.schedule-event {
    font-family: "Gilda Display", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 7px;
}

.schedule-location {
    font-size: 21px;
}

.schedule-right {
    text-align: left;
    line-height: 1.5;
    font-size: 21px;
    color: rgb(26, 32, 44);
    padding-left: 1rem;
    padding-top: 4px;
}

.schedule-right img {
    display: none;
}

.schedule-date {
    font-size: 25px;
}

.color-dots {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.color-dots-title {
    font-size: 30px;
}

.color-dots p {
    /* width: 100px; */
    font-size: 21px;
}

.color-dots svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
    background-color: #000000;
}

.schedule-rsvp {
    font-family: "Josefin Sans", sans-serif;
    margin: 80px 13.1vw 40px;
    background: #caa489;
    border: none;
    color: #fff;
    padding: 1rem 0px;
    font-size: 20px;
    cursor: pointer;
}

.schedule-note {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(133, 150, 176);
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.schedule-note-left {
    font-size: 32px;
    line-height: 60px;
}

.schedule-note-right {
    text-align: left;
    line-height: 25px;
    padding-left: 20px;
}

@media (max-width: 900px) {
    .schedule-section {
        margin: 0px 0;
        align-items: center;
    }

    .schedule-title {
        margin-bottom: 20px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .schedule-left {
        text-align: center;
    }

    .schedule-left img {
        display: inline;
    }

    .schedule-event {
        font-size: 21px;
    }

    .schedule-location {
        font-size: 18px;
        margin-bottom: 0;
    }

    .schedule-right {
        text-align: center;
        padding: 0 0;
    }

    .schedule-right img {
        display: inline;
    }

    .schedule-date {
        font-size: 21px;
    }

    .schedule-time {
        font-size: 18px;
    }

    .dot {
        width: 2rem;
        height: 2rem;
    }

    .color-dots-title {
        margin-top: 30px;
    }

    .color-dots {
        flex-direction: column;
        gap: 5px;
    }

    .color-dots p {
        margin-top: 5px;
        width: 100%;
    }

    .schedule-rsvp {
        margin-top: 40px;
        margin-bottom: 20px;
        width: 100%;
    }

    .schedule-note {
        font-size: 12px;
        line-height: 20px;
        opacity: 0.7;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .schedule-note-left {
        font-size: 21px;
        line-height: 30px;
    }

    .schedule-note-right {
        text-align: left;
        padding-left: 10px;
    }
}