@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Manjari:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manjari:wght@400;700&family=Meera+Inimai&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-head {
    background-color: #f4eee0; 
    padding: 20px 0;
    border-bottom: 3px solid #d4af37;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

/* This is your Base Style */
.side-img {
    height: 150px; /* Changed this to 150px for a better look, change to 300 if you want it huge */
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.header-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px; /* Set desktop size here */
    color: #c41e3a;
    letter-spacing: 1px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px; /* Set desktop size here */
    color: #002147;
    font-weight: 600;
    letter-spacing: 3px;
}

/* MOBILE SETTINGS (Small Screens) */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 0.8fr 3fr 0.8fr;
        gap: 5px;
    }
    .side-img {
        height: 55px; /* Tiny for phones */
    }
    .main-title {
        font-size: 15px;
        letter-spacing: 0;
    }
    .sub-title {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* TABLET SETTINGS */
@media (min-width: 769px) and (max-width: 1023px) {
    .side-img {
        height: 100px;
    }
    .main-title {
        font-size: 28px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-head {
    background-color: #f4eee0; 
    padding: 20px 0;
    border-bottom: 3px solid #d4af37;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

/* This is your Base Style */
.side-img {
    height: 150px; /* Changed this to 150px for a better look, change to 300 if you want it huge */
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.header-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px; /* Set desktop size here */
    color: #c41e3a;
    letter-spacing: 1px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px; /* Set desktop size here */
    color: #002147;
    font-weight: 600;
    letter-spacing: 3px;
}

/* MOBILE SETTINGS (Small Screens) */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 0.8fr 3fr 0.8fr;
        gap: 5px;
    }
    .side-img {
        height: 55px; /* Tiny for phones */
    }
    .main-title {
        font-size: 15px;
        letter-spacing: 0;
    }
    .sub-title {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* TABLET SETTINGS */
@media (min-width: 769px) and (max-width: 1023px) {
    .side-img {
        height: 100px;
    }
    .main-title {
        font-size: 28px;
    }
}

/* --- NAVIGATION BAR --- */
.main-nav {
    background-color: #002147;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #f4eee0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* --- THE "MODEL" DROPDOWN (DESKTOP) --- */
.dropdown { position: relative; }

.dropdown-content {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #f4eee0; 
    min-width: 250px;
    top: 100%; /* Sits exactly at the bottom of the blue nav bar */
    left: 0;
    list-style: none;
    padding: 0;
    transition: all 0.4s ease-in-out;
    transform: translateY(15px); /* This creates the "slowly down" effect */
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    pointer-events: none;
    border-top: 3px solid #d4af37; /* Pro detail from image_c08336.png */
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); /* Slides up to the bar */
        pointer-events: auto;
    }
}


/* --- MOBILE HAMBURGER (BREATHING SPACE) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px; /* Increased gap for breath space */
    z-index: 1001; 
}

.bar {
    width: 28px; /* Slightly wider for better look */
    height: 1px;
    background-color: #f4eee0;
    transition: 0.3s;
}

 
/* Desktop Separator Lines */
.dropdown-content li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); 
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    padding: 12px 25px; /* Indent space on the left */
    display: block;
    font-size: 14px;
    color: #002147; 
    text-transform: capitalize;
    text-align: left;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-content li a:hover {
    background-color: #e9e2d0; /* Subtle hover color like image_c08336.png */
    color: #002147;
    padding-left: 30px; /* Slight move-right animation on hover */
}

/* --- MOBILE RESPONSIVE (Arranged for Pro View) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        gap: 3px; /* Professional breathing space between bars */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #002147;
        position: absolute;
        top: 100%; /* FIXED: This kills the white bar gap for good */
        left: 0;
        text-align: right;
        padding: 5px 0;
        border-top: 0px solid rgba(255,255,255,0.1); /* Subtle divider from top head */
    }

    .nav-links.active { display: flex; }

    /* Main List Item Spacing */
    .nav-links li {
        width: 100%;
        border-bottom: 2px solid rgba(255,255,255,0.05);
    }

    .nav-links li a {
        padding: 2px 25px; /* Comfortable tap target for fingers */
        display: block;
        color: #f4eee0;
        transition: 0.5s ease;
    }

    /* MOBILE DROPDOWN (Fresh Reset Style) */
    .dropdown-content {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        background-color: #001a38; /* Darker navy for contrast */
        border-right: 4px solid #d4af37; /* The Gold side-indicator */
        border-top: none; /* Removed desktop gold border */
        padding: 0px;
        transition: all 0.4s ease-in-out;
    }


    /* Remove lines between sub-items for a "Fresh" look */
    .dropdown-content li { border-bottom: none; }

    .dropdown-content li a {
        color: #cccccc;
        text-align: right;
        padding: 6px 45px; /* Indented from right */
        font-size: 13px;
        text-transform: capitalize;
        transition: 0.3s ease; /* Smooth color change */
    }
}

