/*============================================================================
  #Override Stylesheet
  #Add Custom Styles Here
==============================================================================*/
/*============================================================================
  #House of Manifestation Brand Styles
==============================================================================*/
/* CSS Custom Properties (CSS Variables) - Available globally including Liquid files */
:root {
  --empire-gold: #C0A06E;
  --status-black: #000000;
  --poise-cream: #ECE9E3;
  --reliant-purple: #876E79;
  --triumphant-turquoise: #99CFDD;
  --vested-green: #B7DDC2;
  --prolific-gray: #939598; }

/* SCSS Variables (for use within this SCSS file) */
/* Custom Font: Classy Vogue (Accent/Display Font) */
@font-face {
  font-family: 'Classy Vogue';
  src: url("ClassyVogue.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
.container--main {
  background: var(--status-black); }

/* Apply Classy Vogue to hero headlines and accent text */
.hero h1,
.hero .hero-heading,
.accent-headline,
.manifesto-quote,
blockquote.classy-quote {
  font-family: 'Classy Vogue', serif !important;
  letter-spacing: 0.02em;
  line-height: 1.4; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Classy Vogue', serif !important;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0; }

p {
  line-height: 1.5;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem; }

container {
  max-width: 1400px; }

/* Identity statements and special quotes */
.identity-statement,
.i-am-statement {
  font-family: 'Classy Vogue', serif !important;
  font-size: 36px;
  line-height: 1.5;
  color: var(--empire-gold);
  text-align: center;
  margin: 2rem 0; }

/* HoM Button Styles */
.btn-primary,
.button--primary {
  background-color: var(--status-black);
  color: var(--poise-cream);
  border: 2px solid var(--empire-gold);
  transition: all 0.3s ease; }
  .btn-primary:hover,
  .button--primary:hover {
    background-color: var(--reliant-purple);
    border-color: var(--reliant-purple);
    transform: scale(1.02); }

.btn-secondary,
.button--secondary {
  background-color: transparent;
  color: var(--status-black);
  border: 2px solid var(--empire-gold);
  transition: all 0.3s ease; }
  .btn-secondary:hover,
  .button--secondary:hover {
    background-color: var(--empire-gold);
    color: var(--status-black);
    transform: scale(1.02); }

/* HoM Card Styles */
.card,
.feature-card {
  background-color: var(--poise-cream);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease; }
  .card:hover,
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }

/* Section spacing (luxurious spacing per brand guidelines) */
/* Hero overlay (40-50% Status Black overlay per brand spec) */
.hero-background {
  position: relative; }
  .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    /* 45% black overlay */
    z-index: 1; }
  .hero-background .hero-content {
    position: relative;
    z-index: 2; }

/* Brand color utility classes */
.bg-empire-gold {
  background-color: var(--empire-gold); }

.bg-poise-cream {
  background-color: var(--poise-cream); }

.bg-status-black {
  background-color: var(--status-black); }

.bg-reliant-purple {
  background-color: var(--reliant-purple); }

.bg-turquoise {
  background-color: var(--triumphant-turquoise); }

.bg-vested-green {
  background-color: var(--vested-green); }

.text-empire-gold {
  color: var(--empire-gold); }

.text-poise-cream {
  color: var(--poise-cream); }

.text-status-black {
  color: var(--status-black); }

.text-prolific-gray {
  color: var(--prolific-gray); }

/* CommUNITY branding (capitalize UNITY) */
.community-text {
  font-weight: 600; }

/*============================================================================
  #Authentication Pages (Login, Password Reset, etc.)
==============================================================================*/
/* Login page dark background with pattern overlay */
.auth__wrapper {
  background-color: var(--status-black);
  position: relative; }

/* Subtle pattern overlay (HM marque or brand pattern) */
.auth__wrapper::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  background: url("bg-pattern-gold.png") repeat center center;
  pointer-events: none;
  background-size: contain; }

.auth__link {
  position: relative; }

/* Logo spacing on login page */
.auth__img {
  padding: 16px;
  padding-bottom: 36px;
  position: relative;
  z-index: 1; }

/* Login box styling - semi-transparent with glass effect */
.panel.auth__box {
  background: rgba(251, 251, 251, 0.15);
  /* Semi-transparent white */
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 174, 150, 0.2);
  /* Subtle Empire Gold border */ }

/* Login heading color */
h1.auth__title {
  color: var(--empire-gold);
  font-family: 'Classy Vogue', serif;
  font-size: 28px;
  letter-spacing: 0.02em; }

