* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dusk-blue: #274C77;
    --steel-blue: #6096BA;
    --bordeaux: #4A051C;
    --icy-blue: #A3CEF1;
    --off-white: #E7ECEF;
}





/* FADE-IN ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--bordeaux);
    background: var(--off-white);
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, .section-title {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

h1 { font-weight: 700; letter-spacing: -0.02em; }
.section-title { 
    font-weight: 400; 
    letter-spacing: -0.015em;
}

.card h3, .news-card h3, .find-us-content h2 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

p, .card p, .news-card p {
    font-family: 'Inter', sans-serif;
}

.hero-subtitle, .find-us-content p {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
}

.read-more, nav a, .nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* NAVBAR */
header {
    background: var(--off-white);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(175, 52, 62, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dusk-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a:hover {
    background: rgba(175, 52, 62, 0.08);
    color: var(--dusk-blue);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--bordeaux);
    border-radius: 1px;
    transition: 0.3s ease;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 2rem 4rem;
    overflow: hidden;
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}


@keyframes heroGlow {
    0%, 100% { 
        filter: blur(0.5px) brightness(1.02);
        opacity: 0.82;
    }
    50% { 
        filter: blur(0.8px) brightness(1.04);  /* Minimal change */
        opacity: 0.88;
    }
}


.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    background: var(--icy-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    letter-spacing: -2px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 80px rgba(163, 207, 241, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--off-white);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 80px rgba(163, 207, 241, 0.2);
    /* text-shadow: 0 6px 25px rgba(0,0,0,1); */
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--dusk-blue), var(--steel-blue));
    color: var(--off-white);
    padding: 1.1rem 3rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(175, 52, 62, 0.25);
}

.cta-primary:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 15px 35px rgba(175, 52, 62, 0.35); 
}

.cta-secondary {
    background: rgba(255,255,255,0.9);
    color: var(--dusk-blue);
    padding: 1.1rem 3rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(175, 52, 62, 0.2);
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: white;
    border-color: var(--dusk-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* STANDARD CONTENT SECTIONS */
.content-section {
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 1;
}

/* SERVICES SECTION */
#services {
    background: var(--off-white)
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--dusk-blue);
    margin-bottom: 4rem;
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--steel-blue), var(--dusk-blue));
    border-radius: 2px;
}

/* SERVICES CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Update your existing .cards-grid and .news-grid rules */
.cards-grid .card,
.news-grid .news-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-play-state: paused; /* Key: Pauses animation until triggered */
    
}
.news-grid .news-card {
    background: 
        linear-gradient(145deg, rgba(255,255,255,0.95), rgba(163,206,241,0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="glass" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(163,206,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23glass)"/></svg>');
    border-image: linear-gradient(45deg, var(--cathedral-gold), var(--stained-glass-purple)) 1;
}

.cards-grid .card:nth-child(1) { animation-delay: 0.05s; }
.cards-grid .card:nth-child(2) { animation-delay: 0.1s; }
.cards-grid .card:nth-child(3) { animation-delay: 0.15s; }
.cards-grid .card:nth-child(4) { animation-delay: 0.2s; }
.news-grid .news-card:nth-child(1) { animation-delay: 0.05s; }
.news-grid .news-card:nth-child(2) { animation-delay: 0.1s; }
.news-grid .news-card:nth-child(3) { animation-delay: 0.15s; }
.news-grid .news-card:nth-child(4) { animation-delay: 0.2s; }

.card {
    background: rgba(39, 76, 119, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(163, 206, 241, 0.4);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(163, 206, 241, 0.3);
    background: var(--steel-blue);
    border-color: rgba(163, 206, 241, 0.6);
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--off-white);
    transition: transform 0.3s ease;
}

.card:hover .card-icon { 
    transform: scale(1.1); 
}

/* NEWS SECTION */
#news {
    padding: 8rem 2rem 6rem;
    background: var(--dusk-blue);
    position: relative;
    overflow: hidden;
    padding-bottom: 12rem;
}

#news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--dusk-blue);
    z-index: 1;
}

