@charset "UTF-8";
/* CSS Document */

body {
	background-image: url(images/bg.jpg);
	margin-left: 20px;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.textWelcome {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 17px;
	font-style: italic;
	line-height: 31px;
	color: #333333;
}

.headerBlue {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	font-style: italic;
	line-height: 33px;
	font-weight: normal;
	color: #212C31;
}

.mainContent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 22px;
}

.headerRed {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	font-style: italic;
	line-height: 33px;
	font-weight: normal;
	color: #330000;
	margin: 10p x0;
}

.subheaderRed {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	font-weight: normal;
	color: #330000;
}

.churchText {
	font-size: 16px;
	line-height: 18px;
}

.textBigger {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
}

.headerRed2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-style: italic;
	line-height: 18px;
	color: #660000;
}

.img {
	background-color: #FFFFFF;
	padding: 10px;
	border: 1px solid #232E33;
}

.church-image {
	border: 1px solid #333;
	margin: 8px 16px 8px 0;
}

.downloadLink {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	line-height: 26px;
	color: #983212;
	text-decoration: underline;
	text-transform: uppercase;
}

.downloadLink:hover {
	color: #000000;
	background-color: #C9D1CF;
}

.textDedication {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
	color: #333333;
	font-style: italic;
}

.textDedication2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 20px;
	color: #333333;
}

/* --- Clean Layout Design System (Scoped) --- */

/* Fixed Perimeter Thumbnail Containers */
.pb-clean-fixed-perimeter {
	width: 100px;
	height: 100px;
	border: 1px solid #3A1008;
	background-color: #fff;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pb-clean-fixed-perimeter img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0;
	margin: 0;
	border: none;
}

/* Featured Sermon Action Row */
.pb-clean-action-row {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}

.pb-clean-action-btn {
	padding: 12px 20px;
	font-family: "Georgia", serif;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
	color: #F1E6D4 !important;
	border-radius: 6px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	letter-spacing: 1px;
}

.pb-clean-action-btn:hover {
	background: linear-gradient(135deg, #8F2632 0%, #4a140c 100%);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.pb-clean-action-btn img {
	display: none !important;
	/* Hide the old clunky images */
}

.pb-clean-action-btn::before {
	content: '▶';
	/* Default icon */
	margin-right: 8px;
	font-size: 10px;
}

/* The following block was removed as per the instruction to remove antique styles and restore modern buttons.
.pb-clean-action-btn {
	padding: 4px 10px;
	font-family: "Georgia", serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	background-color: #6A1501;
	color: #F2EBDB !important;
	border: 1px solid #AC8B5A;
	border-radius: 2px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 90px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	transition: background-color 0.2s ease;
	letter-spacing: 0.3px;
}

.pb-clean-action-btn:hover {
	background-color: #4a140c;
	color: #fff !important;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.pb-clean-action-btn img {
	display: none !important;
}

.pb-clean-action-btn::before {
	content: '◈';
	margin-right: 6px;
	font-size: 9px;
	color: #AC8B5A;
}
*/

/* Modal Popup Styles */
.pb-clean-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	justify-content: center;
	align-items: center;
}

.pb-clean-modal-container {
	background: #F2EBDB;
	padding: 30px;
	border: 10px solid #3B3B3B;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pb-clean-modal-close {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 30px;
	text-decoration: none;
	color: #333;
	line-height: 1;
}