/* Input fields on dark background */
.auth__box input[type="email"],
.auth__box input[type="password"],
.auth__box input[type="text"] {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--empire-gold);
  color: var(--status-black); }
  .auth__box input[type="email"]:focus,
  .auth__box input[type="password"]:focus,
  .auth__box input[type="text"]:focus {
    border-color: var(--reliant-purple);
    background-color: #ffffff; }

/* Labels and text on login page */
.auth__box label {
  color: var(--poise-cream);
  font-weight: 500; }

/*============================================================================
  #Header
==============================================================================*/
.header .header-menu a {
  padding-right: 12px;
  font-size: 16px; }

.header .header-menu a:hover {
  color: var(--empire-gold); }

@media (min-width: 769px) {
  .header .header-menu a:nth-child(5) {
    color: var(--empire-gold);
    border: 1px solid var(--empire-gold);
    padding-left: 12px; }

  .header .header-menu a:nth-child(5):hover {
    color: var(--status-black);
    border: 1px solid var(--status-black);
    background: var(--empire-gold);
    padding-left: 12px; } }
/*============================================================================
  #Pillar Page Filters
==============================================================================*/
.pillar-courses-section {
  background-color: var(--status-black); }

.pillar-filters {
  background-color: var(--status-black);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }

.filter-group {
  flex: 1;
  min-width: 200px; }

/* Search Box */
.filter-search {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--poise-cream);
  border-radius: 8px;
  background-color: transparent;
  color: var(--poise-cream);
  font-family: 'Urbanist', sans-serif;
  font-size: 16px; }
  .filter-search::placeholder {
    color: rgba(236, 233, 227, 0.6); }
  .filter-search:focus {
    outline: none;
    border-color: var(--empire-gold);
    background-color: rgba(183, 174, 150, 0.05); }

/* Category Pills */
.filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 2;
  flex-direction: row-reverse; }

.filter-pill {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--empire-gold);
  border-radius: 20px;
  background-color: transparent;
  color: var(--poise-cream);
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease; }
  .filter-pill:hover {
    background-color: var(--empire-gold);
    color: var(--status-black);
    transform: scale(1.05); }
  .filter-pill.active {
    background-color: var(--empire-gold);
    color: var(--status-black);
    border-color: var(--empire-gold); }

/* Results Count */
.results-count {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: var(--poise-cream);
  width: 100%;
  text-align: right;
  margin-top: 1rem; }

/* Course Grid */
.pillar-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  background-color: var(--status-black);
  padding: 2rem 0; }

/* Course Card */
.course-card {
  background-color: #1a1a1a;
  /* Very dark gray, slightly lighter than pure black */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%; }
  .course-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin: 0;
    border-radius: 12px 12px 0 0; }
  .course-card h6 {
    padding: 1.25rem 1.25rem 0.5rem;
    margin: 0;
    color: var(--poise-cream);
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0; }
  .course-card p {
    padding: 0.5rem 1.25rem 1rem;
    margin: 0;
    color: var(--prolific-gray);
    font-size: 15px;
    line-height: 1.5;
    flex-grow: 1; }
  .course-card .btn {
    margin: 0 1.25rem 1.25rem;
    background-color: var(--empire-gold);
    color: var(--status-black);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start; }
    .course-card .btn:hover {
      background-color: var(--status-black);
      color: var(--poise-cream);
      transform: scale(1.03); }

/* Responsive */
@media (max-width: 768px) {
  .pillar-filters {
    flex-direction: column;
    align-items: stretch; }

  .filter-group,
  .filter-pills {
    min-width: 100%; }

  .pillar-courses-grid {
    grid-template-columns: 1fr; } }
.pag__link {
  color: #535151;
  /* Keep as-is: Not a brand color */ }

/*============================================================================
  #Reusable Component Styles
==============================================================================*/
/* Horizontal Scroll Carousel (used across multiple sections) */
.hom-horizontal-scroll-section {
  margin-bottom: 2rem; }

.hom-horizontal-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 20px 0; }
  .hom-horizontal-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */ }

.hom-horizontal-scroll-wrapper {
  display: inline-flex;
  align-items: stretch;
  gap: 20px;
  padding: 0 20px; }

.hom-horizontal-card {
  display: inline-flex;
  width: 320px;
  min-width: 320px;
  white-space: normal;
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 1rem; }
  .hom-horizontal-card:hover {
    transform: scale(1.05);
    z-index: 10; }
  .hom-horizontal-card .course-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none; }

/* Scroll Navigation Arrows */
.hom-scroll-nav-wrapper {
  position: relative; }

.hom-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--empire-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none; }
  .hom-scroll-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--poise-cream); }
  .hom-scroll-arrow:hover {
    background: rgba(193, 173, 135, 0.9);
    transform: translateY(-50%) scale(1.1); }
  .hom-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95); }
  .hom-scroll-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none; }

.hom-horizontal-scroll-section:hover .hom-scroll-arrow {
  opacity: 1;
  pointer-events: auto; }

.hom-scroll-arrow-left {
  left: 10px; }

.hom-scroll-arrow-right {
  right: 10px; }

/* Lock Icon for Restricted Content */
.hom-lock-icon {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid var(--empire-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none; }
  .hom-lock-icon i {
    color: var(--empire-gold);
    font-size: 18px; }

.hom-locked-card {
  cursor: pointer !important;
  position: relative; }
  .hom-locked-card a {
    pointer-events: none; }

/* Responsive adjustments for carousel components */
@media (max-width: 768px) {
  .hom-horizontal-card {
    width: 280px;
    min-width: 280px; }
    .hom-horizontal-card h6 {
      font-size: 20px; }

  .hom-scroll-arrow {
    width: 40px;
    height: 40px;
    opacity: 1;
    pointer-events: auto; }
    .hom-scroll-arrow svg {
      width: 20px;
      height: 20px; }

  .hom-lock-icon {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 10px; }
    .hom-lock-icon i {
      font-size: 16px; } }