#news .section-title {
    text-align: left;
    margin-left: 25%;
    margin-right: auto;
    max-width: 600px;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--off-white);
    position: relative;
    z-index: 2;
}

#news .section-title::after { 
    display: none; 
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.news-card {
    background: var(--icy-blue);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(163,206,241,0.3);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(96, 150, 186, 0.15);
}

/* Remove the old ::before hover rules and replace with this */
.card,
.news-card {
    position: relative;
    overflow: hidden; /* Prevents flash */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::before,
.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover::before,
.news-card:hover::before {
    left: 100%;
    opacity: 1;
}
#news .news-date {
    background: linear-gradient(135deg, var(--dusk-blue), var(--steel-blue));
    color: white;
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    box-shadow: 0 6px 20px rgba(96, 150, 186, 0.3);
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bordeaux);
    margin: 0 0 1.2rem 0;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

.news-card p {
    color: var(--bordeaux);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border: 2px solid rgba(96, 150, 186, 0.2);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 150, 186, 0.1), transparent);
    transition: left 0.5s;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--steel-blue), var(--dusk-blue));
    transition: left 0.3s ease;
}

.read-more:hover::after {
    left: 0;
}

.read-more:hover {
    color: var(--dusk-blue);
    transform: translateX(8px);
    border-color: rgba(96, 150, 186, 0.4);
    box-shadow: 0 8px 25px rgba(96, 150, 186, 0.2);
}

.read-more:hover::before {
    left: 100%;
}

/* FIND US / USEFUL LINKS SECTION - FIXED OVERLAP */
#find-us {
    padding: 8rem 2rem 6rem;
    background: var(--off-white);
    position: relative;
    z-index: 1;
    margin-top: 0; /* No overlap */
    
}

.find-us-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 12rem;
}

.find-us-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dusk-blue);
    margin-bottom: 2rem;
    font-weight: 400;
}

.find-us-content p {
    font-size: 1.3rem;
    color: var(--bordeaux);
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero { padding: 120px 1rem 4rem; }
    .content-section, #news, #find-us { 
        padding: 6rem 1rem 4rem; 
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger { display: flex; }
    nav { justify-content: space-between; }
    
    #news .section-title {
        margin-left: 0;
        text-align: center;
    }
}


/* ==========================================================================
   FIND US SECTION
   ========================================================================== */
#find-us {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

#find-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    /* background: var(--icy-blue); */
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.find-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.find-us-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--dusk-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.find-us-content p {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dusk-blue);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(163,206,241,0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(96, 150, 186, 0.15);
    border-color: rgba(96, 150, 186, 0.3);
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--steel-blue), var(--dusk-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(96, 150, 186, 0.2);
    height: 400px;
    background: #e9f2ff;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}







/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--dusk-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--off-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section a {
    color: var(--off-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--off-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--off-white);
    border-color: var(--off-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ==========================================================================
   SECTION SPACING
   ========================================================================== */
#services {
    padding-bottom: 12rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .cards-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .news-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    #news .section-title {
        margin-left: 0;
        text-align: center;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    nav {
        justify-content: space-between;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

        #find-us {
        padding: 6rem 2rem 4rem;
    }
    
    .find-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .find-us-content h2 {
        margin-left: 0;
    }
    
    .map-container {
        height: 300px;
        margin: 0 1rem;
    }
    
    .contact-item {
        justify-content: center;
        padding: 1.2rem;
    }
}

 /* ==========================================================================
   MASS TIMES - PERFECT UNIFIED SINGLE LINE
   ========================================================================== */

/* TINY Hero */
.mass-times-hero {
    padding: 120px 2rem 1.5rem;
    background: var(--off-white);
    text-align: center;
}

.mass-times-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--bordeaux);
    margin: 0;
    letter-spacing: -1px;
}

/* Unified Schedule */
.unified-schedule {
    padding: 2rem 2rem 4rem;
}

.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-group {
    margin-bottom: 2.5rem;
}

