/* Fonts */

@font-face {
    font-family: 'Spinwerad';
    src: url('../assets/fonts/spinwerad.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}


.content-wrapper {
    margin-top: 75px;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-bottom: 0px;
    }
}


.schedule-title {
    font-family: 'Spinwerad', sans-serif;
    font-size: 52px;
    font-weight: 700;
    padding: 65px 0 0px 0;
    text-align: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: translateZ(0);
}

.schedule-title::after {
    content: '';
    width: 120px;
    height: 6px;
    background: black;
    display: block;
    margin: 3px auto 50px auto;
}

@media (max-width: 768px) {
    .schedule-title {
        font-size: 42px;
        padding: 50px 0 10px 0;
    }

    .schedule-title::after {
        width: 80px;
        height: 5px;
        margin: 3px auto 0px auto;
    }
}


#calendarDays div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-top: 10px;
    column-gap: 10px;
    row-gap: 30px;
}

.day-names div {
    font-weight: bold;
    grid-template-columns: repeat(7, 1fr);
    font-size: 20px;
    height: 40px;
}

.calendar-wrapper {
    min-height: 500px;
}

@media (max-width: 768px) {
    .calendar-wrapper {
        min-height: 0px;
        margin-bottom: 15px;
    }


    .calendar-row {
        row-gap: 25px;
    }

    .day-names div {
        font-size: 17px;
    }

    #calendarDays div {
        font-size: 15px;
    }
}


.dot-diagonal {
    width: 33px;
    height: 33px;
    background-color: rgba(92, 206, 206, 0.205);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'KoPubDotum', sans-serif;
    font-size: 31px;
    margin: auto;
    box-sizing: border-box;
    cursor: pointer;
}

.dot-diagonal:hover {
    background-color: rgba(148, 233, 218, 0.586);
    box-shadow: 0 0 0 2px rgba(148, 233, 218, 0.586);
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .dot-diagonal {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

}

.schedule-placeholder {
    margin-top: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'S-CoreDream';
    font-weight: 500;
    font-size: 19px;
    text-align: center;
}

@media (max-width: 768px) {
    .schedule-placeholder {
        margin-top: 40px;
        font-size: 16px;
        font-weight: 400;
        min-height: 121px;
    }
}

.schedule-text {
    font-size: 21px;
    font-family: 'S-CoreDream';
    font-weight: 600;
    line-height: 1.8;
    color: #080808;
}

@media (max-width: 768px) {
    .schedule-text {
        font-size: 17px;
    }
}

.schedule-detail-line {
    margin-top: -10px;
    margin-bottom: -3px;
    font-size: 19px;
    font-family: 'S-CoreDream';
    color: #080808;
}

.schedule-detail-line .icon {
    color: #080808;
    margin-right: 6px;
    font-size: 15px;
    position: relative;
    top: -1.5px;
}

.schedule-detail-line .label {
    font-weight: 500;
}

.schedule-detail-line .value {
    font-weight: 400;
}

@media (max-width: 768px) {
    .schedule-detail-line {
        font-size: 16px;
    }

    .schedule-detail-line .icon {
        font-size: 13px;
    }
}

.fade-in-text {
    opacity: 0;
    animation: fadeInOnly 1s ease forwards;
}

@keyframes fadeInOnly {
    to {
        opacity: 1;
    }
}