.scroll-hero {
    position: relative;
    height: 200vh; /* let the sticky container drive scroll feel */
  }
  
.sticky-canvas-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page .entry-title {
    display: none;
}

.welcome-banner {
    z-index: 2;         
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--c_white);
}
.welcome-banner-text {
    color: var(--c_brown);
    font-size: 2.5rem;
    margin: -10px;
}

.calendar-introduction{
    z-index: 3;
    display: flex;
    display: flex;
    flex-flow: row wrap;
    justify-content:center;
    background-color: var(--c_green);
}
.calendar-introduction-text {
    flex-basis: 60%;
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 500px;
}

.calendar-introduction-text div, p {
    color: white;
    line-height: 30px;
    font-weight: 100;
}

.calendar-introduction-text div h1 {
    text-align: left;
    font-size: 3rem;
    font-weight: 100;
}

.calendar-introduction-text p {
    font-size: 1.5rem;
}

.calendar {
    flex-basis: 40%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}
.calendar-container {
    background-image:  linear-gradient(var(--c_brown) 44%, var(--c_light-brown) 140%);
    box-shadow: -14px 10px 34px -6px rgba(0, 0, 0, 0.229);
    border-radius: var(--c_rounded-corners);
    min-width: 510px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* calendar style */
.calendar-widget {
    height: auto;
    width: 450px;
    flex-direction: column;
    padding: 10px;
    margin-top: 50px;

}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.calendar-header button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 3px;
    background: linear-gradient(145deg, #f0f0f07e, #cacaca7e);
}

.calendar-header button svg {
    height: 50%;
    width: 50%;
}

.calendar-header button:hover {
    border-radius: 50px;
    background: linear-gradient(145deg, #cacaca8e, #f0f0f0);
}
.days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
}
.day {
    text-align: center;
    font-size: 1.6rem;
    padding: 5px;
    color: var(--c_white);
    font-weight: 100;
    margin-bottom: 20px;
}
.dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

}
.date {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px;
    margin: 5px 5px;
    font-weight: 100;
    color: var(--c_brown);

    background-color: var(--c_beige78);
    border-radius: 100%;
}

.date:hover {
    background-color: var(--c_beige);
    transition: 200ms ease;
}

.date.inactive {
    display: hidden;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);

}
.date.active {
    background-color: var(--c_green);
    color: var(--c_brown);
    border-radius: 50%;
}

.monthYear {
    color: var(--c_white);
    font-size: 1.5rem;
}



.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--c_beige);
    color: var(--c_brown);
    min-width: 550px;
}
  
.faq-item {
    background: #ffffff00;
    border-radius: 4px;
    overflow: hidden;
}
  
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px;
    padding-left: 10px;
    text-align: left;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
  
.faq-question .icon {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question span {
    color: var(--c_brown)
}
  
.faq-item.active .icon {
    transform: rotate(45deg); /* + becomes × */
}
  
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}

.faq-answer p {
    color: var(--c_brown);
}
  
.faq-item.active .faq-answer {
    max-height: 500px; /* enough to show content */
    padding: 16px;
}

hr.solid-faq {
    border-top: 2px solid var(--c_brown);
    border-radius: 5px;
}

.cards-introduction {
    display: flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.magic-cards {
    flex-basis: 50%;
    display: flex;
}
.cards-introduction-text {
    flex-basis: 50%;
    display: flex;
    flex-flow: column wrap;
}

.newsletter-banner {
    display: flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.newsletter-banner-image {
    flex-basis: 40%;
    display: flex;
}
.newsletter-banner-text {
    flex-basis: 60%;
    display: flex;
}

.largeimg {}