#schedule {
    padding: 128px var(--side-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 128px;

    #days-buttons {
        display: flex;
        gap: 24px;

        button {
            flex: 1;
            font-size: 40px;
            font-weight: bold;
            font-family: "Oswald", sans-serif;
            padding: 12px;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            color: #ffffff;
            background-color: #151415;
            border: 2px solid #2C2C2C;
            border-radius: 12px;
            position: relative;
            transition: background-color 0.3s, border-color 0.3s, color 0.3s;

            .corner-dots svg {
                fill: #2C2C2C;
            }
        }

        button.active {
            background-color: #ffffff;
            color: #0E0E0E;
            border-color: #ffffff;

            .corner-dots svg {
                fill: #0E0E0E;
            }
        }

        button:hover {
            cursor: pointer;
            background-color: #1C1A1C;
        }

        button:active {
            background-color: #232323;
        }

        button.active:hover {
            background-color: #ebebeb;
            border-color: #ebebeb;
        }

        button.active:active {
            background-color: #dadada;
            border-color: #dadada;
        }
    }

    h1 {
        font-size: 128px;
        color: #ffffff;
    }

    #days-plan.flipped #days-inner { transform: rotateY(180deg); }

    #days-plan {
        perspective: 1000px;
        width: 560px;
        height: max-content;

        #days-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        #day2 {
            background-color: #090809;
            position: absolute;
            top: 0;
            transform: rotateY(180deg);
        }

        .day {
            font-size: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            width:100%;
            height: 100%;

            .text-gradient {
                background-image: linear-gradient(to bottom, var(--blue), var(--purple), var(--pink));
                background-clip: text;
                color: transparent;
            }

            .row {
                display: flex;
                gap: 24px;
                align-items: center;

                .column {
                    transform: translateX(2px);
                }

                .time {
                    width: 65px;
                }

                .white {
                    color: #ffffff;
                    font-weight: bold;
                }

                .location {
                    font-size: 0.7em;
                    text-transform: uppercase;
                    color: #504F50;
                    font-weight: bold;
                    margin-top: 0.2rem;
                    margin-left: -0.7rem;
                }
            }
        }
    }

    @media screen and (max-width: 1300px) {
        h1 {
            font-size: 96px
        }
    }

    @media screen and (max-width: 1150px) {
        gap: 64px;
    }

    @media screen and (max-width: 950px) {
        flex-direction: column;

        #schedule-heading {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .day {
            justify-content: flex-start !important;
        }
    }

    @media screen and (max-width: 600px) {
        button { font-size: 32px !important; }
        h1 { font-size: 22vw; }
        .row { gap: 20px !important; }

        #days-plan {
            width: 100%;

            .location {
                display: none;
            }
        }
    }
}
