#header_main {
	padding-bottom: 0px !important;
}

.breadcrumb-trail {
	display:  none !important;
}

.main_color {
	background: #F5F5E7;
}
/* !Font Base */
.atkinson-hyperlegible-regular {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.atkinson-hyperlegible-bold {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.atkinson-hyperlegible-regular-italic {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.atkinson-hyperlegible-bold-italic {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-weight: 700;
	font-style: italic;
}

.main_color strong {
	color:#719430;
}

/* ! Navigation */
nav a {
	font-size:16px !important;
}

/* ! Live Stream Button – no bottom gap */
.hp_livestream_container {
	margin-bottom: 40px;	
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	border-radius: 10px;
	background-color: #FF0232;
	box-shadow: 
		3px 3px 8px rgba(0,0,0,.2),
		0 0 20px rgba(255,2,50,.6),
		0 0 40px rgba(255,2,50,.4),
		0 0 60px rgba(255,2,50,.3);
	max-width: 770px;
	position: relative;
	transition: box-shadow .3s ease;
	animation: glowPulse 2s infinite alternate;
	/* NEW – keep container tight to its content */
	display: flex;               /* flex layout */
	justify-content: center;     /* center the button */
	align-items: center;         /* vertical centering */
	gap: 0;                      /* no extra spacing */
	padding-bottom: 15px;        /* keep original inner spacing */
}

/* Remove the big margin and make the link fill the container */
.hp_livestream_button {
	color: #FFF !important;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	min-width: 300px;
	text-align: center;
	display: flex;               /* flex for image + text */
	align-items: center;         /* vertically center image */
	justify-content: center;     /* horizontally center */
	margin: 0;                   /* kill the 30px bottom margin */
	padding: 8px 0;              /* optional tiny inner padding */
}

/* Optional: keep the image aligned with the text */
.hp_livestream_button img {
	margin-right: 10px;
	vertical-align: middle;
}

@keyframes glowPulse {
	0% {
		box-shadow: 
			3px 3px 8px rgba(0,0,0,.2),
			0 0 20px rgba(255,2,50,.6),   /* minimum glow */
			0 0 40px rgba(255,2,50,.4),
			0 0 60px rgba(255,2,50,.3);
	}
	100% {
		box-shadow: 
			3px 3px 8px rgba(0,0,0,.2),
			0 0 30px rgba(255,2,50,.9),   /* maximum glow (brighter) */
			0 0 60px rgba(255,2,50,.7),
			0 0 90px rgba(255,2,50,.5);
	}
}

/* ! Bible verse quote styling with jagged torn paper effect */
.bible-quote {
  font-family: 'EB Garamond', serif;
  font-size: 1.2em;
  font-style: italic;
  color: #4A3728; /* Dark brown to match church woodwork */
  background-color: transparent; /* No background on text container */
  padding: 20px 25px;
  margin: 20px auto;
  max-width: 1000px;
  position: relative;
  z-index: 1; /* Ensure text is above pseudo-element */
  margin-bottom: 45px;
}

/* Torn paper effect using pseudo-element */
.bible-quote::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: linear-gradient(to bottom, #FFF8DC, #F5F5E7); /* Parchment gradient */
  border-radius: 5px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  border: 1px solid #D4A017; /* Gold accent */
  z-index: -1; /* Place behind text */
  filter: url(#torn-edge); /* Apply torn effect only to pseudo-element */
}

/* Citation styling */
.bible-quote cite {
  display: block;
  font-size: 0.9em;
  font-style: normal;
  color: #719430; /* Green for contrast */
  text-align: right;
  margin-top: 10px;
}

/* Hide SVG to prevent layout issues */
.svg-filter {
  display: none; /* Ensure SVG doesn't take up space */
}

#top h1 a,
#top h2 a,
#top h3 a,
#top h4 a,
#top h5 a,
#top h6 a {
	color: #719430
}

/* !Titles */
h2.ccoc-title{
	font-size:36px !important;
}

main h1,main h2 {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	text-transform: capitalize !important;
}

main h2 {
	font-size:36px;
}

main h3,main h4,main h5,main h6 {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-weight: 600;
	font-style: normal;
}

main h3 {
	font-size:36px;
}

/* !Blog/Sermon Titling */
.av-main-archive h2 {
	font-size:36px !important;
	text-decoration: underline;
	color: #719430 !important;
}

.av-main-archive .read-more-link {
	display:none !important;
}

.ccoc_sermon_category_title {
	font-size:48px !important;
}

/* !Blog Media */
.ccoc_blog_media {
	border:solid 2px #321f !important;
	background-color: #eaeab3;
	margin-left: 0;
	margin-bottom: 20px;
	overflow: hidden; /* simple clearfix alternative */
	width:360px;
	padding: 20px;
	border-radius:20px;
	box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-webkit-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-moz-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
}

/* Optional clearfix using ::after (classic method) */
.ccoc_blog_media::after {
	content: "";
	display: table;  /* makes the pseudo-element take up space */
	clear: both;
}

.ccoc_blog_media li {
	list-style: none;
	float: left;
	margin-right: 20px;
}

/* Target PDF links */
.entry-content a[href$=".pdf" i] {
	position: relative; /* needed for pseudo-element positioning */
	padding-right: 30px; /* space for the icon */
	
}

/* Add the PDF icon */
.entry-content a[href$=".pdf" i]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 24px;   /* desired icon width */
	height: 24px;  /* desired icon height */
	background: url('/wp-content/themes/enfold/images/adobe_icon.png') no-repeat center center;
	background-size: contain; /* scale to fit */
}

.entry-content a[href*=".mp3" i] {
	position: relative; /* needed for pseudo-element positioning */
	padding-right: 30px; /* space for the icon */
	
}

/* ! Blog Categories */

.ccoc-total-count,.ccoc-audio-count { 
	color: #222; 
	font-size: 0.9em; 
}
 
.ccoc-icon-audio {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('/wp-content/themes/enfold/images/audio_icon.png') no-repeat center center;
  background-size: contain;
  vertical-align: -2px;
  margin-right: 3px;
}

.ccoc-icon-document {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('/wp-content/themes/enfold/images/document_icon.png') no-repeat center center;
  background-size: contain;
  vertical-align: -2px;
  margin-right: 3px;
}


/* Add the PDF icon */
.entry-content a[href*=".mp3" i]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 24px;   /* desired icon width */
	height: 24px;  /* desired icon height */
	background: url('/wp-content/themes/enfold/images/audio_icon.png') no-repeat center center;
	background-size: contain; /* scale to fit */
}


/*! Breadcrumbs */
.ccoc-breadcrumbs {
	margin: 1.5em 0 0.8em;
	font-size: 0.9em;
	color: #666;
	border-bottom: solid 2px #666;
}
.ccoc-breadcrumbs a {
	color: #719430;
	text-decoration: none;
}
.ccoc-breadcrumbs a:hover {
	text-decoration: underline;
}
.ccoc-breadcrumbs .sep {
	margin: 0 0.5em;
	color: #aaa;
}
.ccoc-breadcrumbs .current {
	color: #333;
	font-weight: 600;
}
/* !Slider Table */

table#slider-table {
	width:724px !important;
	background-color: transparent !important;
	border: none !important;
}

