/* styles.css */

/* Reset & Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0d6efd;
  --primary-hover: #0b5ed7;
  --secondary-color: #198754;
  --bg-color: #f5f7fa;
  --card-bg: #ffffff;
  --text-color: #212529;
  --muted-text: #6c757d;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --border-radius: 0.5rem;
  --font-family: 'Helvetica Neue', Arial, sans-serif;

  --home-primary: #198754;
  --home-ink: #111827;
  --home-muted: #f3f4f6;
  --home-card: #ffffff;
  --home-border: #eef2f7;
  --home-radius: 14px;
  --home-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Base page */
body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--bg-color);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('./images/bg-texture.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Default headings and text */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
}

p, label, span, li, td, th, small, div {
  color: inherit;
}

/* ===== Text on dark background only ===== */
.page-title,
.page-subtitle,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section p,
.intro-section h1,
.intro-section h2,
.intro-section h3,
.intro-section p,
.commitment-section h1,
.commitment-section h2,
.commitment-section h3,
.commitment-section p,
.video-section h1,
.video-section h2,
.video-section h3,
.video-section p,
.home-hero-text h1,
.home-hero-text h2,
.home-hero-text h3,
.home-hero-text p,
.home-lead,
.donation-call {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

/* Optional readable dark-background content blocks */
.text-on-image,
.home-text-block,
.commitment-section,
.intro-section {
  background: rgba(0, 0, 0, 0.38);
  padding: 1.25rem;
  border-radius: 12px;
}

/* Hero Section */
.hero-section {
  background: rgba(13, 110, 253, 0.92);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f8f9fa;
}

/* Product Grid */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px var(--shadow-color);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.product img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  background: #f8f9fa;
}

.product h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  text-shadow: none;
}

.product p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-shadow: none;
}

.product .price {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-shadow: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn-secondary:hover {
  background-color: #146c43;
}

.links {
  text-align: center;
  margin-top: 2rem;
}

/* Ritual Process Section */
.ritual-section {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  box-shadow: 0 4px 8px var(--shadow-color);
  text-align: center;
}

.ritual-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.ritual-section p {
  color: var(--text-color);
  text-shadow: none;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.ritual-step {
  background: var(--card-bg);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: left;
}

.ritual-step p,
.ritual-step span,
.ritual-step div {
  color: var(--text-color);
  text-shadow: none;
}

.ritual-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Foodbank Notice */
.donation-call {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
}

/* Quote Section */
.quote-section {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  border-left: 4px solid var(--primary-color);
}

.quote-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
  text-shadow: none;
}

.quote::before {
  content: "“";
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.quote-author {
  text-align: right;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: none;
}

/* Media Section */
.media-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.order-section img,
.slideshow-container img {
  width: 100%;
  border-radius: var(--border-radius);
  display: block;
}

/* Checkout Page Styles */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.checkout-form {
  flex: 2;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.97);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px var(--shadow-color);
}

.cart-summary {
  flex: 1;
  background: rgba(255, 255, 255, 0.97);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px var(--shadow-color);
  max-height: 600px;
  overflow-y: auto;
}

.checkout-form h1,
.cart-summary h2 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-shadow: none;
}

.checkout-form p,
.checkout-form label,
.checkout-form span,
.cart-summary p,
.cart-summary label,
.cart-summary span,
.cart-summary td,
.cart-summary th {
  color: var(--text-color);
  text-shadow: none;
}

.checkout-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-form form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.checkout-form form input,
.checkout-form form textarea,
.checkout-form form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--text-color);
  background: #fff;
}

.checkout-form form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-form form button:hover {
  background: var(--primary-hover);
}

.delivery-info {
  color: #d9534f;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  text-shadow: none;
}

/* Success Page */
.success-container {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.97);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-container h1 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.success-container p,
.success-container td,
.success-container th,
.success-container span {
  color: var(--text-color);
  text-shadow: none;
}

.alert-banner {
  background: #e9f7fe;
  border-left: 4px solid var(--secondary-color);
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 1rem;
  color: var(--text-color);
}

table.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

table.order-table th,
table.order-table td {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-shadow: none;
}

table.order-table th {
  background: var(--primary-color);
  color: #fff;
}

/* Video Section */
.video-section {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
}

.video-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f1f1f1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.video-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-box {
  flex: 1 1 400px;
  max-width: 500px;
}

/* Legal pages */
.legal-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.legal-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1c1c1c;
  text-shadow: none;
}