/* GOLD HOVER EFFECT FOR SUB-MENU ITEMS */
    .dropdown-content li a:hover 
    .dropdown-content li a:active{
        color: #d4af37;
        background-color: transparent;
    }

/* --- FIXED HAMBURGER TO X ANIMATION --- */
.bar { 
    width: 28px; 
    height: 3px; 
    background-color: #f4eee0; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother curve */
}

/* Perfect X alignment */
#mobile-menu.is-active .bar:nth-child(2) { 
    opacity: 0; 
}
#mobile-menu.is-active .bar:nth-child(1) { 
    transform: translateY(9px) rotate(45deg); 
}
#mobile-menu.is-active .bar:nth-child(3) { 
    transform: translateY(-9px) rotate(-45deg); 
}

/* --- REPAIR: ADD THIS TO THE VERY BOTTOM OF THE FILE --- */
.dropdown-content.open {
    max-height: 500px !important; 
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    padding: 5px 0 !important;
}
























































/* =========================================
   MAIN FOOTER STYLES
   ========================================= */
.main-footer {
    background-color: #002147; /* Signature Deep Blue */
    color: #ffffff;
    padding: 80px 20px 30px; /* Increased top padding for a grand feel */
    font-family: 'Poppins', sans-serif;
    border-top: 5px solid #D4AF37; /* Slightly thicker Gold Top Border */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; 
    gap: 50px;
}

/* --- Column 1: Brand & Socials --- */
.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #D4AF37;
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-desc {
    line-height: 1.8;
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Social Media Icons Styling */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background-color: #D4AF37;
    color: #002147;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

/* --- Column 2: Links --- */
.footer-col h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.footer-links a:hover { 
    color: #D4AF37; 
    padding-left: 8px; 
}

/* --- Column 3: Contact Info --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.gold-icon {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Bottom Bar --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #a0aec0;
    margin: 5px 0;
}

.dev-credit { 
    font-style: italic; 
    opacity: 0.6;}

    /* --- Mobile Optimization (Fixed for S23 Ultra) --- */
@media (max-width: 768px) {
    .main-footer {
        background: linear-gradient(180deg, #002147 0%, #00152e 100%);
        padding: 50px 15px 30px; /* Slightly less side padding */
        overflow-x: hidden;      /* Prevents any horizontal scrolling */
    }

    .footer-container {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px;
        width: 100%;             /* Ensures container stays in bounds */
    }

    .footer-col {
        width: 100%;
        padding: 0 10px;         /* Padding inside each column */
        box-sizing: border-box;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    /* THE CONTACT FIX */
    .contact-item {
        flex-direction: column;  /* Icon on top */
        align-items: center;     /* Everything centered */
        gap: 5px;
        margin-bottom: 25px;
        width: 100%;
    }

    .contact-item p {
        font-size: 0.9rem;
        word-wrap: break-word;   /* This stops the email from going outside */
        overflow-wrap: break-word;
        max-width: 280px;        /* Keeps the text block narrow enough */
        margin: 0 auto;
    }

    .gold-icon {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .footer-links a:hover {
        padding-left: 0; 
    }
}





















/* --- HOLY WEEK HERO STYLES --- */
.hw-hero {
    position: relative;
    height: 50vh; /* Full screen for the first page */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF9F2; /* Fallback cream color */
}

.hw-hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* Makes it subtle so text is readable */
}

.hw-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Spreads content like the brochure */
    text-align: center;
    padding: 40px 0;
}

/* Bible Quote Styling */
.hw-bible-quote {
    font-family: 'Manjari', sans-serif;
    font-size: 1.2rem;
    color: #5D2E1F;
    font-style: italic;
    font-weight: 500;
    margin-top: 20px;
    animation: fadeInDown 1.5s ease;
}

/* The Artistic Cross */
.hw-cross-container {
    margin: 20px auto;
    max-width: 300px;
    animation: slowGlow 4s infinite alternate;
}
.hw-cross-art {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(217, 123, 48, 0.3));
}

/* Main Title Heading */
.hw-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #2C1810;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.hw-date-badge {
    display: inline-block;
    background: #5D2E1F;
    color: #D4AF37; /* Gold text on dark brown */
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
}