.schedule-group:last-child {
    margin-bottom: 0;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(96, 150, 186, 0.3);
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bordeaux);
}

.group-header i {
    color: var(--steel-blue);
    font-size: 1.2rem;
    width: 24px;
}

.schedule-line {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(163, 206, 241, 0.15);
    font-size: 1.1rem;
    line-height: 1.5;
}

.schedule-line:last-child {
    border-bottom: none;
}

.schedule-line i {
    color: var(--steel-blue);
    font-size: 1.1rem;
    width: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.day-label {
    font-weight: 600;
    color: var(--dusk-blue);
    min-width: 80px;
    margin-right: 1rem;
}

.schedule-line span:last-child {
    color: var(--bordeaux);
    font-weight: 500;
    flex: 1;
}

.holy-note-line span:last-child {
    color: #8B4513;
    font-style: italic;
}

/* Newsletter CTA (ORIGINAL beautiful version) */
.newsletter-cta {
    background: linear-gradient(135deg, var(--icy-blue) 0%, var(--steel-blue) 100%);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-line {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
        gap: 0.25rem;
    }
    
    .group-header {
        font-size: 1.25rem;
    }
    
    .schedule-line span:last-child {
        font-size: 1rem;
    }
}
/* Newsletter Note in Hero */
.newsletter-note-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(163, 206, 241, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--dusk-blue);
    font-style: italic;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(163, 206, 241, 0.3);
}

.newsletter-note-hero i {
    color: var(--steel-blue);
    font-size: 0.85rem;
    width: 14px;
}








/* Mass times page */
.full-page-banner {
    /* FULL PAGE STATIC IMAGE (no parallax cut-off) */
    /* background: linear-gradient(rgba(163,206,241,0.65), rgba(74,5,28,0.65)),
                url('SP.jpg') center/cover no-repeat; */
    background: 
                url('SP.jpg') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    padding: 140px 2rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.full-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(163,206,241,0.25) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212,175,55,0.18) 0%, transparent 50%);
    animation: fullPageGlow 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes fullPageGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.95; }
}

/* CENTERED HERO */
.hero-container {
    max-width: 1000px;
    margin: 0 auto 6rem auto; /* Centered */
    text-align: center;       /* Centered text */
    position: relative;
    z-index: 3;
}

.full-page-banner h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(231,236,239,0.99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.newsletter-note-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(30px);
    color: var(--dusk-blue);
    padding: 1.3rem 3rem;
    border-radius: 50px;
    border: 1px solid rgba(163,206,241,0.5);
    font-weight: 500;
    font-size: 1.15rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    max-width: 550px;
    margin: 0 auto;
}

/* CENTERED SCHEDULE */
.schedule-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
    display: grid;
    gap: 2.5rem;
    margin: 0 auto; /* Centered */
}

/* BORDEAUX ICONS - NO BACKGROUND */
.group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dusk-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(163,206,241,0.3);
}

.group-header i {
    color: var(--bordeaux) !important; /* BORDEAUX COLOR */
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
    /* NO BACKGROUND - just clean icon */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Subtle glow instead */
    text-shadow: 0 2px 8px rgba(74,5,28,0.4);
}

.schedule-line i {
    color: var(--bordeaux) !important; /* BORDEAUX for all icons */
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    text-shadow: 0 1px 4px rgba(74,5,28,0.3);
}

.newsletter-note-hero i {
    color: var(--bordeaux) !important; /* Hero icon too */
    font-size: 1.3rem;
}

/* Schedule cards */
.schedule-group {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(163,206,241,0.4);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schedule-group:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(96,150,186,0.3);
    border-color: rgba(96,150,186,0.6);
}

.day-label {
    font-weight: 600;
    color: var(--dusk-blue);
    min-width: 120px;
}

.schedule-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .full-page-banner {
        padding: 110px 1rem 6rem;
    }
    
    .schedule-group {
        padding: 2rem;
    }
    
    .schedule-line {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}







