/**
 * Canopy of Prayer - Page Styles
 * /site/templates/css/custom/canopyofprayer.css
 * Using higher specificity to override site defaults (matches gospelshares.css pattern)
 */

/* ==========================================================================
   Page Title Section
   ========================================================================== */
section.prayer-title {
    padding: 50px 0 !important;
    text-align: center;
    background-color: #fff !important;
}

section.prayer-title h1 {
    font-size: 3em;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

section.prayer-title .subtitle {
    font-size: 1.4em;
    color: #666;
    margin: 0;
}

@media screen and (max-width: 768px) {
    section.prayer-title h1 {
        font-size: 2.2em;
    }
    section.prayer-title .subtitle {
        font-size: 1.2em;
    }
}

/* ==========================================================================
   Content Sections - General
   ========================================================================== */
section.prayer-section {
    padding: 60px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

section.prayer-section.bg-light {
    background-color: #f8f9fa !important;
}

section.prayer-section h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #333;
    text-transform: uppercase;
}

section.prayer-section p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
}

@media screen and (max-width: 768px) {
    section.prayer-section {
        padding: 40px 0 !important;
    }
    section.prayer-section h2 {
        font-size: 1.8em;
    }
}

/* ==========================================================================
   Campus Schedule with Inline Sign-Up
   ========================================================================== */
.campus-schedule {
    margin: 30px 0;
    padding: 0;
}

a.schedule-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    margin-bottom: 8px;
    background: #fff;
    border-left: 4px solid #5dc5bd;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-decoration: none !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.schedule-item:hover {
    box-shadow: 0 3px 12px rgba(93,197,189,0.2);
    transform: translateX(3px);
}

section.prayer-section.bg-light a.schedule-item {
    background: #fff;
}

.schedule-day {
    font-weight: 600;
    color: #01a0b5;
    min-width: 180px;
    font-size: 1.05em;
}

.schedule-campus {
    color: #555;
    font-size: 1.05em;
    flex: 1;
}

.schedule-item .btn-signup {
    display: inline-block;
    background-color: #5dc5bd;
    color: #fff;
    font-size: 0.85em;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    margin-left: auto;
}

a.schedule-item:hover .btn-signup {
    background-color: #4cb1a8;
}

@media screen and (max-width: 768px) {
    a.schedule-item {
        flex-wrap: wrap;
        padding: 14px 16px;
        gap: 4px;
    }
    .schedule-day {
        min-width: auto;
        width: 100%;
        font-size: 0.95em;
    }
    .schedule-campus {
        font-size: 0.95em;
        flex: 1;
    }
    .schedule-item .btn-signup {
        font-size: 0.8em;
        padding: 6px 18px;
    }
}

/* ==========================================================================
   Scripture Section
   ========================================================================== */
section.prayer-scripture {
    background-color: #2a5a62 !important;
    padding: 50px 0 !important;
    margin: 0 !important;
}

section.prayer-scripture blockquote {
    font-size: 1.4em;
    line-height: 1.7;
    color: #fff !important;
    font-style: italic;
    border-left: 4px solid #5dc5bd;
    padding-left: 25px;
    margin: 0;
    background: transparent !important;
}

section.prayer-scripture .scripture-ref {
    display: block;
    font-style: normal;
    font-size: 0.75em;
    color: #bdc3c7 !important;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    section.prayer-scripture blockquote {
        font-size: 1.2em;
    }
}

/* ==========================================================================
   Thank You Section
   ========================================================================== */
section.prayer-thankyou {
    background: linear-gradient(135deg, #1c3742 0%, #152e37 100%) !important;
    padding: 60px 0 !important;
    text-align: center;
    margin: 0 !important;
}

section.prayer-thankyou h2 {
    color: #fff !important;
    font-size: 2.2em;
    margin: 0;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    section.prayer-thankyou h2 {
        font-size: 1.8em;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.mg-t-lg { margin-top: 40px !important; }
.mg-b-lg { margin-bottom: 40px !important; }