/* --- ANIMATIONS FOR ELITE FEEL --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slowGlow {
    from { filter: drop-shadow(0 0 10px rgba(217, 123, 48, 0.2)); }
    to { filter: drop-shadow(0 0 25px rgba(217, 123, 48, 0.5)); }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .hw-main-title { font-size: 2rem; }
    .hw-date-badge { font-size: 1.1rem; }
    .hw-cross-container { max-width: 200px; }
}


/* --- LENT PAGE 2 STYLES --- */
.lent-page-wrapper {
    background-color: #0d0d0d;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

.church-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Message Card */
.lent-message-card {
    background: #151515;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lent-top-icon i {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lent-main-salutation {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.lent-preface-content p {
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.05rem;
}

/* Signatures */
.lent-vicar-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.lent-vicar-name {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.lent-vicar-desig {
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
}

/* Palm Sunday Card */
.lent-day-schedule-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}

.lent-day-header {
    background: linear-gradient(145deg, #1a1a1a, #111);
    padding: 40px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.lent-palm-badge {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lent-malayalam-title {
    font-size: 3.5rem;
    color: #fff;
    margin: 10px 0;
}

.lent-theme-text {
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.lent-scripture-box {
    padding: 30px 50px;
    font-style: italic;
    background: #151515;
    text-align: center;
    color: #aaa;
    line-height: 1.6;
    border-bottom: 1px solid #222;
}

/* Timeline & Hover */
.lent-timeline-item {
    display: flex;
    padding: 30px 40px;
    border-bottom: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.lent-timeline-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.02);
    box-shadow: inset 5px 0 0 #d4af37;
}

.lent-time-pill {
    background: #d4af37;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    height: fit-content;
    min-width: 140px;
    text-align: center;
    margin-right: 30px;
}

.lent-event-content h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.lent-ward-info {
    margin-top: 10px;
    color: #d4af37;
    font-weight: 600;
}

.lent-highlight-row {
    background: rgba(212, 175, 55, 0.02);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .lent-vicar-row { grid-template-columns: 1fr; text-align: center; }
    .lent-timeline-item { flex-direction: column; text-align: center; }
    .lent-time-pill { margin: 0 auto 20px auto; }
    .lent-malayalam-title { font-size: 2.5rem; }
    .lent-message-card { padding: 25px; }
}


/* --- LENT PAGE 3 STYLES (Cream Background) --- */
.lent-page-three {
    background-color: #fdfaf5; /* Cream White */
    padding: 80px 0;
    color: #2c2c2c;
}

/* Retreat Box */
.lent-retreat-box {
    border: 2px dashed #d4af37;
    background: #fff;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 12px;
}

.lent-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.lent-icon-circle {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.lent-date-tag-dark {
    background: #333;
    color: #d4af37;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
}

.lent-retreat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.lent-confession-tag {
    margin-top: 20px;
    padding: 15px;
    background: #f9f2e6;
    border-left: 4px solid #d4af37;
}

/* Thursday Card */
.lent-thursday-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.lent-day-header-light {
    text-align: center;
    margin-bottom: 30px;
}

.lent-icon-large i {
    font-size: 3rem;
    color: #800000; /* Maroon for Thursday */
    margin-bottom: 10px;
}

.lent-malayalam-title-lg {
    font-size: 3.5rem;
    color: #800000;
    margin: 10px 0;
}

.lent-scripture-quote-dark {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    padding: 0 50px;
}

.lent-event-row-light {
    display: flex;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.lent-hover-gold:hover {
    background: #fffdf0;
    transform: translateX(10px);
    box-shadow: -5px 0 0 #d4af37;
}

.lent-time-pill-dark {
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
    margin-right: 25px;
}

/* Vigil Table */
.lent-vigil-section {
    margin-top: 40px;
}

.lent-vigil-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

.lent-vigil-table {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.lent-table-header {
    background: #004d40;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 15px 25px;
    font-weight: bold;
}

.lent-table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.lent-table-row:hover {
    background: #f0f7f4;
}

.lent-time-col {
    font-weight: bold;
    color: #800000;
}

/* Clean Modern font for the whole Lent Section */
.lent-page-wrapper, .lent-page-three {
    font-family: 'Manjari', sans-serif;
}

/* Bold look for the Malayalam Titles */
.lent-malayalam-title, 
.lent-malayalam-title-lg, 
.lent-malayalam-title-sm {
    font-family: 'Manjari', sans-serif;
    font-weight: 700;
}

/* Elegant look for the Message/Preface paragraphs */
.lent-preface-content p, 
.lent-malayalam-text,
.lent-scripture-box p,
.lent-scripture-quote-dark p {
    font-family: 'Meera Inimai', sans-serif;
    line-height: 2; /* Essential for Malayalam clarity */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .lent-retreat-grid, .lent-table-header, .lent-table-row {
        grid-template-columns: 1fr;
    }
    .lent-event-row-light {
        flex-direction: column;
        text-align: center;
    }
    .lent-time-pill-dark {
        margin: 0 auto 15px auto;
    }
    .lent-malayalam-title-lg {
        font-size: 2.5rem;
    }
}


/* --- LENT FINAL PAGE: CSS --- */

.lent-final-page {
    background: #000;
    padding: 60px 0;
    font-family: 'Manjari', sans-serif;
    color: #fff;
}

/* Good Friday Box */
.lent-solemn-box {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    padding: 40px;
    border: 1px solid #330000;
    margin-bottom: 50px;
    border-radius: 15px;
}

.lent-header-center { text-align: center; margin-bottom: 40px; }
.lent-devotional-icon i { font-size: 3.5rem; color: #800000; margin-bottom: 15px; }
.lent-title-main { font-size: 3rem; color: #fff; margin: 10px 0; }
.lent-scripture-italic { font-family: 'Meera Inimai'; color: #888; font-style: italic; }

/* The Full Table & Hover */
.lent-full-vigil-table { border: 1px solid #222; border-radius: 10px; overflow: hidden; }
.lent-v-row { 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    padding: 20px; 
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ELITE HOVER EFFECT */
.lent-v-row:hover {
    background: rgba(128, 0, 0, 0.2);
    transform: translateX(10px);
    border-left: 5px solid #d4af37;
}

.lent-v-time { color: #d4af37; font-weight: bold; }
.lent-v-text { font-family: 'Meera Inimai'; color: #ccc; }
.lent-v-special { background: rgba(212, 175, 55, 0.05); }

/* Climax Service */
.lent-friday-climax { text-align: center; margin-top: 40px; }
.lent-climax-time { color: #ff4d4d; font-weight: bold; }
.lent-climax-desc { font-family: 'Meera Inimai'; font-size: 1.1rem; margin: 15px 0; }
.lent-procession-card { background: #000; padding: 25px; border: 1px solid #d4af37; border-radius: 8px; }

/* Holy Saturday Section */
.lent-saturday-box { 
    background: #0d0d0d; 
    padding: 40px; 
    border-radius: 15px; 
    border: 1px solid #1a1a33;
    margin-bottom: 50px;
}
.lent-time-circle { 
    background: #d4af37; color: #000; 
    width: 80px; height: 80px; 
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: bold; font-size: 0.9rem;
}
.lent-saturday-event { display: flex; gap: 30px; align-items: center; margin-top: 20px; }

/* EASTER GLORY CARD */
.lent-easter-gold-card {
    background: #fff;
    color: #000;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}
.lent-resurrection-icon i { font-size: 4rem; color: #d4af37; margin-bottom: 20px; }
.lent-easter-main-title { font-size: 4rem; color: #800000; }
.lent-easter-greeting h2 { font-family: 'Meera Inimai'; color: #d4af37; margin: 30px 0; }

/* THE FINAL FEAST HIGHLIGHT */
.lent-feast-highlight {
    background: #fdfaf5;
    border: 2px dashed #d4af37;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}
.lent-feast-title { color: #800000; font-size: 1.8rem; margin-top: 10px; }

/* Mobile optimization */
@media (max-width: 768px) {
    .lent-v-row { grid-template-columns: 1fr; gap: 10px; }
    .lent-easter-main-title { font-size: 2.5rem; }
    .lent-saturday-event { flex-direction: column; text-align: center; }
}



/* --- MINIMAL BOTTOM DOWNLOAD --- */
.lent-download-section {
    padding: 50px 20px;
    background: #000;
    display: flex;
    justify-content: center;
}

.lent-minimal-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    max-width: 600px;
    width: 100%;
    transition: 0.3s ease;
}

.lent-minimal-card:hover {
    border-color: #d4af37;
    background: #151515;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.lent-card-text h3 {
    font-family: 'Manjari', sans-serif;
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}

.lent-card-text p {
    color: #888;
    font-size: 0.85rem;
    margin: 5px 0 0 0;
}

.lent-download-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.lent-download-btn:hover {
    background: #d4af37;
    color: #000;
}

/* Responsive for S23 Ultra and other phones */
@media (max-width: 600px) {
    .lent-minimal-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
}







