/* ==========================================================================
   Islamic Foundation Kenya - Custom Styles
   Colors: Green #2a7743, Gold #d9c99a, Blue #19698e
   Font: EB Garamond
   ========================================================================== */

:root {
  --ifk-green: #2a7743; /* secondary */
  --ifk-green-dark: #1e5a33; /* secondary */
  --ifk-green-light: #e8f3ec; /* secondary */
  --ifk-gold: #d9c99a;
  --ifk-gold-dark: #c4ad72;
  --ifk-gold-light: #f5f0e3;
  --ifk-blue: #19698e; /* primary */
  --ifk-blue-dark: #125272; /* primary */
  --ifk-blue-light: #e4f0f5; /* primary */
  --ifk-accent-blue: #2980b9;
  --ifk-dark: #1a1a2e;
  --ifk-gray: #6c757d;
  --ifk-light: #f8f9fa;
  --ifk-white: #ffffff;
}

/* ---------- Protect WordPress Admin Bar ---------- */




/* ---------- Global Typography ---------- */
body:not(.wp-admin) #page {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

#page h1, #page h2, #page h3, #page h4, #page h5, #page h6,
#page .site-title, #page .entry-title, #page .page-title,
#page .section-title, #page .widget-title {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-weight: 700;
}

.site-content p, .site-content li, .site-content span, .site-content a,
.site-content label, .site-content input, .site-content textarea,
.site-content select, .site-content button,
.site-header p, .site-header a, .site-header span,
.site-footer p, .site-footer a, .site-footer span,
.site-footer li, .site-footer label,
.entry-content p, .entry-content li, .entry-content span, .entry-content a,
.comment-body p, .comment-body a, .comment-body span,
.widget p, .widget a, .widget li, .widget span {
  font-family: 'EB Garamond', 'Georgia', serif !important;
}

/* Protect icon fonts */
.dashicons, .dashicons-before::before {
  font-family: dashicons !important;
}
.fa, .fas, .far, .fal, .fad, .fontawesome {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome' !important;
  font-weight: 900;
}
.fab, .fa-brands {
  font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands', 'FontAwesome' !important;
  font-weight: 400;
}
[class^="fa-"], [class*=" fa-"] {
  font-family: inherit;
}
.eicon, [class^="eicon-"],
.elementor-icon {
  font-family: 'eicons' !important;
}
.icofont, [class^="icofont-"] {
  font-family: 'IcoFont' !important;
}

/* ---------- Header & Navigation ---------- */
.site-header {
  background: var(--ifk-white) !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.site-header .site-branding .site-title {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-size: 26px;
  font-weight: 800;
}

.site-header .site-branding .site-title a {
}

.site-header .site-description {
  font-style: italic;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.menu li a {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.menu > li.current-menu-item > a,
.main-navigation ul.menu > li.current-menu-ancestor > a {
}

.main-navigation ul.menu li ul.sub-menu {
  background: var(--ifk-white);
  border-top: 3px solid var(--ifk-blue);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 4px 4px;
}

.main-navigation ul.menu li ul.sub-menu li a {
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 10px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation ul.menu li ul.sub-menu li a:hover {
  background: var(--ifk-blue-light);
}

/* Donate CTA Button in Nav */
.menu-item-donate > a,
.main-navigation ul.menu > li.menu-item-donate > a {
  background: var(--ifk-blue) !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  margin-left: 15px;
}

.menu-item-donate > a:hover,
.main-navigation ul.menu > li.menu-item-donate > a:hover {
  background: var(--ifk-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25,105,142,0.4);
}

/* ---------- Buttons (Global) ---------- */
#page .button-primary, #page .btn-primary,
#page button[type="submit"], #page input[type="submit"],
.wp-block-button__link, .added_to_cart,
.woocommerce a.button, .woocommerce button.button,
.woocommerce #respond input#submit {
  background: var(--ifk-blue) !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 12px 32px !important;
  transition: all 0.3s ease !important;
}

#page .button-primary:hover, #page .btn-primary:hover,
#page button[type="submit"]:hover, #page input[type="submit"]:hover,
.wp-block-button__link:hover {
  background: var(--ifk-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25,105,142,0.3);
}

a {
  color: var(--ifk-accent-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ifk-blue);
  text-decoration: none;
}

/* ---------- IFK Homepage: Hero Section ---------- */
.ifk-hero {
  position: relative;
  overflow: hidden;
}

.ifk-slider { position: relative; }

.ifk-slide {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}

.ifk-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(25,105,142,0.5) 100%);
  z-index: 1;
}

.ifk-slide-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  color: var(--ifk-white);
}

