.calendar-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Typography */
.section-title {
    color: var(--color-2);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 60px auto;
    color: #4a5568;
}

.section-subtitle strong {
    color: var(--color-2);
    font-weight: 700;
}

/* ================= CARDS ================= */
.info-card {
    border-radius: 12px;
    padding: 35px 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.card-title {
    color: var(--color-2);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: #4a5568;
}

/* Card 1: White with Green Accent */
.card-white {
    background-color: #ffffff;
}

.card-white::before {
    content: '';
    position: absolute;
    top: 35px;
    left: -1px; /* Hugs the left edge */
    width: 4px;
    height: 35px;
    background-color: #3b6b61; /* Dark sage green */
    border-radius: 0 4px 4px 0;
}

/* Card 2: Pale Blue with Blue Accent */
.card-blue {
    background: linear-gradient(135deg, #f2f8ff 0%, #e6f2fc 100%);
    border: 1px solid #dcebfa;
}

.card-blue::before {
    content: '';
    position: absolute;
    top: 35px;
    right: -1px; /* Hugs the right edge */
    width: 4px;
    height: 35px;
    background-color: #2185c5; /* Bright blue */
    border-radius: 4px 0 0 4px;
}

/* Custom Star List for Card 2 */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size:1.1rem;
    color: #4a5568;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

/* The 4-point star bullet */
.custom-list li::before {
    content: '✦'; 
    position: absolute;
    left: 0;
    top: 0;
    color: #2185c5; /* Dark navy */
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Card 3: Bottom Gradient Box */
.gradient-banner {
    background: linear-gradient(135deg, #fffceb 0%, #fdf7df 30%, #f2f8fc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 35px 50px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease;
}

.gradient-banner:hover {
    transform: translateY(-5px);
}

.banner-text {
    color: #2d3f37;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-02);
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .gradient-banner { padding: 30px 20px; }
    .info-card { padding: 30px 25px; }
}
.moon-teachings-section {
    padding: 80px 0 100px 0;
}

/* Typography */
.section-title {
    color: #1e293b; /* Dark Slate */
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #475569;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* ================= CARD BASE STYLES ================= */
.moon-card {
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.moon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.moon-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-2);
    margin-bottom: 8px;
    font-family: var(--font-02);
}

.moon-theme {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-01);
    letter-spacing: 0.3px;
}

.moon-desc {
    font-size: 1rem;
    line-height: 1.625;
    color: #364153;
    margin: 0;
    font-family: var(--font-01);
}

/* ================= COLOR PALETTES ================= */

/* Pink Cards */
.card-pink {
    background-color: #fff1f2;
    border: 2px solid #ffe4e6;
}
.card-pink .moon-theme { color: #e11d48; }
.card-pink:hover { border-color: #fecdd3; }

/* Blue Cards */
.card-blue1 {
    background-color: #f0f9ff;
    border: 2px solid #e0f2fe;
}
.card-blue1 .moon-theme { color: #0284c7; }
.card-blue1:hover { border-color: #bae6fd; }

/* Yellow Cards */
.card-yellow {
    background-color: #fefce8;
    border: 2px solid #fef9c3;
}
.card-yellow .moon-theme { color: #ca8a04; }
.card-yellow:hover { border-color: #fde047; }

/* Sage/Grey Cards */
.card-sage {
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
}
.card-sage .moon-theme { color: #475569; }
.card-sage:hover { border-color: #e2e8f0; }


/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Delays for Grid */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Title Sizing */
@media (max-width: 768px) {
    .section-title { font-size: 2.25rem; }
}
.rhythm-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Container Sizing to match image proportions */
.max-w-custom {
    max-width: 950px;
    margin: 0 auto;
}

/* ================= CARD BASE STYLES ================= */
.rhythm-card {
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden; /* Keeps the decorative circle inside */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.rhythm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Decorative Background Circles */
.card-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease;
}

.rhythm-card:hover .card-circle {
    transform: scale(1.1);
}

/* Ensure text sits above the background circle */
.card-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Typography */
.card-title5 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-2);
    margin-bottom: 20px;
    font-family: var(--font-02);
}

.card-desc5 {
    font-size: 1.05rem;
    color: #364153;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.card-desc5 strong {
    font-style: normal;
    font-weight: 700;
    color: var(--color-2);
    font-style: italic;
}

/* Lists */
.rhythm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rhythm-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.rhythm-list li:last-child {
    margin-bottom: 0;
}

/* ================= SPECIFIC CARD STYLES ================= */

/* Body's Rhythm Card (Left) */
.card-body-rhythm {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border: 2px solid #e2e8f0;
}
.card-body-rhythm:hover { border-color: #cbd5e1; }
.card-body-rhythm .card-circle {
    top: -20px;
    left: -20px;
    background-color: #e2e8f0;
    opacity: 0.5;
}
.card-body-rhythm .rhythm-list li { color: var(--color-2); }

/* Soul's Rhythm Card (Right) */
.card-soul-rhythm {
    background: linear-gradient(135deg, #f0f9ff 0%, #fefce8 100%);
    border: 2px solid #bae6fd;
}
.card-soul-rhythm:hover { border-color: #7dd3fc; }
.card-soul-rhythm .card-circle {
    top: -20px;
    right: -20px;
    background-color: #bae6fd;
    opacity: 0.4;
}
.card-soul-rhythm .rhythm-list li { color: #0284c7; } /* Blue text */


/* ================= BOTTOM BANNER ================= */
.tapestry-banner {
    background: linear-gradient(to right, #f1f5f9, #fefce8, #e0f2fe);
    border: 2px solid #fde047; /* Yellow/Gold border */
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-top: 15px;
    transition: transform 0.4s ease;
}

.tapestry-banner:hover {
    transform: translateY(-5px);
}

.tapestry-text {
    font-size: 1.25rem;
    font-weight: 600;
    color:var(--color-2);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-02);
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.sacred-movements-section {
    padding: 100px 0;
    background-color: #fdfbe9;
}

/* Typography */
.section-title {
    color: #8c6b22; /* Golden brown text */
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: var(--font-02);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 50px;
    font-family: var(--font-01);
}

/* ================= CARD STYLES ================= */
.movements-card {
    background-color: #ffffff;
    border: 2px solid #fef08a; /* Soft yellow border */
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.movements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* ================= LIST STYLES ================= */
.movement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.movement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.movement-number {
    color: #ca8a04; /* Darker gold for numbers */
    font-weight: 700;
    font-size: 1.125rem;
    min-width: 25px; /* Ensures numbers align perfectly */
    text-align: right;
    font-family: var(--font-02);
}

.movement-text {
    color: #364153; /* Slate gray text */
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 1px; /* Visual alignment fix */
    font-family: var(--font-01);
}

/* ================= QUOTE SECTION ================= */
.quote-divider {
    border-top: 1px solid #f1f5f9;
    margin: 40px 0 30px 0;
}

.quote-text1 {
    color: var(--color-2); /* Dark Slate */
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive padding for smaller screens */
@media (max-width: 768px) {
    .movements-card { padding: 30px 20px; }
    .section-title { font-size: 2.25rem; }
    .movement-number { text-align: left; min-width: 20px; }
}
.sacred-psalm-section {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(110deg, #5f8276 0%, #048c67 100%);
    color: #fff;
}

/* ================= TYPOGRAPHY & SPACING ================= */
.psalm-container {
    max-width: 800px;
    margin: 0 auto;
}

.psalm-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    font-family: var(--font-02);
}

.psalm-intro {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-family: var(--font-02);
}

.psalm-stanza {
    margin-bottom: 3.5rem;
}

.psalm-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    font-family: var(--font-02);
}

.psalm-body {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.psalm-tapestry {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

.psalm-closing {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    opacity: 0.85;
    margin: 0;
}

.psalm-footer {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-family: var(--font-02);
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered animation delays for a smooth reading flow */
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
.delay-5 { animation-delay: 0.75s; }
.delay-6 { animation-delay: 0.90s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sacred-psalm-section { padding: 80px 20px; }
    .psalm-title, .psalm-footer { font-size: 1.15rem; }
    .psalm-heading { font-size: 1.4rem; }
    .psalm-intro, .psalm-body, .psalm-tapestry { font-size: 0.95rem; }
}
.cta-section5 {
    /* Matches the sage-to-sky-to-sage gradient from the image */
    background: linear-gradient(115deg, #37636a 0%, #1579be 50%, #3e6d76 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Subtle glowing light spots to match the depth of the design */
.cta-section5::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.15), transparent 50%),
                radial-gradient(circle at 75% 80%, rgba(255,255,255,0.1), transparent 50%);
    z-index: 1;
}

.cta-container5 {
    position: relative;
    z-index: 2; /* Ensures text stays above the background glows */
    max-width: 900px;
    margin: 0 auto;
}

/* ================= TYPOGRAPHY ================= */
.cta-title5 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-family: var(--font-02);
}

.cta-subtitle5 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-family: var(--font-01);
}

/* ================= BUTTONS ================= */
.btn-cta-primary {
    background-color: #fbcf24; /* Signature Gold/Yellow */
    color: #1e293b; /* Dark Navy text */
    font-weight: 600;
    font-size: 1.05rem;
    padding: 15px 40px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    border: 2px solid #fbcf24;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: var(--font-02);
}

.btn-cta-primary:hover {
    background-color: #eab308;
    border-color: #eab308;
    color: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #fbcf24; /* Yellow border matching primary button */
    transition: all 0.3s ease;
    font-family: var(--font-02);
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle white hover fill */
    color: #ffffff;
    transform: translateY(-3px);
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-title5 { font-size: 2.25rem; }
    .cta-subtitle5 { font-size: 1rem; }
    .cta-section5 { padding: 80px 20px; }
    .btn-cta-primary, .btn-cta-secondary { padding: 14px 30px; width: 100%; text-align: center; }
}