.legal-container h2,
.legal-container h3 {
  color: #343a40;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.legal-container p,
.legal-container ul,
.legal-container li {
  line-height: 1.6;
  font-size: 1rem;
  color: #212529;
  text-shadow: none;
}

.legal-container a {
  color: #0d6efd;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* Category picker */
.category-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-picker form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.picker-option {
  background: #f1f3f5;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-size: 0.85rem;
  color: #333333;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease-in-out;
  text-align: center;
  text-shadow: none;
}

.picker-option .icon {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: #333333;
}

.picker-option .label {
  font-weight: 600;
  color: #333333;
}

.picker-option:hover {
  background: #e0f3e5;
  transform: translateY(-3px);
}

.picker-option.active {
  background-color: #198754;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.picker-option.active .icon,
.picker-option.active .label {
  color: #ffffff;
}
/* Product Detail Container */
.product-detail-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.97);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-image-wrapper {
  flex: 1 1 300px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.product-detail-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  background: #f8f9fa;
}

.product-detail-info {
  flex: 1 1 350px;
}
.product-detail-info {
  flex: 1 1 350px;
}

.product-detail-info h1,
.product-detail-info h2,
.product-detail-info h3,
.product-detail-info p,
.product-detail-info label,
.product-detail-info span,
.product-detail-info strong,
.product-detail-info small,
.product-detail-info div {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75) !important;
}

.product-detail-info select,
.product-detail-info input,
.product-detail-info textarea {
  color: #212529 !important;
  background: #ffffff !important;
}

.product-detail-info option {
  color: #212529 !important;
  background: #ffffff !important;
}

.product-detail-info button {
  color: #ffffff !important;
}
.product-detail-info form {
  margin-top: 20px;
}

.product-detail-info label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.product-detail-info input,
.product-detail-info select {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #212529;
  background: #fff;
}

.product-detail-info button {
  width: 100%;
  padding: 12px;
  background-color: #198754;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product-detail-info button:hover {
  background-color: #157347;
}

/* Receipt */
.receipt {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Courier New', Courier, monospace;
  background: #fff;
  border: 1px solid #ccc;
  color: #111;
}

.receipt h2,
.receipt h3 {
  text-align: center;
  margin: 0.5rem 0;
  color: #111;
  text-shadow: none;
}

.receipt .sep {
  border-bottom: 1px dashed #999;
  margin: 0.5rem 0;
}

.receipt .info,
.receipt .totals {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
}

.receipt .info td,
.receipt .items td,
.receipt .items th,
.receipt .totals td,
.receipt .footer {
  color: #111;
  text-shadow: none;
}

.receipt .info td {
  padding: 2px 0;
}

.receipt .items th,
.receipt .items td {
  padding: 4px 0;
  text-align: left;
}

.receipt .items th {
  border-bottom: 1px dashed #999;
}

.receipt .items td.qty,
.receipt .items td.line-total {
  text-align: right;
  min-width: 50px;
}

.receipt .totals td {
  padding: 4px 0;
}

.receipt .totals .label {
  text-align: right;
  font-weight: bold;
}

.receipt .totals .amount {
  text-align: right;
  min-width: 60px;
}

.receipt .footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.instructions small {
  color: #555;
  display: block;
  margin-top: 0.2em;
  font-style: italic;
  text-shadow: none;
}

/* Unique cards */
.uniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.unique-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.unique-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.unique-card img.unique-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background: #f8f9fa;
}

.unique-card h4 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--secondary-color);
  text-shadow: none;
}

.unique-card .field {
  margin-bottom: 0.75rem;
  text-align: left;
  color: var(--text-color);
  text-shadow: none;
}

.unique-card .field p,
.unique-card .field span,
.unique-card .field div {
  color: var(--text-color);
  text-shadow: none;
}

