@charset "UTF-8";
/*
Theme Name: acksthellens
Theme URI: codewithpatrick.online/acksthellens
Author: Patrick Muriungi
Author URI: https://codewithpatrick.online
Description: Official Website for ACK St. Hellens Githurai.org (acksthellensgithurai.org))
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: acksthellens
Tags: custom-background, custom-logo, tech, blogger, news, custom-menu, featured-images, threaded-comments, translation-ready

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:


 1. - Logo-section 

---------------------------------------------------------------*/
:root {
  --primary: #9E3494;
  --secondary: #69276E;
  --accent: #D2AB67;
  --white: #ffffff;
  --gray: #c2bdbd;
  --dark: #081828;
  --red: #ff0000;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

.border-top-fade {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/*################################################################################
*
* acksthellens HERO SECTION STYLES 
*
*#################################################################################*/
.acksthellens-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.elementor-kit-1555 a {
	color: #fff;
    font-family: "Jost", helvetica;
    text-decoration: none;
}
body a {
	color: #9E3494;
    
}
.acksthellens-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.acksthellens-hero-content {
  position: relative;
  z-index: 1;
}

.acksthellens-hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.acksthellens-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.acksthellens-hero-text {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
}

.acksthellens-hero-buttons .btn {
  font-weight: 500;
  transition: all 0.3s ease;
}

.acksthellens-hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.acksthellens-hero-media {
  position: relative;
  z-index: 1;
}

.acksthellens-hero-media img {
  transition: transform 0.5s ease;
}

.acksthellens-hero-media:hover img {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .acksthellens-hero {
    padding: 3rem 0;
    text-align: center;
  }
  .acksthellens-hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
/* Latest Posts Grid */
.acksthellens-latest-posts .card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.acksthellens-latest-posts .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.acksthellens-latest-posts .card-title a {
  transition: color 0.2s ease;
}

.acksthellens-latest-posts .card-title a:hover {
  color: var(--bs-primary) !important;
}

.acksthellens-latest-posts .badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

.acksthellens-latest-posts .card-img-top {
  border-radius: 12px 12px 0 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .acksthellens-latest-posts .row {
    --bs-gutter-x: 1.5rem;
  }
}
.btn-primary-custom {
  background-color: var(--primary);
  border: none;
  color: var(--white);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
}

.btn-primary-custom:hover {
  background-color: var(--white);
  color: var(--secondary);
}
/*################################################################################
        FOOTER
#######################################################################*/

/* Footer Base Styles */
.footer-dark {
    background:  var(--dark);
    color: var(--white);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Playfair Display", serif;
    display: flex;
    align-items: center;
}

.footer-column p {
    color: var(--footer-lighter);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-link {
    color: var(--footer-lighter);
    text-decoration: none;
    transition: var(--transition);
    margin-left: 0.25rem;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Cards */
.bg-dark-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-card, .donation-card {
    transition: var(--transition);
}

.stream-card:hover, .donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(15, 204, 206, 0.3);
}

.stream-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(15, 204, 206, 0.3);
}

/* Footer Logo */
.footer-diocese-logo {
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.8;
    transition: var(--transition);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.footer-diocese-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Legal Menu */
.footer-legal-menu {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-legal-menu li {
    list-style: none;
}

.footer-legal-menu a {
    color: var(--footer-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.25rem 0;
    position: relative;
}

.footer-legal-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.footer-legal-menu a:hover {
    color: var(--white);
}

.footer-legal-menu a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(15, 204, 206, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(15, 204, 206, 0.4);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(15, 204, 206, 0.5);
    color: white;
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-dark {
        padding-top: 50px;
    }
    
    .footer-column h3 {
        font-size: 1rem;
    }
    
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .floating-contact-btn {
        left: 20px;
        right: 20px;
        bottom: 20px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .footer-column h3 {
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-legal-menu {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .floating-contact-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .footer-dark {
        padding-top: 40px;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-legal-menu {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .floating-contact-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .footer-dark {
        background: #fff !important;
        color: #000 !important;
        border-top: 2px solid #000;
    }
    
    .footer-link,
    .footer-column p,
    .footer-column h3 {
        color: #000 !important;
    }
    
    .social-icons,
    .floating-contact-btn,
    .back-to-top {
        display: none !important;
    }
}

 /*^^^^^^^^^^^^^^^^^^^^^^^^^^ END FOOTER ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  */

.site-content {
  position: relative;
  margin-top: 2rem;
  padding: 2rem 0;
}

.church-contact {
  margin-top: 2rem;
  padding: 3rem 0;
}

.church-contact .contact-info {
  position: relative;
  vertical-align: middle;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.church-contact .contact-info:hover {
  background-color: #9E3494;
  transition: 0.3s all;
}

.church-contact .contact-info:hover h5 {
  color: #fff;
}

.church-contact .contact-info:hover i {
  color: #fff;
}

.church-contact .contact-info h5 {
  color: #9E3494;
}

.church-contact .contact-info i {
  color: #9E3494;
  padding: 0 10px;
  font-size: 24px;
}

.church-contact :is(h4, h5) {
  color: #9E3494;
}

/*==============================================================

================================================================*/
.title-header {
  background: linear-gradient(135deg, var(--primary) 40%, #D2AB67 100%);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.title-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
}

.site-main {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

/*==============================================================
        FOOTER BOTTOM SECTION 
===============================================================*/





.live-stream {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ff0000;
}

/* Social Media Widget */
.social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  transform: scale(1.1);
  color: #ffffff;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.contact-item h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  padding-right: 30px;
  text-transform: uppercase;
}

.contact-item p {
  margin-bottom: 1.5rem;
}

.contact-item i {
  margin-right: 10px;
  color: var(--primary);
}


.giving-info p {
  margin-bottom: 0.5rem;
  color: #BAB5B5;
}



/* BUTTON  */
.btn-explore {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-explore:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transition: var(--transition);
  z-index: -1;
}
.btn-explore:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
  z-index: -1;
}

.btn-explore:hover:before {
  left: 0;
}

.btn-explore:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(242, 41, 91, 0.4);
  background: var(--primary);
}

.btn-explore i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.btn-explore:hover i {
  transform: translateX(8px);
}

@media (max-width: 576px) {
  .btn-explore {
    width: 100%;
    text-align: center;
  }
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.5rem 1.5rem;
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-top {
    padding: 3rem 0;
  }
  .footer-connect .footer-title {
    font-size: 36px;
    padding-bottom: 20px;
  }
  .footer-widget {
    margin-bottom: 1rem;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer-top {
    padding: 1rem 0;
  }
 
}
.subscribe-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background: var(--primary);
  color: white;
}

.form-control::placeholder {
  color: #bdc3c7;
}

.btn-subscribe {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn-subscribe:hover {
  background: var(--secondary);
}

.section-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #2c3e50);
    border-radius: 2px;
} */
/* Featured Post Styles */
.featured-post {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.featured-post-img {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.featured-post-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-img img {
  transform: scale(1.08);
}

.featured-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
  color: white;
}

.post-category {
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-post-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-post-content h3 a {
  color: white;
  text-decoration: none;
}

.featured-post-content h3 a:hover {
  color: var(--primary);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.post-meta i {
  margin-right: 0.3rem;
}

/* Secondary Post Styles */
.secondary-post {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.secondary-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.secondary-post-img {
  height: 200px;
  overflow: hidden;
}

.secondary-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.secondary-post:hover .secondary-post-img img {
  transform: scale(1.1);
}

.secondary-post-content {
  padding: 1.5rem;
}

.secondary-post-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.secondary-post-content h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.secondary-post-content h4 a:hover {
  color: var(--primary);
}

.secondary-post-content .excerpt {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Sidebar Post Styles */
.sidebar-post {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.sidebar-post:last-child {
  margin-bottom: 0;
}

.sidebar-post:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-post-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.sidebar-post-content h5 a {
  color: #2c3e50;
  text-decoration: none;
}

.sidebar-post-content h5 a:hover {
  color: var(--primary);
}

.sidebar-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

/* View All Button */
.view-all-btn {
  background: linear-gradient(135deg, var(--primary), #2c3e50);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 41, 125, 0.3);
}

/* Loading Animation */
.magazine-loading {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .tech-magazine-section {
    padding: 40px 0;
  }
  .featured-post-img {
    height: 300px;
  }
  .featured-post-content {
    padding: 1.5rem;
  }
  .featured-post-content h3 {
    font-size: 1.4rem;
  }
  .sidebar-post {
    margin-bottom: 1rem;
  }
}
/* Placeholder image fallback */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary), #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.featured-post-img .img-placeholder {
  font-size: 1.2rem;
}

.secondary-post-img .img-placeholder {
  font-size: 1rem;
}

.sidebar-post-img .img-placeholder {
  font-size: 0.8rem;
}

.tech-magazine-section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Playfair Display", sans-serif;
}

.tech-magazine-section h2.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
  position: relative;
}

.tech-magazine-section h2.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #2c3e50);
  margin: 15px auto;
  border-radius: 2px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 30px;
}

.featured-post {
  grid-column: 1;
  grid-row: 1/span 2;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-post-img {
  height: 500px;
  overflow: hidden;
}

.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-img img {
  transform: scale(1.05);
}

.featured-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px;
}

.post-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.featured-post-content h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  line-height: 1.3;
}

.featured-post-content h3 a {
  color: white;
  text-decoration: none;
}

.featured-post-content h3 a:hover {
  color: var(--primary);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.post-date, .post-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.secondary-post {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background: white;
}

.secondary-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.secondary-post-img {
  height: 180px;
  overflow: hidden;
}

.secondary-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.secondary-post:hover .secondary-post-img img {
  transform: scale(1.1);
}

.secondary-post-content {
  padding: 20px;
}

.secondary-post-content h4 {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.4;
}

.secondary-post-content h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.secondary-post-content h4 a:hover {
  color: var(--primary);
}

.secondary-post-content .excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 10px 0;
}

.magazine-sidebar {
  grid-column: 3;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-post {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.sidebar-post:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.sidebar-post-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-content h5 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.sidebar-post-content h5 a {
  color: #2c3e50;
  text-decoration: none;
}

.sidebar-post-content h5 a:hover {
  color: var(--primary);
}

.sidebar-meta {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .magazine-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .featured-post {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .magazine-sidebar {
    grid-column: 1/span 2;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidebar-post {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .tech-magazine-section {
    padding: 20px 15px;
  }
  .tech-magazine-section h2.section-title {
    font-size: 2rem;
  }
  .magazine-grid {
    grid-template-columns: 1fr;
  }
  .featured-post {
    grid-column: 1;
    grid-row: 1;
  }
  .featured-post-img {
    height: 300px;
  }
  .featured-post-content h3 {
    font-size: 1.4rem;
  }
  .magazine-sidebar {
    grid-column: 1;
    grid-row: 4;
    flex-direction: column;
  }
}
/* Loading animation */
.magazine-loading {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* Magazine Section Styling */
.hero-section {
  margin-top: 2rem;
}

.hero-post {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
  filter: brightness(0.8);
  transition: transform 0.5s ease;
}

.hero-post:hover .hero-image {
  transform: scale(1.05);
}

.gradient-overlay {
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
  padding: 2rem;
}

.hero-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title a:hover {
  text-decoration: underline !important;
}

/* Single Category Page Styling */
.acksthellens-category-meta .badge {
  font-weight: 500;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.acksthellens-entry-title a {
  transition: color 0.2s ease;
  color: var(--primary);
  font-family: "Playfair Display", sans-serif;
}

.acksthellens-entry-title .card-title a {
  color: var(--primary);
}

.acksthellens-entry-title a:hover {
  color: var(--bs-primary) !important;
}

.acksthellens-pagination .page-link {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border: none;
  color: #495057;
}

.acksthellens-pagination .page-item.active .page-link {
  background-color: var(--primary);
}

.acksthellens-pagination .page-item:not(.active) .page-link:hover {
  background-color: #f8f9fa;
}

@media (max-width: 767.98px) {
  .card img.rounded-start {
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    width: 100%;
    height: 200px;
  }
  .card .row.g-0 {
    flex-direction: column;
  }
  .card .col-md-4,
  .card .col-md-8 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/*
CATEGORY WITH IMAGES

*/
/* Categories Grid Styles */
.categories-grid-page {
  padding: 40px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
}

.page-header h1 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.page-header .page-content {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.categories-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.category-item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-10px);
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-item:hover .category-card {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
  height: 100px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.category-item:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #212529;
}

.category-content p {
  color: #6c757d;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

.category-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.category-count {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

.filter-container {
  margin-bottom: 30px;
  text-align: center;
}

.filter-btn {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 8px 20px;
  margin: 0 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (max-width: 991px) {
  .category-content h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .category-image {
    height: 180px;
  }
  .category-content {
    padding: 20px;
  }
}
.acksthellens-headerbg {
  position: relative;
  width: 100%;
  background-color: #212121;
  height: 300px;
  padding-top: 60px;
}

.acksthellens-headerbg span {
  color: white;
}

.acksthellens-headerbg :is(h1, h2, h3) {
  color: white;
  text-align: center;
  z-index: 1;
  text-transform: capitalize;
}

.acksthellens-header-coverbg {
  position: relative;
  width: 100%;
}

.acksthellens-header-coverbg img {
  position: relative;
  width: 100%;
  height: 280px;
  object-fit: cover;
  z-index: -1;
}

@media (min-width: 768px) {
  .acksthellens-header-coverbg img {
    height: 380px;
  }
}
.acksthellens-header-coverbg :is(h1, h2, h3) {
  padding-top: 80px;
  color: white;
  text-align: center;
  z-index: 1;
  margin-bottom: 50px;
}

/* Magazine Layout Styles */
/* News Cards */
.news-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.news-card .card-img-top {
  transition: transform 0.3s ease;
}

.news-card:hover .card-img-top {
  transform: scale(1.05);
}

.news-meta .badge {
  font-size: 0.75rem;
}

/* Popular Posts */
.popular-posts .list-group-item {
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.popular-posts .list-group-item:hover {
  background-color: #f8f9fa;
}

.popular-posts .list-group-item:last-child {
  border-bottom: none;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.newsletter-form .form-control {
  border: none;
  border-radius: 8px 0 0 8px;
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-excerpt {
    font-size: 1rem;
  }
  .gradient-overlay {
    padding: 1.5rem;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-card {
  animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(2) {
  animation-delay: 0.1s;
}

.news-card:nth-child(3) {
  animation-delay: 0.2s;
}

.news-card:nth-child(4) {
  animation-delay: 0.3s;
}

/*================================================== 
    BACK TO TOP
 ===================================================*/
/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

/*################################################################################
*
* acksthellens TAGS STYLES 
*
*#################################################################################*/
.tags-page {
  max-width: 1200px;
}

.tag-link {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.tag-link:hover {
  background-color: var(--bs-primary);
  color: white;
  transform: translateY(-2px);
}

.tag-link .badge {
  font-size: 0.6rem;
  padding: 0.25rem 0.5rem;
}

.tag-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tag-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.tag-card .list-group-item {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tag-card .list-group-item:last-child {
  border-bottom: none;
}

.tag-card .list-group-item:hover {
  background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .tags-cloud {
    padding: 0 1rem;
  }
  .tag-link {
    margin-bottom: 0.5rem;
  }
  .tag-card {
    margin-bottom: 1.5rem;
  }
}
/* Tag cloud size variations based on count */
.tag-link {
  font-size: 0.9rem;
}

.tag-link .badge {
  font-size: 0.6rem;
}

/* Optional: Size tags based on popularity */
.tag-link.tag-count-1 {
  font-size: 0.8rem;
}

.tag-link.tag-count-5 {
  font-size: 0.9rem;
}

.tag-link.tag-count-10 {
  font-size: 1rem;
}

.tag-link.tag-count-20 {
  font-size: 1.1rem;
}

.tag-link.tag-count-50 {
  font-size: 1.2rem;
}

button {
  font-family: "Playfair Display", sans-serif;
}

/* Headings with bolder weight */
h1, h2 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}

:is(h3, h4, h5, h6) {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}

p {
  font-family: "jost", sans-serif;
}

/*################################################################################
*
* acksthellens CATEGORIES SECTION STYLES 
*
*#################################################################################*/
.categories-page {
  max-width: 1200px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.acksthellens-category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.acksthellens-category-card .card {
  background-color: #ffffff;
}

.acksthellens-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.acksthellens-category-card .card-header {
  position: relative;
}

.acksthellens-category-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 600;
  padding: 0.35em 0.65em;
}

.acksthellens-category-card .card-body h3 a {
  color: #1a202c;
}

.acksthellens-category-card .list-group-item {
  padding: 1rem;
  transition: background-color 0.2s ease;
}

.acksthellens-category-card .list-group-item:hover {
  background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .categories-grid {
    grid-template-columns: 2fr;
  }
}
/*#################################################################
*
* SINGLE PAGE AND FULLWIDTH PAGE
*
*###################################################################*/
.acksthellens-single-page {
  max-width: 1200px;
}

.acksthellens-featuredimg-wrapper {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.acksthellens-entry-header {
  margin-bottom: 3rem !important;
}

.acksthellens-entry-content {
  line-height: 1.8;
  color: #4a5568;
}

.acksthellens-entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.acksthellens-entry-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.acksthellens-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.acksthellens-entry-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4a5568;
}

.acksthellens-single-posts-content {
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 12px;
}

.entry-content a {
  border-bottom: 2px solid var(--primary);
  font-weight: 600;
}

.tags-links a {
  background-color: var(--primary);
  padding: 2px 5px;
  color: #ffffff;
  border-radius: 5px;
  font-family: "Playfair Display", sans-serif;
}

.acksthellens-entry-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.acksthellens-entry-content table th,
.acksthellens-entry-content table td {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
}

.acksthellens-entry-content table th {
  background-color: #f8fafc;
  font-weight: 600;
}

.acksthellens-tagcloud a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #f1f5f9;
  color: #4a5568;
  border-radius: 50px;
  font-size: 0.85rem !important;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.acksthellens-tagcloud a:hover {
  background-color: var(--bs-primary);
  color: white;
}

/*#####################################################################
*
*   SIDEBAR STYLES
*
*########################################################################*/
/* Modern Sidebar Styling */
.sidebar {
  background: #fbfbfb;
  padding: 0.8rem;
  margin-bottom: 2rem;
}

.sidebar .widget {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: none;
}

.sidebar .widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2d3748;
  position: relative;
  padding-bottom: 0.75rem;
  /* border-bottom: 2px dashed var(--primary); */
}

.sidebar .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #1d1147);
  border-radius: 3px;
}

/* Widget List Items */
.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

.sidebar li:hover {
  transform: translateX(5px);
}

.sidebar li a {
  color: #4a5568;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.sidebar li a:hover {
  color: var(--primary);
}

.sidebar li a::before {
  content: "→";
  color: #a0aec0;
  margin-right: 0.75rem;
  font-size: 0.9em;
  transition: all 0.2s ease;
}

.sidebar li a:hover::before {
  color: var(--primary);
  margin-right: 1rem;
}

/* Search Widget */
.sidebar .widget_search .search-form {
  position: relative;
}

.sidebar .widget_search input[type=search] {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.sidebar .widget_search input[type=search]:focus {
  border-color: #a5b4fc;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.3);
  outline: none;
}

.sidebar .widget_search .search-submit {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
}

.sidebar .widget_search .search-submit:hover {
  color: var(--primary);
}

/* Recent Posts Widget */
.sidebar .widget_recent_entries .post-date {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

/* Tag Cloud Widget */
.sidebar .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar .tagcloud a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #f1f5f9;
  color: #4a5568;
  border-radius: 6px;
  font-size: 0.8rem !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar .tagcloud a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Modern Search Form Styling */
.widget_search .search-form {
  position: relative;
  margin: 20px 0;
}

.widget_search .search-field {
  width: 100%;
  padding: 12px 20px;
  padding-right: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget_search .search-field:focus {
  border-color: #4a90e2;
  box-shadow: 0 2px 15px rgba(74, 144, 226, 0.2);
  outline: none;
}

.widget_search .search-submit {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.widget_search .search-submit:hover {
  background: #3a7bc8;
  transform: scale(1.05);
}

.widget_search .search-submit::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

/*
*
* SEARCH
*
*/
/* Custom search button styles */
.search-form .btn-primary {
  transition: all 0.2s ease;
}

.search-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Floating search button */
.position-relative .btn-primary {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 50px;
}

/* Loading state */
.btn-primary .spinner-border {
  vertical-align: middle;
}

/*##############################################################
SERMON STYLES
###############################################################*/
/* Single Sermon Styles */
.sermon-single-container {
  padding: 30px 0;
}

/* Breadcrumb */
.sermon-breadcrumb {
  margin-bottom: 30px;
}

.sermon-breadcrumb .breadcrumb {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Sermon Header */
.sermon-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.sermon-header-meta {
  margin-bottom: 15px;
}

.sermon-date-badge {
  background: #e74c3c;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-right: 10px;
}

.sermon-series-badge {
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.sermon-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.sermon-preacher, .sermon-passage {
  display: flex;
  align-items: center;
  color: #666;
  margin-bottom: 10px;
}

.sermon-preacher i, .sermon-passage i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}

/* Featured Image */
.sermon-featured-image {
  margin-bottom: 30px;
}

.sermon-featured-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Media Player */
.sermon-media-player {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.player-header h3 {
  margin: 0;
  color: #2c3e50;
}

.duration-badge {
  background: #2c3e50;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.audio-player audio {
  border-radius: 8px;
  margin-bottom: 20px;
}

.no-audio-alert {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
}

.no-audio-alert i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 15px;
  display: block;
}

.player-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Sermon Content */
.sermon-content {
  margin-bottom: 40px;
}

.content-title {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.sermon-text {
  line-height: 1.8;
  font-size: 1.1rem;
}

.sermon-text img {
  max-width: 100%;
  height: auto;
}

/* Resources */
.sermon-resources {
  background: #fff8e1;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid #ffc107;
}

.sermon-resources h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

/* Tags */
.sermon-tags {
  margin-bottom: 40px;
}

.sermon-tags h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.tag-badge {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 8px 15px;
  border-radius: 30px;
  margin: 0 5px 10px 0;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-badge:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

/* Navigation */
.sermon-navigation {
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.nav-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.nav-previous, .nav-next {
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s;
 
}

.nav-link:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.nav-post-info h5 {
  margin: 0;
  font-size: 1rem;
}

.nav-post-info small {
  color: #666;
}

/* Sidebar Styles */
.sidebar-title {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

/* Series Sidebar */
.series-sidebar {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.series-header {
  text-align: center;
  margin-bottom: 20px;
}

.series-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.series-sidebar h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.series-description {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

/* Preacher Sidebar */
.preacher-sidebar {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.preacher-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.preacher-image {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.preacher-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s;
  border: 3px solid var(--primary);
}

.preacher-image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 2rem;
}

.preacher-info h4 {
  margin: 0 0 5px 0;
  color: #2c3e50;
}

.preacher-title {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.preacher-description {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Related Sermons */
.related-sermons {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.related-sermon-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.related-sermon-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
}

.related-content h5 a {
  color: #2c3e50;
  text-decoration: none;
}

.related-content h5 a:hover {
  color: var(--secondary);
}

/* Sermon Details Sidebar */
.sermon-details-sidebar {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.sermon-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sermon-details-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.sermon-details-list li:last-child {
  border-bottom: none;
}

.sermon-details-list i {
  color: var(--primary);
  width: 20px;
  margin-right: 15px;
  text-align: center;
}

.sermon-details-list span {
  flex: 1;
  color: #666;
}

.sermon-details-list strong {
  color: #2c3e50;
}

.sermon-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 20px;
}

.sermon-meta-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.sermon-meta-section i {
  color: var(--accent);
  margin-right: 5px;
}

.sermon-excerpt {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sermon-card-section {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background-color: white;
}

.sermon-card-section:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sermon-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.sermon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sermon-card-section:hover .sermon-image img {
  transform: scale(1.05);
}

.sermon-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.sermon-category {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(44, 62, 80, 0.85);
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.sermon-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.sermon-footer i {
  color: var(--primary);
}

.card-body {
  padding: 25px;
}

.btn-sermon {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-sermon:hover {
  background-color: var(--primary);
  color: white;
}

.sermon-actions a {
  color: #aaa;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.sermon-actions a:hover {
  color: var(--accent);
}

.filter-section {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  margin: 0 20px 30px;
}

.filter-title {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.filter-badge {
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  background-color: #f0f0f0;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  user-select: none;
}

.filter-badge:hover, .filter-badge.active {
  background-color: var(--accent);
  color: white;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #666;
}

.no-results i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.content-area {
  padding: 20px;
}

.wordpress-info {
  background: #f0f0f1;
  border-left: 4px solid var(--primary);
  padding: 15px;
  margin: 20px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.wordpress-info h5 {
  color: #1d2327;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.wp-feature {
  background: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.85rem;
}

.wp-feature i {
  color: var(--accent);
  margin-right: 5px;
}

@media (max-width: 768px) {
  .sermon-meta {
    flex-direction: column;
  }
  .sermon-meta div {
    margin-bottom: 5px;
  }
  .sermon-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .sermon-actions {
    margin-top: 10px;
  }
  .wp-admin-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.pagination {
  justify-content: center;
  margin-top: 30px;
}

.page-link {
  color: var(--accent);
}

.page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Share Widget */
.share-widget {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.email {
  background: #ea4335;
}

.share-btn.link {
  background: #6c757d;
}

/* Comments Section */
.sermon-comments {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.comments-title {
  color: #2c3e50;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sermon-title {
    font-size: 2rem;
  }
  .player-actions {
    flex-direction: column;
  }
  .player-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sermon-navigation .row > div {
    margin-bottom: 15px;
  }
  .preacher-header {
    flex-direction: column;
    text-align: center;
  }
  .preacher-image,
  .preacher-image-placeholder {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* ARCHIVE PAGES  */
/* Sermon Archive Styles */
.sermon-archive-container {
  padding: 30px 0;
}

/* Archive Header */
.archive-header {
  background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.archive-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.archive-description {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
}

.archive-stats {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media (max-width: 992px) {
  .archive-starts {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.stat-item i {
  color: #ffffff;
  width: 20px;
}

/* Advanced Filters */
.advanced-filters {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.filter-toggles {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-toggle.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--secondary);
}

.advanced-filter-panel {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  background: #f8f9fa;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h5 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1rem;
}

.filter-checkboxes {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 10px;
}

.filter-checkboxes::-webkit-scrollbar {
  width: 5px;
}

.filter-checkboxes::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-checkboxes::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.filter-checkboxes::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.form-check {
  margin-bottom: 8px;
}

.form-check-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.active-filters {
  background: #e8f4fc;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.active-filters h6 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.active-filter-tag {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.active-filter-tag .remove-filter {
  background: none;
  border: none;
  color: white;
  padding: 0;
  cursor: pointer;
}

/* Sermon Cards */
.sermon-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background: white;
}

.sermon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sermon-card-header {
  position: relative;
}

.sermon-image {
  height: 180px;
  overflow: hidden;
}

.sermon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sermon-card:hover .sermon-image img {
  transform: scale(1.05);
}

.sermon-image-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.sermon-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-body {
  padding: 20px;
}

.sermon-series {
  margin-bottom: 10px;
}

.series-link {
  background: #f0f7ff;
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
}

.series-link:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.sermon-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sermon-title a {
  color: #2c3e50;
  text-decoration: none;
}

.sermon-title a:hover {
  color: var(--primary);
}

.sermon-excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.sermon-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
}

.meta-item i {
  color: var(--primary);
  width: 16px;
}

.meta-item a {
  color: #666;
  text-decoration: none;
}

.meta-item a:hover {
  color: var(--primary);
}

.sermon-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* List View */
.list-view-header {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #dee2e6;
  font-weight: 600;
  color: #2c3e50;
}

.list-view-item {
  padding: 15px;
  border: 1px solid #dee2e6;
  border-top: none;
  transition: background-color 0.3s;
}

.list-view-item:hover {
  background: #f8f9fa;
}

.list-view-item h5 {
  margin: 0;
  font-size: 1rem;
}

.list-actions {
  display: flex;
  gap: 5px;
}

/* No Sermons Found */
.no-sermons-found {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
}

.no-sermons-found i {
  color: #ddd;
  margin-bottom: 20px;
}

.no-sermons-found h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.no-sermons-found p {
  color: #666;
  margin-bottom: 20px;
}

/* Pagination */
.sermon-pagination {
  margin: 40px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.pagination-info {
  color: #666;
  font-size: 0.95rem;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 2px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-wrapper .page-numbers:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-wrapper .current {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Featured Series */
.featured-series {
  margin: 60px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
}

.series-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.series-card:hover {
  transform: translateY(-5px);
}

.series-image {
  height: 150px;
  overflow: hidden;
}

.series-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-content {
  padding: 20px;
}

.series-content h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.series-count {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.series-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Recent Preachers */
.recent-preachers {
  margin: 60px 0;
}

.preachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.preacher-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  justify-items: center;
}

.preacher-card:hover {
  transform: translateY(-5px);
}

.preacher-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid var(--primary);
}

.preacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.preacher-info h5 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.preacher-title {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.sermon-count {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Subscription CTA */
.subscription-cta {
  background-color: var(--gray);
  color: white;
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
}

.subscription-cta h3 {
  margin-bottom: 10px;
}

.subscription-cta p {
  opacity: 0.9;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .archive-header {
    text-align: center;
    padding: 30px 20px;
  }
  .archive-title {
    font-size: 2rem;
  }
  .archive-stats {
    margin-top: 20px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .filter-toggles {
    justify-content: center;
  }
  .filter-group {
    margin-bottom: 30px;
  }
  .sermon-meta {
    grid-template-columns: 1fr;
  }
  .list-view-header {
    display: none;
  }
  .list-view-item .row > div {
    margin-bottom: 10px;
  }
  .preachers-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .subscription-cta {
    text-align: center;
    padding: 30px 20px;
  }
  .subscription-cta .col-md-4 {
    margin-top: 20px;
  }
}
/* PREACHERS SINGLE PAGE  */
/* Preacher Profile Styles */
.preacher-profile-container {
  padding: 30px 0;
}

.preacher-breadcrumb {
  margin-bottom: 30px;
}

.preacher-profile-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.preacher-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.preacher-avatar {
  width: 150px;
  height: 150px;
  margin-right: 30px;
  flex-shrink: 0;
}

.preacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid var(--primary);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  border: 5px solid var(--primary);
}

.preacher-info {
  flex: 1;
}

.preacher-name {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.preacher-title {
  font-size: 1.2rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 10px;
}

.preacher-church, .preacher-location {
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.preacher-church i, .preacher-location i {
  width: 20px;
  color: var(--primary);
}

.preacher-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  font-family: "Playfair Display", serif;
}

.preacher-bio {
  margin-bottom: 30px;
}

.bio-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.bio-content img {
  max-width: 100%;
  height: auto;
}

.preacher-details {
  margin-bottom: 30px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s;
}

.detail-item:hover {
  transform: translateY(-3px);
}

.detail-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 5px;
}

.detail-item h6 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.detail-item p {
  color: #666;
  margin: 0;
}

.preacher-social {
  margin-bottom: 30px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.social-link i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.social-link.website:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-link.email:hover {
  border-color: #ea4335;
  color: #ea4335;
}

.social-link.facebook:hover {
  border-color: #3b5998;
  color: #3b5998;
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}

/* Preacher's Sermons */
.preacher-sermons {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sermon-filters {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.no-sermons {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-sermons i {
  margin-bottom: 20px;
  color: #ddd;
}

/* Sidebar */
.preacher-sidebar-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  font-size: 1.2rem;
}

.stats-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-summary-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-summary-item i {
  color: var(--primary);
  font-size: 1.5rem;
  width: 30px;
}

.stat-summary-item .stat-number {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.2rem;
}

.stat-summary-item .stat-label {
  color: #666;
  font-size: 0.9rem;
  display: block;
}

.series-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.series-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.series-item:last-child {
  border-bottom: none;
}

.series-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
}

.series-item a:hover {
  color: var(--primary);
}

.series-item h6 {
  margin: 0;
  font-size: 0.95rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.email {
  background: #ea4335;
}

.share-btn.link {
  background: #6c757d;
}

.other-preachers {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.other-preacher a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #2c3e50;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.other-preacher a:hover {
  background: #f8f9fa;
  text-decoration: none;
}

.other-preacher img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.other-preacher h6 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .preacher-header {
    flex-direction: column;
    text-align: center;
  }
  .preacher-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .preacher-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .section-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* PREACHER ARCHIVE PAGE  */
/* Preachers Archive Styles */
.preachers-archive-container {
  padding: 30px 0;
}

.archive-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 30px;
}

.archive-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

/* Controls */
.preachers-controls {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.search-box input {
  padding-left: 45px;
}

.active-filters {
  background: #f0f7ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.active-filters h6 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-tag .remove {
  background: none;
  border: none;
  color: white;
  padding: 0;
  cursor: pointer;
}

/* Preachers Grid */
.preachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.preacher-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.preacher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.preacher-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.preacher-card:hover .preacher-image img {
  transform: scale(1.05);
}

.image-placeholder {
  width: 200px;
  height: 200px;
  align-items: center;
  display: flesection-titlex;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.sermon-count-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.preacher-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.preacher-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.preacher-name a {
  color: inherit;
  text-decoration: none;
}

.preacher-name a:hover {
  color: var(--primary);
}

.preacher-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.preacher-church {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.preacher-church i {
  color: var(--primary);
}

.preacher-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.preacher-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* No Preachers Found */
.no-preachers-found {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
}

.no-preachers-found i {
  color: #ddd;
  margin-bottom: 20px;
}

.no-preachers-found h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Pagination */
.preachers-pagination {
  text-align: center;
  margin: 40px 0;
}

.preachers-pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 3px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.preachers-pagination .page-numbers:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.preachers-pagination .current {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Featured Preachers */
.featured-preachers {
  margin: 60px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  text-align: center;
  font-size: 2rem;
}

.featured-preacher-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}

.featured-preacher-card:hover {
  transform: translateY(-5px);
}

.featured-image {
  height: 200px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-preacher-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-content {
  padding: 25px;
  text-align: center;
}

.featured-content h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.featured-content h3 a {
  color: inherit;
  text-decoration: none;
}

.featured-content h3 a:hover {
  color: var(--primary);
}

.sermon-count {
  color: #666;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sermon-count i {
  color: var(--primary);
}

/* Become Preacher CTA */
.become-preacher-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.become-preacher-cta h3 {
  margin-bottom: 10px;
}

.become-preacher-cta p {
  opacity: 0.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .archive-title {
    font-size: 2.2rem;
  }
  .archive-description {
    font-size: 1.1rem;
  }
  .archive-stats {
    flex-direction: column;
    gap: 15px;
  }
  .preachers-grid {
    grid-template-columns: 1fr;
  }
  .featured-preachers .row {
    flex-direction: column;
    gap: 30px;
  }
  .become-preacher-cta {
    text-align: center;
    padding: 30px 20px;
  }
  .become-preacher-cta .col-md-4 {
    margin-top: 20px;
  }
}
/*==============================================================
				 St Hellen's TOP Section
================================================================*/
.sthellen-departments-top-section {
  position: relative;
  background-color: #9E3494;
  background: linear-gradient(to bottom, rgba(158, 52, 148, 0.8), rgba(255, 255, 255, 0.7)), url("../images/title_bg-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: cover;
  padding: 4.5rem 2rem;
}

.sthellen-departments-top-section p {
  font-family: "jost", sans-serif;
}

.sthellen-departments-top-section :is(h2, h3) {
  color: #1C244B;
  font-family: "Cormorant Garamond", serif;
  border-bottom: 1px dashed #dee2e6;
  padding-bottom: 10px;
}

.sthellen-departments-top-section .departments-image {
  /*		width: 100%;*/
  padding: 0;
}

.sthellen-departments-top-section .departments-image img {
  height: auto;
}

@media (min-width: 768px) {
  .sthellen-departments-top-section .departments-image img {
    height: 25rem;
    object-fit: cover;
  }
}
.sthellen-departments-top-section .departments-image img:hover {
  opacity: 0.6;
}

.sthellen-departments-top-section .departments-meta {
  padding-top: 3rem;
}

.sthellen-departments-top-section .departments-meta ul {
  padding-left: 0;
}

@media (min-width: 768px) {
  .sthellen-departments-top-section .departments-meta ul {
    padding-left: 0.8rem;
  }
}
.sthellen-departments-top-section .departments-meta ul li {
  list-style-type: none;
  padding: 0.5rem 0;
}

.sthellen-departments-top-section .departments-meta i {
  color: #9E3494;
  padding: 0 0.5rem;
}

/*========================================================== 
	 DEPARTMENT CONTENT SECTION
============================================================*/
.department-content {
  position: relative;
  background-color: #fff;
  padding-top: 5rem;
  margin-bottom: 5rem;
}

.department-content .department-details {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.department-content .card {
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.department-content .card img {
  width: 100%;
  min-height: 15rem;
  object-fit: cover;
}

.department-content .card img:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

.department-content .department-item {
  position: relative;
  margin: -4rem 20px 1rem 20px;
  background-color: #fff;
  border-radius: 18px;
  min-height: 10rem;
}

.department-content .department-item :is(h3, h4, h5) {
  color: #1C244B;
  border-bottom: 1px dashed #dee2e6;
  padding-bottom: 10px;
}

.department-content .department-item p {
  padding-top: 1rem;
  color: #1C244B;
}

.department-content .department-item li {
  color: #1C244B;
}

.department-content .department-item li i {
  color: #9E3494;
}

.department-content .department-item .btn {
  color: #fff;
}

.department-content .department-item .btn:hover {
  color: #fff;
}

/*===========================================================================
* departments audio-video
===========================================================================*/
.departments-audio-video {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

/*
* departments COMMENTS
*/
.departments-comments {
  background-color: #fff;
  padding-top: 2rem;
}

/*===========================================================================
* Single monthly Theme Styles
===========================================================================*/

/*===========================================================================
* EVENTS
===========================================================================*/

/*# sourceMappingURL=style.css.map */