table#slider-table thead  {
	border: none !important;
	font-size:34px !important;
	
}

table#slider-table thead tr {
	background-color:transparent !important;
	font-family: Caveat !important;
	font-size:36px !important;
	color:#FFF !important;
	
}

table#slider-table thead tr th, table#slider-table th {
	border: none !important;
	font-family: Caveat !important;
	text-transform: capitalize !important;
	text-align: center !important;
}

table#slider-table tbody tr,table#slider-table  tr {
	
}

table#slider-table tbody tr,table#slider-table tr { 
	background-color:transparent !important;
	text-align: center !important;
}

table#slider-table tbody tr td,table#slider-table td {
	background-color:transparent !important;
	font-family: "Atkinson Hyperlegible", sans-serif !important;
	font-weight: 400 !important;
	color:#FFF;
	font-style: normal;
	font-size:20px !important;
	text-align:center;
	border-bottom: solid 1px #FFF;
	border-left: none !important;
	border-right: none !important;
	margin:0px !important;
	padding-top:5px;
	padding-bottom: 5px;
	
}

/* ! Sermon Tiles */
.ccoc-wp-category-list li {
	background-color: #719430;
	border: solid 1px #00DB72;
	border-radius:20px;
	width:300px;
	height:200px;
	text-align: center;
	padding-top: 80px;
	vertical-align: middle;
	list-style: none;
	margin-bottom:20px;
	float:left;
	font-size:30px;	
	color:#000;
	line-height: 30px !important;
}

.ccoc-wp-category-list li:hover {
	background-color: #00DB72;
	border: solid 1px #719430;
}

/* ! Misc */
.av-masonry-image-container,.av-masonry-image-container:hover,.av-inner-masonry {
	border-radius: 10px;
	opacity: 1 !important;
	box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-webkit-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-moz-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
}


img.mfp-img {
	border-radius: 10px !important;
	opacity: 1 !important;
	overflow: hidden;
	padding:2px 2px 2px !important;
	border: solid 2px #000;
}

.shadow-image {
	border-radius: 10px !important;
	opacity: 1 !important;
	overflow: hidden;
	
	box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-webkit-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
	-moz-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.75) !important;
}


figcaption {
	display:none !important;
}

/* ! Header */

#header_main {
	background-color: #321f;
	border-bottom: solid 2px #760f;
	border-top:0px;
	padding-bottom: 7px;
}

#header_main .current-menu-item a {
	color:#FFF;
}

.title_container {
	background-color: #210f;
	
	border-bottom: solid 2px #970f;
	height:48px;
}

.alternate_color .breadcrumb,
.alternate_color .breadcrumb a,
#top .alternate_color.title_container .main-title,
#top .alternate_color.title_container .main-title a{
	color: #dddf;
}

/* ! Footer */
#footer {
	background-color: #321f;
	color:#FFF;
	border-top: solid 2px #760f;
	border-bottom: solid 2px #760f;
}
#footer h3 {
	font-size:36px !important;
	color:#FFF;
	height:80px;
}

#footer h4 {
	font-size:30px !important;
}

#footer h3.widgettitle {
	font-family: "Caveat", sans-serif;
	font-weight: 600;
	text-transform: capitalize !important;
	font-style: normal;
}

#footer .flex_column {
	display: table-cell;
	/* border-right:solid 1px #760f; */
}

.footer_color a {
	color: #719430 !important;
}

.footer-schedule li {
	margin-bottom:7px !important;
}