/* Markdown styling with fonts and project colors for RSVP pages */

/* Reserved for Ampersand */
.prose h1  {
    font-family: 'Dancing Script', cursive !important;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Reserved for Names */
.prose h2,
.prose h3,
.prose h4, 
.prose h5 {
    font-family: 'Lora', cursive !important;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Reserved for Invite Text */
.prose h6 {
    font-family: 'Lora', serif !important;
    font-size: 1rem;
    font-weight: 200;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Reserved for Text */
.prose p,
.prose li {
    font-family: 'Lora', serif !important;
    font-weight: 200;
}

/* Font Weights */
.prose h1 {
    font-size: 1.5rem;
    font-weight: 900 ;
}

.prose h2 {
    font-weight: 200 ;
}

.prose h3 {
    font-weight: 800 ;
}

.prose h4 {
    font-weight: 700 ;
}

.prose h5 {
    font-weight: 800 ;
}

.prose hr {
    border-color: var(--wedding-primary) !important;
}

.prose ul li::marker,
.prose ol li::marker {
    color: var(--wedding-secondary) !important;
}

.prose ul li::before {
    color: var(--wedding-secondary) !important;
}

.prose a {
    color: var(--wedding-primary) !important;
}

.prose a:hover {
    color: var(--wedding-secondary) !important;
}

.prose strong {
    color: var(--wedding-secondary) !important;
    font-weight: 600;
}

.prose blockquote {
    border-left-color: var(--wedding-secondary) !important;
}

.prose code {
    background-color: color-mix(in srgb, var(--wedding-secondary) 12%, white) !important;
    color: var(--wedding-secondary) !important;
}

.prose pre {
    background-color: color-mix(in srgb, var(--wedding-secondary) 12%, white) !important;
}

.prose pre code {
    background-color: transparent !important;
}