.ifk-slide-content h1 {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ifk-slide-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.92);
}

.ifk-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.ifk-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'EB Garamond', 'Georgia', serif !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.ifk-btn-primary {
  background: var(--ifk-blue);
  border: 2px solid var(--ifk-blue);
}
.ifk-btn-primary:hover {
  background: var(--ifk-blue-dark);
  border-color: var(--ifk-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(25,105,142,0.4);
}

.ifk-btn-gold {
  background: var(--ifk-blue);
  border: 2px solid var(--ifk-blue);
}
.ifk-btn-gold:hover {
  background: var(--ifk-blue-dark);
  border-color: var(--ifk-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217,201,154,0.5);
}

.ifk-btn-outline-white {
  background: transparent;
  border: 2px solid var(--ifk-white);
}
.ifk-btn-outline-white:hover {
  background: var(--ifk-white);
  transform: translateY(-3px);
}

/* Slider Navigation Dots */
.ifk-slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.ifk-slider-nav button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ifk-white) !important;
  background: transparent !important;
  cursor: pointer;
  padding: 0 !important;
  transition: all 0.3s ease;
}

.ifk-slider-nav button.active {
  background: var(--ifk-blue) !important;
  border-color: var(--ifk-blue) !important;
}

/* Slider Arrows */
.ifk-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2) !important;
  border: none !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.ifk-slider-arrow:hover {
  background: var(--ifk-blue) !important;
}
.ifk-slider-arrow.prev { left: 20px; }
.ifk-slider-arrow.next { right: 20px; }

/* ---------- Section Shared Styles ---------- */
.ifk-section { padding: 80px 0; }
.ifk-section-light { background: var(--ifk-light); }
.ifk-section-green { background: var(--ifk-blue); color: var(--ifk-white); }
.ifk-section-dark { background: var(--ifk-dark); color: var(--ifk-white); }

.ifk-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.ifk-section-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ifk-dark);
}

.ifk-section-header .ifk-subtitle {
  font-size: 16px;
  color: var(--ifk-gray);
  max-width: 600px;
  margin: 0 auto;
}

.ifk-section-header .ifk-divider {
  width: 60px;
  height: 3px;
  background: var(--ifk-blue);
  margin: 15px auto;
  border-radius: 2px;
}

.ifk-section-green .ifk-section-header h2 { color: var(--ifk-white); }
.ifk-section-green .ifk-section-header .ifk-subtitle { color: rgba(255,255,255,0.8); }

/* ---------- About Preview ---------- */
.ifk-about-preview {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ifk-about-preview .ifk-about-image {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.ifk-about-preview .ifk-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ifk-about-content { flex: 1; }

.ifk-about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--ifk-dark);
}

.ifk-about-content .ifk-gold-line {
  width: 50px;
  height: 3px;
  background: var(--ifk-blue);
  margin-bottom: 20px;
}

.ifk-about-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.ifk-mission-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.ifk-mission-list li {
  padding: 8px 0 8px 35px;
  position: relative;
  font-size: 16px;
  color: #444;
}

.ifk-mission-list li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--ifk-blue);
  font-size: 16px;
  font-weight: 900;
}

