/* Source: about.css */
.about-layout { display: flex; gap: 0; align-items: flex-start; justify-content: center; } .about-layout:has(.sidebar-nav:empty) { gap: 0; } .about-inline-img { width: 150px; height: auto; display: block; margin: 0; border-radius: 4px; } .symbolism-img { max-width: 100%; width: 900px; height: auto; display: block; border-radius: 4px; } .symbolism-image-container { width: 100%; display: flex; justify-content: flex-start; padding: 20px 0; } .name-text { flex: 1; min-width: 0; }
/* Source: authmodal.css */
/* Modal Overlay */ .auth-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 9999; backdrop-filter: blur(4px); /* This can sometimes cause child blur */ justify-content: center; align-items: center; } /* Modal Box */ .auth-modal-content { background: #ffffff; width: 90%; max-width: 420px; padding: 30px; border-radius: 12px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.4); text-align: center; /* SHARPENING FIX: Prevents parent blur from bleeding into text */ isolation: isolate; } .auth-modal-close { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #888; } /* Social Buttons */ .social-grid { display: flex; flex-direction: column; gap: 12px; margin: 25px 0; } .social-btn { display: flex; align-items: center; justify-content: flex-start; padding: 12px 20px; /* Added horizontal padding */ border: 1px solid #ddd; border-radius: 6px; font-family: inherit; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.2s ease; /* SHARPENING FIXES */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; transform: translateZ(0); /* Forces clean pixel rendering */ } .social-btn img { width: 20px; /* Adjusted size for better proportions */ height: 20px; /* Maintain aspect ratio */ margin-right: 25px; /* The gap between icon and text */ flex-shrink: 0; /* Prevents icon from squishing on mobile */ object-fit: contain; /* Ensures the SVG doesn't distort */ } /* Provider Colors */ .social-btn.google { background: #ffffff; color: #444; border: 1px solid #ddd; } .social-btn.microsoft { background: #2f2f2f; color: #ffffff; border: none; } .social-btn.facebook { background: #1877f2; color: #ffffff; border: none; } /* Hover states */ .social-btn:hover { filter: brightness(0.95); transform: translateY(-1px); } /* Divider Styling */ .auth-divider { margin: 25px 0; display: flex; align-items: center; text-align: center; color: #888; } .auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid #eee; } .auth-divider span { padding: 0 15px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; } /* Form Styling */ #auth-form input { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; /* Ensures padding doesn't push input out of box */ font-size: 16px; /* Prevents iOS auto-zoom */ }
/* Source: base.css */
:root { --brand-red: #8B0000; --ink-black: #1A1A1A; --paper-white: #F9F7F2; --soft-gray: #E0E0E0; --font-heading: 'Playfair Display', serif; --font-body: 'Georgia', serif; } @font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; /* Keeps text visible while loading */ src: url('/fonts/playfairdisplay.woff2') format('woff2'); } *, *::before, *::after { box-sizing: border-box; } body { background-color: var(--paper-white); color: var(--ink-black); font-family: var(--font-body); line-height: 1.6; margin: 0; } h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--brand-red); font-weight: 700; } a { color: var(--brand-red); text-decoration: underline; transition: opacity 0.3s; } a:hover { opacity: 0.7; } .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; } .scripture { font-style: italic; border-left: 4px solid var(--brand-red); padding: 20px 40px; margin: 30px 0; background: rgba(139, 0, 0, 0.05); } .scripture span { display: block; margin-top: 10px; font-weight: bold; font-style: normal; } .content-area { flex: 1; text-align: justify; text-justify: inter-word; text-align-last: left; max-width: 800px; margin: 0; width: 100%; } hr { border: 0; border-top: 1px solid var(--soft-gray); margin: 40px 0; } .hero-text { text-align: justify; text-justify: inter-word; text-align-last: center; margin: 20px auto; max-width: 800px; padding: 0 10px; letter-spacing: 0.01em; } .hero-text h1 { text-align: center; margin-bottom: 20px; } .hero-text p { margin-bottom: 30px; }
/* Source: blog.css */
/* --- BLOGS.CSS --- */ .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .blog-card { background: #ffffff; border: 1px solid var(--soft-gray); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; } .blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); } .blog-card-image img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--soft-gray); } .blog-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; } .blog-card-content h2 { font-size: 1.4rem; margin-top: 0; margin-bottom: 10px; } .blog-card-content p { font-size: 0.95rem; color: var(--ink-black); margin-bottom: 20px; flex-grow: 1; } .read-more { font-family: var(--font-heading); font-weight: bold; text-decoration: none; font-size: 0.9rem; color: var(--brand-red); } /* JOURNAL CONTENT STYLING */ .hanging-indent { padding-left: 30px !important; text-indent: -30px !important; margin-bottom: 15px; line-height: 1.6; text-align: left; text-align-last: left; } .post-featured-image { float: left; width: 300px; margin-right: 25px; margin-bottom: 10px; margin-top: 10px; max-width: 400px; } .post-featured-image img { width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--soft-gray); } .content-area::after { content: ""; display: table; clear: both; } /* --- BLOGS.CSS (Synced with Prayer Board) --- */ /* Match the justified look of the prayer-board-container */ .content-area p { text-align: justify; text-justify: inter-word; line-height: 1.6; margin-bottom: 1.2rem; color: var(--ink-black); } .section-divider { border: 0; height: 1px; background: var(--brand-red, #8B0000); margin: 3rem 0; opacity: 0.3; } /* Comment Display (Matches .prayer-card) */ .individual-comment { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-left: 4px solid var(--brand-red, #8B0000); display: flex; flex-direction: column; margin-bottom: 20px; } .individual-comment p { font-style: italic; /* Matches prayer-card text */ color: #444; line-height: 1.6; margin: 5px 0; } .comment-meta { font-weight: 600; font-style: normal !important; color: var(--ink-black) !important; font-size: 0.9rem; margin-bottom: 10px !important; } /* Form Styling (Matches Prayerboard form-card) */ .form-group { margin-bottom: 1.5rem; text-align: left; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-family: var(--font-heading); } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--soft-gray); border-radius: 8px; font-family: var(--font-body); } .comment-btn:hover { background: #8B0000; color: white; } /* Modal Styling */ .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(2px); } .modal-content { margin: 15% auto; width: 90%; max-width: 400px; } .comments-section { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #eee; } .comments-section h2 { font-family: 'Playfair Display', serif; margin-bottom: 1.5rem; }
/* Source: book.css */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; margin-top: 20px; } .book-preview-card { background: #ffffff; border: 1px solid var(--soft-gray); border-radius: 8px; padding: 25px; margin: 30px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); } .book-specs { background: var(--paper-white); padding: 15px; border-radius: 4px; font-size: 0.9rem; margin-top: 20px; } .name-content-wrapper { display: flex; gap: 25px; align-items: center; justify-content: center; margin-top: 10px; width: 100%; } .image-gallery { flex: 0 0 35%; min-width: 250px; max-width: 400px; } .slider-container { position: relative; width: 100%; max-width: 300px; overflow: hidden; border-radius: 8px; border: 1px solid var(--soft-gray); line-height: 0; aspect-ratio: 3 / 4; } .slider-stage { display: flex; width: 100%; transition: transform 0.5s ease-in-out; } .slide { min-width: 100%; height: auto; display: block; } .thumbnail-row { display: flex; gap: 10px; margin-top: 15px; } .thumb { width: 60px; height: 60px; object-fit: cover; border: 2px solid transparent; border-radius: 4px; cursor: pointer; } .thumb.active { border-color: var(--brand-red); } .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.4); color: white; border: none; padding: 12px 8px; cursor: pointer; z-index: 5; font-size: 18px; } .prev { left: 0; border-radius: 0 4px 4px 0; } .next { right: 0; border-radius: 4px 0 0 4px; } .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; margin-bottom: 40px; } .pagination button { padding: 8px 16px; border: 1px solid var(--brand-red); background: white; cursor: pointer; } .pagination button.active { background: var(--brand-red); color: white; }
/* Source: buttons.css */
.btn-primary { background-color: var(--brand-red); color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; font-family: var(--font-heading); }
/* Source: contact.css */
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; } .contact-form .btn-primary { align-self: flex-start; padding: 12px 30px; font-size: 1rem; transition: background 0.3s ease; } .contact-form .btn-primary:hover { background-color: #660000; } /* Mobile Tweak for Form */ @media (max-width: 600px) { .contact-form .btn-primary { width: 100%; /* Full width button on phones */ } } .form-group { display: flex; flex-direction: column; gap: 8px; } .form-group label { font-family: var(--font-heading); font-weight: bold; color: var(--brand-red); } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--soft-gray); border-radius: 4px; font-family: var(--font-body); font-size: 1rem; background-color: #fff; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-red); box-shadow: 0 0 5px rgba(139, 0, 0, 0.1); }
/* Source: logo.css */
.nav-logo-img { height: 50px; width: auto; display: block; transition: transform 0.3s ease; } .nav-logo-img:hover { transform: scale(1.05); } .logo a { text-decoration: none; display: flex; align-items: center; } .hero-image-container { width: 100%; display: flex; justify-content: center; padding: 30px 0; } .hero-logo { width: 800px; max-width: 80%; height: auto; max-height: 800px; display: block; }
/* Source: media.css */
/* --- TABLET & SMALL DESKTOP (850px) --- */ @media (max-width: 850px) { .about-layout { flex-direction: column; } .sidebar-nav { position: static; flex: none; width: 100%; margin-bottom: 10px; height: auto; } .sidebar-nav ul { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; border-left: none; border-bottom: 2px solid var(--soft-gray); padding-bottom: 15px; margin-bottom: 0; } .sidebar-nav li { padding-left: 0; margin-bottom: 5px; width: 100%; } .has-dropdown { width: 100%; display: flex; flex-direction: column; align-items: flex-start; } .dropdown-menu { display: none !important; width: 100%; margin: 0; padding: 0; text-align: left; border-left: 1px solid var(--brand-red); border-top: none; } .dropdown-menu.show { display: block !important; margin-top: 10px; padding-left: 20px; } } /* --- MOBILE HAMBURGER & LAYOUT (768px) --- */ @media (max-width: 768px) { /* Integration: Hide sidebar on mobile unless nav is open */ .sidebar-nav { display: none !important; /* Hidden by default on small screens */ width: 100%; background: var(--background-light); padding: 15px; border-top: 1px solid var(--soft-gray); } /* Show sidebar when nav-links are active (toggled by hamburger) */ .nav-links.active + .sidebar-nav, .sidebar-nav.mobile-show { display: block !important; width: 100%; animation: fadeIn 0.3s ease-in-out; } .name-content-wrapper, .name-content-wrapper.gallery-layout { flex-direction: column !important; align-items: center; text-align: center; width: 100%; } .image-gallery { margin: 0; display: flex; flex-direction: column; align-items: center; } .name-text p { text-align: justify; text-align-last: center; } .book-specs { width: 100%; padding: 15px; margin: 20px 0 0 0; text-align: left; } .post-featured-image { float: none; margin: 0 auto 20px auto; max-width: 100%; text-align: center; } .post-featured-image img { width: 100%; max-width: 500px; } } /* --- SMALL MOBILE (600px) --- */ @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } .symbolism-image-container { justify-content: center; } .symbolism-img, .about-inline-img { width: 100%; max-width: 200px; } .content-area { padding: 0 20px !important; overflow-x: hidden; } .prayer-board-container p { text-align: left; /* Better for readability on narrow mobile screens */ } } @keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
/* Source: modal.css */
#custom-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; } .custom-modal { background: white; padding: 2rem; border-radius: 8px; text-align: center; max-width: 400px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); border-top: 5px solid #8B0000; /* Your brand red */ } .custom-modal h3 { margin-top: 0; font-family: 'Playfair Display', serif; color: #8B0000; } .custom-modal p { margin-bottom: 1.5rem; color: #333; }
/* Source: nav.css */
.main-nav, .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: var(--paper-white); border-bottom: 1px solid var(--soft-gray); position: relative; } .nav-links { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; } .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; } .menu-toggle span { display: block; width: 25px; height: 3px; background-color: #333; transition: 0.3s; } @media (max-width: 768px) { .menu-toggle { display: flex; } .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); z-index: 1000; } .nav-links.active { display: flex; } .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .menu-toggle.open span:nth-child(2) { opacity: 0; } .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } }
/* Source: prayer.css */
.prayer-header { text-align: center; margin-bottom: 3rem; } .board-toggle { display: inline-flex; background: var(--soft-gray); padding: 5px; border-radius: 50px; margin-top: 1.5rem; } .toggle-btn { padding: 10px 25px; border: none; background: none; border-radius: 50px; cursor: pointer; font-weight: 600; transition: 0.3s; } .toggle-btn.active { background: var(--brand-red, #8B0000); color: white; } .prayer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; } .prayer-card { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-left: 4px solid var(--brand-red, #8B0000); display: flex; flex-direction: column; justify-content: space-between; } .prayer-card p { font-style: italic; color: #444; line-height: 1.6; } .incense-count { margin-top: 15px; font-size: 0.9rem; color: #888; display: flex; align-items: center; gap: 8px; } .incense-btn { background: #fdf2f2; border: 1px solid #f8d7da; color: #8B0000; padding: 5px 12px; border-radius: 4px; cursor: pointer; font-size: 0.8rem; transition: 0.2s; } .incense-btn:hover { background: #8B0000; color: white; } .form-card { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } /* Target the introductory text on the prayer board */ .prayer-board-container p { text-align: justify; text-justify: inter-word; text-align-last: center; margin: 20px auto; line-height: 1.6; /* Adds a bit of breathing room for better readability */ margin-bottom: 15px; max-width: 830px; color: var(--text-dark); /* Or your preferred text color */ } /* Optional: Keep the Scripture citation centered or right-aligned for emphasis */ .prayer-board-container p:first-of-type { text-align: center; font-style: italic; margin-bottom: 25px; }
/* Source: privacy.css */
/* Container for the Back Link */ .back-link-container { margin-bottom: 40px; } .back-link { text-decoration: none; color: #555; font-family: 'Georgia', serif; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s ease; } .back-link:hover { color: #8b0000; /* Matching your brand red/dark accent */ } /* Privacy Content Styling */ .privacy-content { max-width: 800px; margin: 0 auto; line-height: 1.8; color: #333; font-family: 'Georgia', serif; } .privacy-content h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; color: #1a1a1a; } .privacy-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-top: 40px; margin-bottom: 15px; color: #1a1a1a; border-bottom: 1px solid #eee; padding-bottom: 10px; } .intro-text { font-size: 1.2rem; font-style: italic; color: #666; margin-bottom: 30px; } .privacy-content ul { margin-bottom: 20px; padding-left: 20px; } .privacy-content ul li { margin-bottom: 5px; } /* Policy Highlights */ .policy-grid { background: #fdfbf7; padding: 25px; border-radius: 8px; border-left: 4px solid #8b0000; margin: 30px 0; } .policy-item { margin-bottom: 20px; } .policy-item:last-child { margin-bottom: 0; } .policy-item strong { display: block; font-size: 1.1rem; color: #1a1a1a; margin-bottom: 5px; } .contact-prompt { margin-top: 50px; padding: 20px; text-align: center; border-top: 1px solid #eee; font-style: italic; } .contact-prompt a { color: #8b0000; text-decoration: underline; } /* Mobile Adjustments */ @media (max-width: 600px) { .privacy-content h1 { font-size: 2rem; } .privacy-content { padding: 0 15px; } }
/* Source: search.css */
.search-container { padding: 10px 5%; background: var(--paper-white); display: flex; justify-content: center; } .search-bar { width: 100%; border: 2px solid var(--soft-gray); max-width: 600px; border: 2px solid var(--soft-gray); padding: 10px 45px 10px 20px; border-radius: 25px; font-family: var(--font-body); background-color: white; } .search-wrapper { position: relative; width: 100%; max-width: 600px; margin: 0 auto; } .search-wrapper::after { content: ""; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; /* This is a white SVG magnifying glass */ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; pointer-events: none; }
/* Source: sidebar.css */
.sidebar-nav { flex: 0 0 250px; position: sticky; top: 120px; } .sidebar-nav:empty { display: none; } .sidebar-nav ul { list-style: none; padding: 0; border-left: 2px solid var(--soft-gray); } .sidebar-nav li { margin-bottom: 15px; padding-left: 20px; } .sidebar-nav a { text-decoration: none; color: var(--ink-black); font-family: var(--font-heading); font-size: 1.1rem; transition: color 0.3s; } .has-dropdown > a { font-weight: bold; } .dropdown-menu { display: none; list-style: none; padding-left: 20px; margin-top: 0px; border-left: 1px solid var(--brand-red); visibility: hidden; opacity: 0; transition: opacity 0.2s ease; overflow: hidden; } .dropdown-menu.show { display: block !important; margin-top: 10px; visibility: visible; opacity: 1; } .rotate-caret { transform: rotate(180deg); } .caret { display: inline-block; transition: transform 0.3s ease; }