/* NEWS */
/* Bulletin Cards */
/* NEWS PAGE - FULLY CENTERED LAYOUT */
.news-hero {
    background: linear-gradient(135deg, var(--dusk-blue), var(--steel-blue));
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.news-hero .hero-container {
    text-align: center;
    font-size: 4rem;
}

.news-hero .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 2.4rem;
    max-width: 500px;
    margin: 0 auto;
}

/* BULLETINS - FULL WIDTH CENTERED */
.bulletins-section {
    padding: 4rem 2rem;
}

.bulletins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.bulletin-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(163,206,241,0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center; /* CENTER ALL TEXT */
}

.bulletin-header {
    display: flex;
    align-items: center;
    justify-content: center; /* CENTER ICON + DATE */
    gap: 1rem;
    margin-bottom: 1rem;
}

.bulletin-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dusk-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.bulletin-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--dusk-blue), var(--steel-blue));
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

/* PRIEST MESSAGE - FULLY CENTERED */
.priest-message {
    background: linear-gradient(135deg, rgba(163,206,241,0.4), rgba(96,150,186,0.25));
    padding: 4rem 2rem;
    text-align: center;
}

.message-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.priest-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dusk-blue), var(--steel-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(39,76,119,0.3);
}

.message-content {
    text-align: center;
}

.message-content h3 {
    font-size: 1.6rem;
    color: var(--dusk-blue);
    margin-bottom: 1rem;
}

.message-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.message-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.read-more {
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dusk-blue);
}

/* EVENTS - ORIGINAL COLOUR SCHEME, NO TOP GRADIENT */
.events-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(163,206,241,0.08) 0%, 
        rgba(96,150,186,0.04) 50%, 
        rgba(39,76,119,0.06) 100%);
    position: relative;
    overflow: hidden;
}

.events-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 70px;
}

/* ORIGINAL COLOUR TIMELINE LINE */
.events-timeline::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--dusk-blue) 0%, 
        var(--steel-blue) 50%, 
        var(--icy-blue) 100%
    );
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(96,150,186,0.4),
        inset 0 0 10px rgba(255,255,255,0.3);
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(96,150,186,0.3));
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(163,206,241,0.2);
}

.event-date {
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.95), 
        rgba(255,255,255,0.85));
    position: relative;
    padding: 1.5rem 1.5rem;
    border-radius: 24px;
    font-weight: 700;
    text-align: center;
    min-width: 90px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8),
        6px 6px 12px rgba(96,150,186,0.2),
        -6px -6px 12px rgba(163,206,241,0.2);
    z-index: 3;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(163,206,241,0.4);
    position: relative;
}

/* Stained glass effect with original colors */
.event-date::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        var(--dusk-blue), var(--steel-blue), var(--icy-blue), var(--dusk-blue)
    );
    border-radius: 26px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.date-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dusk-blue);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Crimson Text', serif;
    letter-spacing: -1px;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--steel-blue);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* EVENT CONTENT - NO TOP GRADIENT BAR */
.event-content {
    flex: 1;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(163,206,241,0.3);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.15),
        0 0 30px rgba(96,150,186,0.3);
}

