/*
Theme Name: Bradical Child
Theme URI: https://bradical.strategies
Description: A child theme for Astra, developed under extreme delusion.
Author: Brad P. Earman (and probably The Mug)
Author URI: https://bradical.strategies/team/mug
Template: astra
Version: 1.0
*/

@import url("../astra/style.css");

/* ── Brand Color Variables ───────────────────────────────────────────────── */

:root {
  --brand-gold:       #d2b48c;
  --brand-gold-dark:  #bda27e;
}

/* ── UAGB Headings & Text Overrides ────────────────────────────────────────── */

/* 🥈 Force All UAGB Advanced Heading Text to The Mug's Beige */
.uagb-heading-text,
.uagb-desc-text,
.uagb-ifb-title,
.uagb-ifb-desc,
.uagb-icon-list__label {
  color: var(--brand-gold) !important;
}

/* 🥉 Paragraphs and Common WP Text Blocks */
.entry-content p,
.wp-block-paragraph {
  color: var(--brand-gold) !important;
}

/* ── Global Button Styles ──────────────────────────────────────────────────── */

/* Apply to any element that looks—or should look—like a button */
.button,
button,
input[type="submit"] {
  background-color: var(--brand-gold);
  color: #0d1b2a;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--brand-gold-dark);
}

/* Also style UAGB & core WP block buttons */
.wp-block-button__link,
.uagb-button__link {
  /* inherit our standard button look */
  background-color: var(--brand-gold) !important;
  color: #fff !important;
  display: inline-block !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  text-decoration: none !important;
}

.wp-block-button__link:hover,
.uagb-button__link:hover {
  background-color: var(--brand-gold-dark) !important;
}

/* ── Headings ─────────────────────────────────────────────────────────────── */

h1,
h2,
h3,
.page-title,
.page-subtitle {
  color: var(--brand-gold) !important;
}

/* ── Navigation Menu Hover Fix ────────────────────────────────────────────── */

.main-header-menu li a {
  display: inline-block !important;
  padding: 0.5rem 0.5rem !important;
  background-color: #070614 !important;
}

.main-header-menu li a:hover {
  background-color: #0d1b2a !important;
  color: var(--brand-gold) !important;
  text-decoration: underline;
}

/* ── Janessa Control Override v1.0 ────────────────────────────────────────── */

/* Prevent horizontal shift on resume meltdown pages */
body,
#resume-content {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Alignascope fonts etc */
.horoscope-card p,
.horoscope-card strong,
.horoscope-card h2 {
  color: var(--brand-gold) !important;
}

.horoscope-card {
  background-color: #fffaf4;
  border: 1px solid var(--brand-gold);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* ── Bradical Alignment Process Styling ───────────────────────────────────── */

.bradical-container,
.bradical-container p,
.bradical-container li,
.bradical-container h1,
.bradical-container h2,
.bradical-container strong,
.bradical-container em {
  color: var(--brand-gold) !important;
}

/* Merch Shop */
.merch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch; /* Make all items stretch vertically */
}
.merch-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 300px;
  max-width: 300px;
  min-height: 500px; /* 👈 Set a fixed minimum height */
  background: #04040C;
  border: 1px solid #000;
  padding: 1.5rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: var(--brand-gold);
}
.merch-item button {
  margin-top: auto;
  background: #ccc;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: not-allowed;
}
#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden; /* <-- ADD THIS */
  opacity: 0;          /* <-- ADD THIS */
  transition: opacity 0.3s ease;
}

#lightbox-overlay.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

#lightbox-overlay img {
  max-width: 80%;
  max-height: 80%;
  border: 5px solid #d2b48c;
  background: white;
}

#close-lightbox {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
/* ── Career Grid Additions for Conceptual Employment ─────────────────────── */

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.career-item {
  border: 1px solid var(--brand-gold);
  padding: 1.5rem;
  background-color: #04040C;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  text-align: center;
}

.career-item:hover {
  transform: scale(1.02);
}

.career-item img {
  display: block;
  margin: 0 auto 20px auto;
  height: 200px;
  width: 100%;
  object-fit: cover;
}


.career-item h2 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.career-item a {
  color: var(--brand-gold);
  text-decoration: none;
}

.details-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background-color: var(--brand-gold);
  color: #000 !important;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.details-button:hover {
  background-color: var(--brand-gold-dark);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.philosophy-item {
  border: 1px solid var(--brand-gold);
  padding: 1.5rem;
  background-color: #04040C;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.philosophy-item img {
  display: block;
  margin: 0 auto 20px auto;
  height: 200px;
  object-fit: cover;
}

.philosophy-item h2 {
  margin: 0 0 15px;
  font-size: 1.25rem;
}

.orb-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--brand-gold), #000);
  box-shadow: 0 0 30px var(--brand-gold), inset 0 0 15px #000;
  animation: pulse 4s infinite ease-in-out;
}

.orb-whisper {
  margin-top: 20px;
  font-style: italic;
  font-size: 1rem;
  transition: opacity 0.5s;
  height: 1.5em;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}








