/**
Theme Name: absoluteLawDivineTeachings
Author: Brainstorm Force
Author URI: https://absolutelaw-divineteachings.world
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: absolutelawdivineteachings
Template: astra
*/

/* =========================================
   AbsoluteLaw–DivineTeachings Landing CSS
   Astra + Elementor (revised palette)
   ========================================= */

/* 0) Design tokens */
:root{
  /* Neutral background (not black) */
  /*--paper:#101418;     */  /* slate/stone base */
  /*--paper-2:#161B20;   */  /* subtle gradient darker */
  --ink-100:#8c949c;     /* primary text (light) */
  --ink-300:#72777c;     /* secondary text */
  --ink-700:#2F363E;     /* divider/hairlines */

  /* Brand accents (swapped) */
  --law-600:#304C9E;     /* Absolute Law sapphire */
  --law-300:#95A9F5;     /* softer sapphire highlight */

  --actions-600:#1B6B4E;   /* Divine Teachings emerald */
  --actions-300:#66C1A4;   /* softer emerald highlight */

  --gold-500:#C8A65A;    /* gold universal accent */

  --radius-8:8px;
  --radius-12:12px;
  --shadow-1:0 10px 28px rgba(0,0,0,.35);
  --shadow-0:0 3px 12px rgba(0,0,0,.25);
}

/* 1) Base background */
body, .site, .ast-container {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink-100);
}
h1,h2,h3,h4 { color:#fff; line-height:1.15; font-weight:600; }
p { color: var(--ink-300); line-height:1.7; }
.ast-header-break-point .main-header-bar,
.main-header-bar, .site-footer { background: transparent; border: 0; }

/* Optional: hide Astra default page title */
.ast-single-post .entry-title, .entry-title { display:none; }

/* 2) Landing wrapper */
.landing-wrap {
  max-width: 1200px; margin: 0 auto; padding: 56px 20px 72px;
}

/* 3) Parent badge / headline */
.parent-badge {
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color: var(--ink-300);
  border:1px solid var(--ink-700); border-radius:999px;
  padding:8px 12px; opacity:.9;
}
.landing-title { margin:16px 0 8px; font-size: clamp(28px, 4vw, 46px); }
.landing-sub { margin:0 0 32px; max-width: 70ch; }

/* 4) Logo grid */
.choice-grid {
  display:grid; gap:24px;
  grid-template-columns: 1fr; 
}
@media (min-width: 900px){
  .choice-grid { grid-template-columns: 1fr 1fr; }
}

/* 5) Cards */
.choice-card {
  position:relative; border-radius: var(--radius-12);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-1);
  padding: 28px 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.choice-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.45); }

/* 6) Card headers (accent bars now swapped) */
.choice-card.law::before,
.choice-card.publicactions::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px; border-radius: var(--radius-12) var(--radius-12) 0 0;
}
/*.choice-card.law::before{ background: linear-gradient(90deg, var(--gold-500), var(--law-600)); }
.choice-card.teach::before{ background: linear-gradient(90deg, var(--gold-500), var(--teach-600)); }*/
.choice-card.law::before{ background: var(--law-600); }
.choice-card.publicactions::before{ background: var(--actions-600); }

/* 7) Logo area */
.choice-logo {
  display:flex; align-items:center; justify-content:center;
  aspect-ratio: 1 / 1; /* keeps square area */
  /*background: rgba(0,0,0,.12); border:1px dashed rgba(255,255,255,.08);*/
  background: transparent !important; /* remove dark block behind logo */
  border-radius: var(--radius-8); margin-bottom: 18px;
}
.choice-logo img{
  width: 74%; height: auto; 
  /*filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));*/
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* 8) Card text + CTA */
.choice-title { margin:0 0 6px; font-size: clamp(18px, 2.2vw, 24px); }
.choice-desc { margin:0 0 16px; }
.choice-cta {
  display:inline-flex; align-items:center; gap:10px; 
  padding: 11px 16px; border-radius: var(--radius-8); color:#fff; text-decoration:none; font-weight:600;
  box-shadow: var(--shadow-0); transition: transform .15s ease, filter .15s ease;
}
.choice-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }
.choice-card.law .choice-cta { background: var(--law-600); }
.choice-card.publicactions .choice-cta { background: var(--actions-600); }

/* 9) Fine print */
.landing-meta {
  margin-top: 28px; font-size: 13px; color: var(--ink-300);
  border-top: 1px solid var(--ink-700); padding-top: 16px; opacity: .9;
}

/* 10) Accessibility focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-500); outline-offset: 2px;
}

/* 1) Force page background across Astra + Elementor layers 
html, body,
.site, .ast-container, .site-content,
.ast-separate-container .ast-article-single,
.ast-page-builder-template .site-content #primary,
.elementor-kit-*-body, .elementor, .elementor-section,
.elementor-container, .e-con, .e-con-inner,
.elementor-element, .entry-content {
  background: linear-gradient(180deg, #101418 0%, #161B20 100%) !important;
  background-color: #101418 !important;
}*/

/* 2) Kill any black backgrounds set inline by Elementor sections/containers 
.elementor-section, .elementor-top-section, .e-con {
  background: transparent !important;
  background-color: transparent !important;
}*/

/* 3) Astra content wrappers that sometimes paint solid colors 
.ast-container, .content-area, #primary, .site-main, .entry-content {
  background: transparent !important;
}*/

/* 4) If the page template is Elementor Canvas (no header/footer) 
.elementor-page {
  background: transparent !important;
}*/