.event-content h4 {
    font-size: 1.7rem;
    font-family: 'Crimson Text', serif;
    color: var(--dusk-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.event-content p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* EVENT META - DATE & TIME ONLY */
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(163,206,241,0.3);
}

.event-meta span {
    color: var(--steel-blue);
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(163,206,241,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(163,206,241,0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* DATE/TIME BADGES */
.date-time-badge {
    background: linear-gradient(145deg, rgba(96,150,186,0.2), rgba(39,76,119,0.15));
    color: var(--dusk-blue);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    border: 1px solid rgba(96,150,186,0.4);
    box-shadow: 0 4px 12px rgba(96,150,186,0.2);
    text-transform: none;
    letter-spacing: 0.2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .news-hero {
        padding: 80px 1.5rem 3rem;
        min-height: 50vh;
    }
    
    .bulletins-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .past-news .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-timeline {
        padding-left: 60px;
        max-width: 100%;
    }
    
    .events-timeline::after {
        left: 30px;
        width: 3px;
    }
    
    .event-item {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .event-content {
        padding: 2rem 1.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* PRAYER HERO - IMAGE BACKGROUND (DELETE ALL OTHER .prayer-hero RULES) */
:root {
    --dusk-blue: #274C77;
    --steel-blue: #6096BA;
    --bordeaux: #4A051C;
    --icy-blue: #A3CEF1;
    --off-white: #E7ECEF;
}

/* RELIGIOUS HERO - Darker, more solemn */
.prayer-hero {
    background: 
        linear-gradient(rgba(39, 76, 119, 0.30), rgba(26, 42, 68, 0.35)),
        url('prayer2.jpg');
    background-size: cover !important;
    background-position: center !important;
    min-height: 70vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 140px 2rem 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.prayer-hero h1 {
    font-size: 4.2rem !important;
    font-family: 'Crimson Text', serif;
    color: #fdfdfd !important;
    text-shadow: 0 3px 15px rgba(0,0,0,0.9);
    margin-bottom: 1.5rem;
}

.prayer-hero .hero-subtitle {
    color: rgba(255,255,255,0.92) !important;
    font-size: 1.9rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* CLEAN RELIGIOUS CARDS - NO TOP/SIDE COLORS */
.prayer-category {
    background: #ffffff;
    border: 3px solid var(--icy-blue);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.prayer-category:hover {
    border-color: rgba(39, 76, 119, 0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.category-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbfc;
    border-bottom: 1px solid rgba(39, 76, 119, 0.15);
    transition: all 0.3s ease;
}

.category-header h3 {
    font-size: 1.6rem;
    font-family: 'Crimson Text', serif;
    color: var(--dusk-blue);
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--dusk-blue);
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
    font-weight: 900;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.category-content.active {
    max-height: 2000px;
    padding: 1.8rem 2rem;
}

/* ELEGANT RELIGIOUS STEP NUMBERING */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--dusk-blue);
    background: #fafbfc;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step::before {
    content: attr(data-step);
    position: absolute;
    left: -1.2rem;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--dusk-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(39, 76, 119, 0.3);
}

.step:hover {
    background: #f8f9fa;
    border-left-color: var(--steel-blue);
}

.step-content {
    margin-left: 0.5rem;
    flex: 1;
}

/* ROSARY HEADERS */
.prayer-guide h4 {
    font-family: 'Crimson Text', serif;
    color: var(--dusk-blue);
    margin: 0 0 1.2rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(39, 76, 119, 0.3);
    display: inline-block;
}

/* CLEAN MYSTERIES */
.mysteries-tabs {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fafbfc;
    border: 1px solid rgba(39, 76, 119, 0.15);
    border-radius: 8px;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(39, 76, 119, 0.3);
    border-radius: 20px;
    color: var(--dusk-blue);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Crimson Text', serif;
}

.tab-btn:hover {
    border-color: var(--dusk-blue);
    background: rgba(39, 76, 119, 0.05);
}

.tab-btn.active {
    background: var(--dusk-blue) !important;
    color: white !important;
    border-color: var(--dusk-blue) !important;
}

.mystery-list {
    display: none !important;
}

.mystery-list.active {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mystery-list ol {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    background: #f8f9fa;
    border-left: 3px solid var(--dusk-blue);
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
}

.mystery-list li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* RELIGIOUS STATIONS */
/* STATIONS WITH IMAGES - RELIGIOUS */
/* BIGGER STATIONS - 3x SIZE */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Bigger cards */
    gap: 1.5rem; /* Bigger gaps */
    margin-top: 2rem;
}

.station {
    text-align: center;
    padding: 2rem 1.5rem; /* 3x padding */
    background: #fafbfc;
    border: 2px solid rgba(74, 5, 28, 0.15); /* Thicker border */
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Deeper shadow */
}

.station:hover {
    border-color: var(--bordeaux);
    background: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 5, 28, 0.15);
}

.station-image {
    width: 180px; /* 3x bigger (60→180px) */
    height: 180px;
    margin: 0 auto 1.2rem;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 25px rgba(74, 5, 28, 0.25);
    border: 3px solid rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.station:hover .station-image {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(74, 5, 28, 0.3);
}

.station h5 {
    font-size: 1.3rem; /* 3x bigger text */
    color: var(--dusk-blue);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: 'Crimson Text', serif;
    padding: 0 1rem;
    letter-spacing: -0.5px;
}

/* RESPONSIVE - Still 2 columns on mobile */
@media (max-width: 768px) {
    .stations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .station {
        padding: 1.5rem 1rem;
    }
    
    .station-image {
        width: 120px;
        height: 120px;
    }
    
    .station h5 {
        font-size: 1.1rem;
    }
}

/* ROSARY INSTRUCTIONS - NO CIRCLES, SUPER CLEAN */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Even tighter */
    margin: 1.2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem; /* Super compact */
    border-left: 2px solid var(--dusk-blue);
    background: transparent; /* No background */
    margin-left: 0.3rem;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    border-left-color: var(--steel-blue);
    background: rgba(248, 249, 250, 0.5);
}

.step::before {
    content: none; /* NO CIRCLES! */
}

.step-content {
    margin-left: 0;
    flex: 1;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

/* CLEAN PRAYER TEXT */
.prayer-card,
.novena-card {
    background: #ffffff;
    border: 1px solid rgba(39, 76, 119, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.prayer-card h4,
.novena-card h4 {
    font-family: 'Crimson Text', serif;
    color: var(--dusk-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(39, 76, 119, 0.3);
}

.prayer-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    font-family: 'Crimson Text', serif;
}

.prayer-text p {
    margin: 0.8rem 0;
    padding: 1rem 1rem 1rem 1.5rem;
    background: #f8f9fa;
    border-left: 3px solid var(--dusk-blue);
    border-radius: 0 4px 4px 0;
}

/* AUTHENTIC CATHOLIC TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@400,400i,600,600i,700&family=EB+Garamond:ital,wght@400,400i,500,500i,600,700&family=Lora:ital,wght@400,500,600&family=Playfair+Display:ital,wght@400,500,600,700&display=swap');

:root {
    --heading-font: 'EB Garamond', 'Crimson Text', Georgia, serif;
    --body-font: 'Lora', 'Crimson Text', Georgia, serif;
    --display-font: 'Playfair Display', 'EB Garamond', serif;
}

/* HERO - Majestic Display */
.prayer-hero h1 {
    font-family: var(--display-font) !important;
    font-weight: 700;
    font-size: 4.5rem !important; /* Slightly bigger */
    letter-spacing: -1.5px;
}

/* CATEGORY HEADERS - Traditional Book */
.category-header h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: -0.3px;
}

/* PRAYER TITLES - Liturgical */
.prayer-card h4,
.novena-card h4,
.prayer-guide h4,
.mystery-list h4 {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* PRAYER BODY - Missal-like */
.prayer-text,
.step-content,
.mystery-list li,
.station h5 {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.65;
}

/* BUTTONS - Elegant Serif */
.tab-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: -0.1px;
}

/* Toggle Icon - Keep simple */
.toggle-icon {
    font-family: 'Georgia', serif;
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .prayer-grid { padding: 0 1rem; }
    .prayer-hero h1 { font-size: 2.8rem; }
    .category-header { 
        padding: 1.2rem 1.5rem; 
        flex-direction: column;
        gap: 0.5rem;
    }
    .category-content.active { padding: 1.5rem 1.5rem; }
    .step { padding: 0.8rem 1rem; }
}


/* Novena Collapsed States */
.novena-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}

.novena-body.active {
    max-height: 500px;
    padding: 15px;
}

.novena-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: var(--light-bg);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.novena-header:hover {
    background: rgba(139, 69, 19, 0.1);
}

.novena-header .toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary-brown);
}

/* Initially collapsed state */
.category-content:not(.active) .novena-body {
    max-height: 0 !important;
    padding: 0 15px;
}