.unique-card .unique-btn {
  width: 100%;
  padding: 0.6rem;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.unique-card .unique-btn:hover {
  background-color: #218838;
}

/* Home page polish */
.home-hero {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  backdrop-filter: blur(2px);
}

.home-hero-inner {
  min-height: 420px;
}

.home-hero-text h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.home-hero-text p,
.home-hero-text h2,
.home-hero-text h3,
.home-lead {
  color: #f3f4f6;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.home-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: stretch;
}

.home-actions-inline {
  grid-template-columns: repeat(1, minmax(240px, 1fr));
  justify-items: center;
}

@media (min-width: 900px) {
  .home-actions-inline {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

.home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: var(--home-card);
  color: var(--home-ink);
  border: 1px solid var(--home-border);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--home-shadow);
  text-shadow: none;
}

.home-btn i {
  font-size: 1rem;
  opacity: 0.9;
}

.home-btn:hover {
  background: #fbfbfc;
}

.home-btn.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.home-hero-photos {
  position: relative;
}

.home-photo-shop {
  width: 100%;
  display: block;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ddd;
}

.home-owner-card {
  position: absolute;
  right: -10px;
  bottom: -18px;
  margin: 0;
  width: min(44%, 320px);
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  box-shadow: var(--home-shadow);
}

.home-owner-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.home-owner-card figcaption {
  padding: 0.55rem 0.75rem;
  font-weight: 700;
  color: var(--home-ink);
  font-size: 0.95rem;
  text-shadow: none;
}

/* White cards and white containers should always use dark text */
.product,
.product *,
.unique-card,
.unique-card *,
.product-detail-container,
.product-detail-container *,
.checkout-form,
.checkout-form *,
.cart-summary,
.cart-summary *,
.success-container,
.success-container *,
.ritual-section,
.ritual-section *,
.quote-section,
.quote-section *,
.legal-container,
.legal-container *,
.receipt,
.receipt * {
  text-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
  .home-owner-card {
    position: relative;
    inset: auto;
    width: 75%;
    margin: 0.75rem auto 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 1rem;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  .product h2 {
    font-size: 1.25rem;
  }

  .product-list,
  .uniques-grid {
    grid-template-columns: 1fr;
  }

  .picker-option {
    width: 82px;
    height: 82px;
    font-size: 0.8rem;
  }
  /* ===== PRODUCT PAGE: light box behind text only ===== */

/* Right-hand text/form area */
.product-detail-info {
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Make all text inside that area dark and readable */
.product-detail-info h1,
.product-detail-info h2,
.product-detail-info h3,
.product-detail-info h4,
.product-detail-info p,
.product-detail-info label,
.product-detail-info span,
.product-detail-info strong,
.product-detail-info small,
.product-detail-info li,
.product-detail-info div {
  color: #212529 !important;
  text-shadow: none !important;
}

/* Inputs and selects inside the product page */
.product-detail-info select,
.product-detail-info input,
.product-detail-info textarea {
  background: #ffffff;
  color: #212529 !important;
  border: 1px solid #d0d7de;
  border-radius: 12px;
}

/* Option text */
.product-detail-info option {
  color: #212529;
  background: #ffffff;
}

/* Small info box / note */
.product-detail-info .info-box,
.product-detail-info .product-note,
.product-detail-info .note,
.product-detail-info .message,
.product-detail-info .help-text {
  background: #f8f9fa;
  color: #212529 !important;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 16px;
}

/* Add to cart button stays green */
.product-detail-info button,
.product-detail-info .btn,
.product-detail-info .add-to-cart,
.product-detail-info .add-cart-btn {
  color: #ffffff !important;
  text-shadow: none !important;
}

/* Give the title a bit more presence */
.product-detail-info h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Description spacing */
.product-detail-info p {
  margin-bottom: 0.9rem;
}

/* Mobile tidy up */
@media (max-width: 768px) {
  .product-detail-info {
    margin-top: 1rem;
    padding: 18px;
  }
}
  
  /* ===== FINAL COLOUR FIXES FOR HOME.PHP ===== */

/* Main page heading on dark background */
.page-title {
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
  color: #e9ecef !important;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Product cards */
.product h2 {
  color: #2f7d4f !important;
}

.product p {
  color: #333 !important;
}

.deposit-label {
  color: #dc3545 !important;
}

.price {
  color: #111 !important;
}

/* Deposit info box */
.qurbani-info-box {
  color: #111 !important;
}

.qurbani-info-box h2 {
  color: #111 !important;
}

.qurbani-info-box p {
  color: #222 !important;
}

.qurbani-info-box strong {
  color: #000 !important;
}

.info-highlight {
  color: #111 !important;
}

/* Process section */
.ritual-section {
  color: #111 !important;
}

.ritual-section h2 {
  color: #3f6df6 !important;
}

.ritual-step {
  color: #222 !important;
}

.ritual-step span:not(.step-number) {
  color: #222 !important;
}

/* Video section */
.video-section {
  color: #111 !important;
}

.video-section h2 {
  color: #3f6df6 !important;
  text-shadow: none !important;
}

.video-description {
  color: #333 !important;
  text-shadow: none !important;
}

.video-box h3 {
  color: #333 !important;
  text-shadow: none !important;
}

/* Quote section */
.quote-section {
  color: #111 !important;
}

.quote-section h2 {
  color: #3f6df6 !important;
}

.quote {
  color: #222 !important;
}

.quote-author {
  color: #111 !important;
}
  
}