.modal-download-btn {
	display: inline-block;
	background: linear-gradient(135deg, #8E2430 0%, #4a140c 100%);
	color: #fff !important;
	padding: 14px 28px;
	text-decoration: none;
	font-weight: bold;
	font-family: "Georgia", serif;
	font-size: 13px;
	margin-top: 25px;
	border-radius: 6px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.modal-download-btn:hover {
	background: linear-gradient(135deg, #000000 0%, #2c3e50 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* --- Antique UI Enhancement: Form Elements --- */

/* Text Inputs & Search Boxes */
input[type="text"].pb-antique-input,
.pb-clean-drawer-search,
#searchFor {
	background-color: #F9F4E8;
	border: 1px solid #AC8B5A;
	color: #3A1008;
	font-family: Georgia, serif;
	font-size: 13px;
	padding: 8px 12px;
	box-shadow: inset 0 1px 3px rgba(172, 139, 90, 0.1);
	border-radius: 2px;
	box-sizing: border-box;
	transition: all 0.2s ease;
	vertical-align: middle;
	margin: 0;
	height: 31px;
}

input[type="text"].pb-antique-input:focus,
.pb-clean-drawer-search:focus,
#searchFor:focus {
	outline: none;
	border-color: #6A1501;
	background-color: #fff;
	box-shadow: inset 0 1px 4px rgba(106, 21, 1, 0.05), 0 0 5px rgba(106, 21, 1, 0.1);
}

/* Dropdowns / Select Boxes */
select.pb-antique-select,
select[name="searchState"],
select[name="location"] {
	background-color: #F9F4E8;
	border: 1px solid #AC8B5A;
	color: #3A1008;
	font-family: Georgia, serif;
	font-size: 13px;
	padding: 7px 10px;
	border-radius: 2px;
	cursor: pointer;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

select.pb-antique-select:focus,
select[name="searchState"]:focus,
select[name="location"]:focus {
	outline: none;
	border-color: #6A1501;
}

/* Unified Antique Search Button (CSS Replacement for images/buttonSearch.jpg) */
.pb-antique-search-btn {
	background: linear-gradient(to bottom, #6A1501, #3A1008);
	color: #F2EBDB !important;
	border: 1px solid #2a0b06;
	padding: 0 15px;
	font-family: Georgia, serif;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	line-height: 1;
	height: 31px;
	vertical-align: middle;
	margin: 0;
	box-sizing: border-box;
}

.pb-antique-search-btn:hover {
	background: linear-gradient(to bottom, #8F2632, #6A1501);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	transform: translateY(-1px);
}

.pb-antique-search-btn:active {
	transform: translateY(0);
}

/* --- Antique UI Enhancement: Pagination --- */
.pb-antique-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin: 25px 0;
	font-family: Georgia, serif;
}

.pb-antique-pagination a,
.pb-antique-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	text-decoration: none;
	color: #6A1501;
	background-color: #F9F4E8;
	border: 1px solid #AC8B5A;
	border-radius: 2px;
	font-size: 13px;
	font-weight: bold;
	transition: all 0.2s ease;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.pb-antique-pagination a:hover {
	background-color: #6A1501;
	color: #F2EBDB !important;
	border-color: #3A1008;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pb-antique-pagination .current-page {
	background-color: #6A1501;
	color: #F2EBDB !important;
	border-color: #3A1008;
	cursor: default;
}

.pb-antique-pagination span:not(.current-page) {
	background: transparent;
	border: none;
	box-shadow: none;
	color: #AC8B5A;
}

/* Independent A-Z Minister Browse Section */
.pb-main-az-section {
	margin: 25px 0;
	background-color: #F9F4E8;
	border: 1px solid #AC8B5A;
	padding: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
}

.pb-az-clarity-text {
	display: block;
	font-family: Georgia, serif;
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
	font-style: italic;
	text-align: center;
}

/* A-Z Minister Browse Drawer - Antique Style */
.pb-clean-az-drawer-bar {
	background: linear-gradient(to bottom, #6A1501, #3A1008);
	color: #F2EBDB;
	padding: 14px 20px;
	cursor: pointer;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: Georgia, serif;
	margin: 0;
	border: 1px solid #2a0b06;
	border-radius: 4px;
	letter-spacing: 0.8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
}

.pb-clean-az-drawer-bar:hover {
	background: linear-gradient(to bottom, #8F2632, #6A1501);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pb-clean-az-drawer-bar span:first-child {
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pb-clean-az-drawer-bar:hover {
	background: linear-gradient(to bottom, #5a1a10, #4a140c);
	color: #fff;
}

.pb-clean-az-drawer-content {
	display: none;
	background-color: #F2EBDB;
	background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
	background-size: 100% 20px;
	border: 1px solid #3A1008;
	border-top: none;
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	border-radius: 0 0 4px 4px;
}

.pb-clean-featured-card {
	width: 100%;
	background-color: transparent;
	padding: 0;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.pb-antique-featured-box {
	background-color: #D9CDBB;
	border: none;
	padding: 15px;
}

.pb-clean-featured-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
	min-width: 0;
}

.pb-clean-featured-header {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #3A1008;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}

.pb-clean-featured-title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	color: #3A1008;
	line-height: 1.3;
	margin-bottom: 5px;
	display: block;
}

.pb-clean-featured-minister {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: italic;
	color: #3A1008;
	display: block;
	margin-bottom: 15px;
}

.pb-antique-action-btn {
	padding: 5px 12px;
	font-family: Georgia, serif;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	background-color: #6A1501;
	color: #F2EBDB !important;
	border: 1px solid #3A1008;
	border-radius: 0;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	margin-bottom: 5px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pb-antique-action-btn:hover {
	background-color: #3A1008;
	color: #fff !important;
}

.pb-clean-drawer-search {
	width: 100%;
	padding: 10px 12px;
	margin-bottom: 20px;
	border: 1px solid #3A1008;
	background-color: #fff;
	font-size: 13px;
	font-family: Georgia, serif;
	font-style: italic;
	box-sizing: border-box;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	color: #3A1008;
}

.pb-clean-az-group-header {
	font-weight: bold;
	color: #3A1008;
	border-bottom: 1px solid #3A1008;
	margin-top: 15px;
	margin-bottom: 8px;
	font-size: 13px;
	font-family: Georgia, serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-style: italic;
}

.pb-clean-az-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 5px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pb-clean-az-list li a {
	font-size: 11px;
	color: #333;
	text-decoration: none;
}

.pb-clean-az-list li a:hover {
	color: #8F2632;
	text-decoration: underline;
}

.img2 {
	background-color: #FFFFFF;
	padding: 3px;
	border: 1px solid #202C31;
}

.headerBig {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 36px;
	font-style: italic;
	color: #202C31;
	line-height: 45px;
}

.bottomRule {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
}

.bottomRule2 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}

.headerCategories {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #731F20;
	text-decoration: none;
}

.downloadLink2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #F1E6D4;
	background-color: #202C31;
	text-decoration: none;
	padding: 2px;
}

.downloadLink2:hover {
	background-color: #90222C;
}

.link {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #4E6044;
	text-decoration: underline;
}

.link:hover {
	color: #000000;
	background-color: #758FA7;
}

.linkHome {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #8E2430;
	text-decoration: none;
}

.linkHome:hover {
	text-decoration: underline;
}

.mainContent2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	color: #000000;
}

.submitButton {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #202C31;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

.submitButton:hover {
	background-color: #8F2632;
}

#table {
	border: 10px solid #3B3B3B;
}

.sermonTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: capitalize;
	color: #333333;
}

.noPaddingTop {
	padding-top: 0px;
	margin-top: 0px;
}

.ministerLinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #731F20;
	text-decoration: none;
}

.ministerLinks:hover {
	text-decoration: underline;
}

.mainContent2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 23px;
}

.bioImages {
	border: 5px solid #B1ABA0;
}

.news {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #A19B8E;
}

.news-header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #5B7D93;
	font-weight: bold;
}

.learn-more-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 23px;
	padding-right: 30px;
	padding-left: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #BFB9A7;
}

.learn-more-text a {
	font-weight: bold;
	color: #5A7D94;
}

.learn-more-text a:hover {
	font-weight: bold;
	color: #B1ABA0;
}

.resources {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.resources ul,
li {
	margin-left: 8px;
	padding-left: 0px;
}

.resources a {
	color: #57517B;
	text-decoration: none;
}

.resources a:hover {
	text-decoration: underline;
}

/* --- Fixed Icon Thumbnails --- */
.fixed-icon-thumb {
	width: 100px !important;
	height: 100px !important;
	object-fit: cover;
	border: 1px solid #3A1008;
	background-color: #fff;
	padding: 2px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

