:root {
    --theme-text-color: black;
    --theme-title-color: #333;

    --theme-page-concept-color: var(--wp--preset--color--green);
    --theme-page-lesson-color: var(--wp--preset--color--orange);
    --theme-page-price-color: var(--wp--preset--color--yellow);
    --theme-page-lecturer-color: var(--wp--preset--color--purple);
    --theme-page-faq-color: var(--wp--preset--color--cyan);
    --theme-page-access-color: var(--wp--preset--color--cyan);
    --theme-page-contact-color: var(--wp--preset--color--magenta);
}

body {
    background-image: url("images/groovepaper.png");
}

/* MARK: Header Design */
.site-title-logo img {
    width: 390px;
    max-width: calc(100vw - 80px);
}
.site-top-menu {
    gap: 0 1rem;
}
.site-top-menu-item a {
    color: var(--theme-title-color);
    display: inline-block;
    padding: 0 0.5em;
    border-bottom: 2px solid var(--theme-title-color);
    margin-bottom: 1em;
}
.site-top-menu-item.menu-item-page-concept a,
.wp-block-post.post-15 .post-title { /* Concept Page Link */
    border-bottom: 2px solid var(--theme-page-concept-color);
}
.site-top-menu-item.menu-item-page-lesson a,
.wp-block-post.post-22 .post-title { /* Lesson Page Link */
    border-bottom: 2px solid var(--theme-page-lesson-color);
}
.site-top-menu-item.menu-item-page-price a,
.wp-block-post.post-24 .post-title { /* Price Page Link */
    border-bottom: 2px solid var(--theme-page-price-color);
}
.site-top-menu-item.menu-item-page-lecturer a,
.wp-block-post.post-18 .post-title { /* Lecturer Page Link */
    border-bottom: 2px solid var(--theme-page-lecturer-color);
}
.site-top-menu-item.menu-item-page-faq a,
.wp-block-post.post-28 .post-title { /* FAQ Page Link */
    border-bottom: 2px solid var(--theme-page-faq-color);
}
.site-top-menu-item.menu-item-page-access a,
.wp-block-post.post-115 .post-title { /* Access Page Link */
    border-bottom: 2px solid var(--theme-page-access-color);
}
.site-top-menu-item-contact {
    margin-bottom: 1em;
}
.site-top-menu-item-contact a {
    background: var(--theme-page-contact-color);
    border-radius: 6px;
    color: white !important;
    font-weight: bold;
    padding: 0.25em 0.5em !important;
}
.wp-block-post.post-26 .post-title {
    border-bottom: 2px solid var(--theme-page-contact-color);
}

/* MARK: Page Common Design */
.post-title-container {
    text-align: center;
}
.post-title {
    color: var(--theme-title-color);
    font-size: 1.75rem;
    display: inline-block;
    padding: 0 0.5rem;
    border-bottom: 2px solid var(--theme-title-color);
    margin: 1em 0;
}

.headline-subtitle {
    font-weight: normal;
    color: var(--wp--preset--color--sub);
    font-size: 0.75em;
}

.g-clef-headline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.g-clef-headline::before {
    content: "";
    height: 2em;
    width: calc(2em * 0.36);
    margin-top: 0.25em;
    /* margin-right: 0.5em; */
    background: var(--wp--preset--color--border);
    mask: url("images/g-clef.svg");
}
.g-clef-headline::after {
    position: absolute;
    content: "";
    left: 0.97em; bottom: 0.15rem;
    width: calc(100% - 0.72em);
    height: 2px;
    background-color: var(--wp--preset--color--border);
}

.bordered-container {
    background: var(--wp--preset--color--lightbase);
    overflow: hidden;
    border-radius: 0.5rem;
    border: var(--wp--preset--color--border) 2px solid;
    padding: 1em;
}
.wp-block-separator {
    background-color: var(--wp--preset--color--border);
    border: none;
    height: 2px;
}

/* MARK: Page Custom Design */
/* Top Page Customize */
/* .page-top-image {
    overflow: hidden;
    width: 80%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 1.5rem;
    border: var(--wp--preset--color--border) 0.25rem solid;
    box-shadow: 0 1rem 3rem #00000020;
    margin: 0 auto 4rem auto;
} */
.top-image-slideshow {
    position: relative;
    width: 80%;
    height: auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 1.5rem;
    border: var(--wp--preset--color--border) 0.25rem solid;
    box-shadow: 0 1rem 3rem #00000020;
    margin: 0 auto 3rem auto;
}
.top-image-slideshow figure {
    position: absolute;
    margin: 0;
    top: 0; left: 0;
    transition: all 2s;
}
.top-image-slideshow .top-image-slideshow-item {
	opacity: 0;
}
@media (max-width: 677px) {
    .top-image-slideshow {
        width: 100%;
        margin: 0 auto 2rem auto;
    }
}

/* Lesson Page Customize */
.lesson-course-group {
    gap: 1em;
}

@media (max-width: 677px) {
    html {
        font-size: 14px;
    }
}

/* Contact Page Customize */
.wpcf7-text {
    /* font-size: 1.6rem; */
    padding: 10px;
    line-height: 1.5;
    border: 1px solid var(--wp--preset--color--border);
    background-color: white;
}
.wpcf7-textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--wp--preset--color--border);
    background-color: white;
}
.wpcf7-submit {
    border: none;
    border-radius: 10px;
    background-color: var(--theme-page-contact-color);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.667em 1.33em;
    min-width: 72px;
    cursor: pointer;
}