/* ---------- Projects Grid ---------- */
.ifk-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ifk-project-card {
  background: var(--ifk-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ifk-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ifk-project-card .ifk-card-image {
  height: 220px;
  overflow: hidden;
}

.ifk-project-card .ifk-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ifk-project-card .ifk-card-body {
  padding: 25px;
}

.ifk-project-card .ifk-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ifk-project-card .ifk-card-body h3 a {
  color: var(--ifk-dark);
  text-decoration: none;
}
.ifk-project-card .ifk-card-body h3 a:hover { color: var(--ifk-blue); }

.ifk-project-card .ifk-card-body p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ifk-card-cta {
  display: inline-block;
  color: var(--ifk-blue);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.ifk-card-cta:hover { color: var(--ifk-blue-dark); }
.ifk-card-cta i { margin-left: 5px; transition: margin-left 0.3s ease; }
.ifk-card-cta:hover i { margin-left: 10px; }

/* ---------- News Section ---------- */
.ifk-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ifk-news-card {
  background: var(--ifk-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ifk-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.ifk-news-card .ifk-news-image {
  height: 200px;
  overflow: hidden;
}

.ifk-news-card .ifk-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ifk-news-card .ifk-news-body { padding: 25px; }

.ifk-news-card .ifk-news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--ifk-gray);
}

.ifk-news-card .ifk-news-meta i {
  color: var(--ifk-blue);
  margin-right: 4px;
}

.ifk-news-card .ifk-news-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ifk-news-card .ifk-news-body h3 a {
  color: var(--ifk-dark);
  text-decoration: none;
}
.ifk-news-card .ifk-news-body h3 a:hover { color: var(--ifk-blue); }

.ifk-news-card .ifk-news-body p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.ifk-read-more {
  display: inline-block;
  color: var(--ifk-accent-blue);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 10px;
}
.ifk-read-more:hover { color: var(--ifk-blue); }

/* ---------- Donation CTA Section ---------- */
.ifk-donation-cta {
  background: linear-gradient(135deg, var(--ifk-blue) 0%, var(--ifk-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.ifk-donation-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(25deg);
}

.ifk-donation-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.ifk-donation-text { flex: 1; }

.ifk-donation-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.ifk-donation-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.7;
}

.ifk-donation-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ifk-donation-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.ifk-donation-category {
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-block;
}

.ifk-donation-category:hover {
  background: var(--ifk-blue);
  border-color: var(--ifk-blue);
}

/* ---------- Footer ---------- */
.ifk-footer {
  background: var(--ifk-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.ifk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ifk-footer h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.ifk-footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--ifk-blue);
  border-radius: 2px;
}

.ifk-footer p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.ifk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ifk-footer-links li { margin-bottom: 10px; }

.ifk-footer-links li a {
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.ifk-footer-links li a:hover {
  padding-left: 5px;
}

.ifk-footer-links li a i {
  margin-right: 8px;
  color: var(--ifk-blue);
  font-size: 12px;
}

.ifk-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ifk-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.ifk-footer-contact li i {
  color: var(--ifk-blue);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.ifk-footer-contact li span,
.ifk-footer-contact li a {
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.ifk-footer-contact li a:hover { color: var(--ifk-blue) !important; }

.ifk-newsletter-form { display: flex; margin-top: 15px; }

.ifk-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 18px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 50px 0 0 50px !important;
  font-size: 15px !important;
}

.ifk-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }

.ifk-newsletter-form button {
  padding: 12px 24px !important;
  background: var(--ifk-blue) !important;
  border: none !important;
  border-radius: 0 50px 50px 0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer;
}
.ifk-newsletter-form button:hover { background: var(--ifk-blue-dark) !important; }

.ifk-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.ifk-social-icons a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ifk-social-icons a:hover {
  background: var(--ifk-blue);
  transform: translateY(-3px);
}

.ifk-footer-bottom {
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
}

.ifk-footer-bottom p {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.5);
}

/* ---------- Theme Overrides ---------- */
.section-banner .banner-content .entry-title,
.section-banner .banner-content .entry-text p,
.feature-posts-content-wrap .feature-posts-content .feature-posts-title,
.post .feature-posts-content .cat-links a,
#primary article .entry-title,
.highlight-post-slider .post .entry-content .entry-title,
.sidebar .widget .widget-title,
.page-title {
  font-family: 'EB Garamond', 'Georgia', serif !important;
}

.header-two .bottom-header {
  background: var(--ifk-white) !important;
}

.cat-links a {
  background: var(--ifk-blue) !important;
}

#back-to-top a { background: var(--ifk-blue); color: var(--ifk-white); }
#back-to-top a:hover { background: var(--ifk-blue-dark); }

/* Elementor Overrides */
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor,
.elementor-button {
  font-family: 'EB Garamond', 'Georgia', serif !important;
}

/* WooCommerce Overrides */
.woocommerce .products .product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  font-family: 'EB Garamond', 'Georgia', serif !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .ifk-slide { min-height: 70vh; }
  .ifk-slide-content h1 { font-size: 38px; }
  .ifk-about-preview { flex-direction: column; gap: 30px; }
  .ifk-about-preview .ifk-about-image { flex: none; width: 100%; }
  .ifk-projects-grid, .ifk-news-grid { grid-template-columns: repeat(2, 1fr); }
  .ifk-donation-inner { flex-direction: column; text-align: center; }
  .ifk-donation-categories, .ifk-donation-actions { justify-content: center; }
  .ifk-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ifk-slide { min-height: 60vh; }
  .ifk-slide-content h1 { font-size: 30px; }
  .ifk-slide-content p { font-size: 16px; }
  .ifk-section { padding: 50px 0; }
  .ifk-section-header h2 { font-size: 30px; }
  .ifk-projects-grid, .ifk-news-grid { grid-template-columns: 1fr; }
  .ifk-donation-text h2 { font-size: 30px; }
  .ifk-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .ifk-about-content h2 { font-size: 28px; }
  .ifk-slider-arrow { display: none !important; }
}

@media (max-width: 480px) {
  .ifk-slide-content h1 { font-size: 26px; }
  .ifk-cta-group { flex-direction: column; align-items: center; }
  .ifk-cta-group .ifk-btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   Elementor Background & Border Overrides ONLY - No font color changes
   ========================================================================== */

/* Override Elementor button backgrounds only */
.elementor-button,
.elementor-widget .elementor-button,
body .elementor-widget-button .elementor-button {
  background-color: #19698e !important;
  border-color: #19698e !important;
}

.elementor-button:hover,
body .elementor-widget-button .elementor-button:hover {
  background-color: #125272 !important;
  border-color: #125272 !important;
}

/* Override Elementor divider/separator */
.elementor-divider-separator,
.elementor-widget-divider .elementor-divider-separator {
  border-color: #19698e !important;
}

/* Override Elementor progress bar background */
.elementor-progress-bar {
  background-color: #19698e !important;
}

/* Override old orange/gold backgrounds in sections */
.elementor-section[style*="ffa026"],
.elementor-section[style*="FFA026"],
.elementor-section[style*="d9c99a"],
.elementor-column[style*="ffa026"],
.elementor-column[style*="d9c99a"] {
  background-color: #19698e !important;
}

/* WooCommerce button backgrounds only */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit {
  background-color: #19698e !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: #125272 !important;
}

/* Category link backgrounds */
.cat-links a {
  background-color: #19698e !important;
}

/* Navigation dropdown border */
.main-navigation ul.menu li ul.sub-menu {
  border-top-color: #19698e !important;
}

/* Back to top button background */
#back-to-top a {
  background: #19698e;
}
#back-to-top a:hover {
  background: #125272;
}

/* Donate menu item background */
.menu-item-donate > a,
.main-navigation ul.menu > li.menu-item-donate > a {
  background: #19698e !important;
}
.menu-item-donate > a:hover,
.main-navigation ul.menu > li.menu-item-donate > a:hover {
  background: #125272 !important;
}

/* =====================================================
   Sina Banner Slider - Slide 1 ("The Passing of an Icon")
   On tablet and mobile portrait, hide the background
   image and show only the #25283A dark background colour.
   Uses :has() to match the outer .sina-slider-content
   via its inner repeater ID (848c6b7).
   ===================================================== */
@media (max-width: 1024px) {
  .elementor-129 .elementor-element.elementor-element-4a674ad5
  .sina-slider-content:has(.elementor-repeater-item-848c6b7) {
    background-image: none !important;
    background-color: #25283A !important;
  }
}

