/* ========== MOTION / ANIMATION ========== */

/* Rise-in animation */
@keyframes prox-rise {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.prox-rise-in {
  animation: prox-rise 0.8s ease-out forwards;
  opacity: 0;
}

/* Fade and slide from left */
@keyframes prox-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.prox-fade-left {
  animation: prox-fade-left 0.9s ease-out forwards;
  opacity: 0;
}

/* Delay animation */
.prox-delay-1 { animation-delay: 0.3s; }
.prox-delay-2 { animation-delay: 0.6s; }
.prox-delay-3 { animation-delay: 0.9s; }


/* ========== TEXT STYLING ========== */

.prox-highlight-gold {
  color: #ddb561;
  font-weight: 600;
}

.prox-text-muted {
  color: #999999;
}

.prox-text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prox-headline-glow {
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Emphasis underline */
.prox-underline {
  display: inline-block;
  border-bottom: 3px solid #ba0c2f;
  padding-bottom: 3px;
}


/* ========== BACKGROUND / COLOR BLOCKS ========== */

.prox-bg-slate {
  background-color: #4e5c6e;
  color: #fff;
}

.prox-bg-charcoal {
  background-color: #1e1e1e;
  color: #fff;
}

.prox-bg-gold-wash {
  background: linear-gradient(135deg, rgba(202,168,106,0.1), rgba(202,168,106,0.25));
}


/* ========== SPACING UTILS ========== */

.prox-pad-xl {
  padding: 80px 40px;
}

.prox-pad-lg {
  padding: 60px 30px;
}

.prox-pad-md {
  padding: 40px 25px;
}

.prox-pad-sm {
  padding: 25px 15px;
}

.prox-mar-bottom {
  margin-bottom: 40px;
}

.prox-margin-top-lg {
  margin-top: 60px;
}



/* ========== LAYOUT HELPERS ========== */

.prox-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.prox-split > div {
  flex: 1 1 48%;
}
@media (max-width: 768px) {
  .prox-split {
    flex-direction: column;
  }
  .prox-split > div {
    width: 100%;
  }
}


/* === Section backgrounds === */

.prox-section-slate {
  background-color: #4e5c6e;
  color: #ffffff;
}

.prox-section-parchment {
  background-color: #e8ddcc;
  color: #1e1e1e;
}

.prox-section-white {
  background-color: #ffffff;
  color: #1e1e1e;
}

.prox-section-dark {
  background-color: #0c101f;
  background-image: url('../../assets/img/pattern/bg-midnight-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f6f6f6;
}

.prox-section-charcoal-border {
  border-top: 6px solid #1e1e1e;
  padding-top: 60px;
}


/* === Button Base === */
.prox-btn {
  font-family: inherit;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  font-size: 16px;
}

/* === Button Styles === */

.prox-btn-red {
  background-color: #ba0c2f;
  color: #ffffff;
  border: none;
}
.prox-btn-red:hover {
  background-color: #9a0a28;
}

.prox-btn-outline {
  background-color: transparent;
  color: #ba0c2f;
  border: 2px solid #ba0c2f;
}
.prox-btn-outline:hover {
  background-color: #ba0c2f;
  color: #fff;
}

.prox-btn-blue {
  background-color: #0033a0;
  color: #ffffff;
}
.prox-btn-blue:hover {
  background-color: #001f5f;
}

.prox-btn-white {
  background-color: #ffffff;
  color: #1e1e1e;
  border: 1px solid #ccc;
}
.prox-btn-white:hover {
  background-color: #f3f3f3;
}

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


/* === Section Dividers === */

.prox-divider {
  height: 1px;
  background-color: #999999;
  opacity: 0.3;
  margin: 60px 0;
}


.section-dark {
  background-color: #1e1e1e; /* Charcoal */
  color: #ffffff;
}

.section-title-large {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #caa86a; /* softened bronze-gold */
}

.divider.accent-line {
  width: 60px;
  height: 3px;
  background-color: #caa86a;
  margin-top: 10px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bg-pattern-tiles {
  background-image: url('assets/patterns/grayscale-grid.svg'); /* Create or drop in */
  background-size: cover;
  background-position: center;
  min-height: 300px;
  border-radius: 6px;
  opacity: 0.08;
}

/* Animation (if using AOS or custom) */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Background & Section Styling */
.core-purpose-section {
  background: #0a0d1a url('/assets/img/pattern/bg-pattern-1-dark.png') repeat;
  background-size: cover;
  padding: 120px 0 60px;
  color: #f6f6f6;
}

/* Flex Layout */
.core-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Phrase */
.core-left {
  flex: 1;
  max-width: 400px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ccc;
  line-height: 1.6;
}

/* Right Block */
.core-right {
  flex: 2;
  max-width: 700px;
}

.core-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-align: right;
}

.core-accent-line {
  width: 60px;
  height: 4px;
  background-color: #ddb561;
  border-radius: 2px;
  margin: 0 0 30px auto;
}

.core-subcopy {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  text-align: right;
}

/* Video Styling */
.core-video-wrapper {
  margin: 80px auto 0;
  padding: 20px;
  max-width: 960px;
}

.core-video-inner {
  position: relative;
  padding-top: 56.25%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.core-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Optional – Scoped styling, no global overrides */
#core-purpose {
  background-color: #0c101f; /* midnight navy */
  color: #f6f6f6;
  padding: 60px 0;
}

.big-bold {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.lead-text {
  font-size: 1.25rem;
  margin-top: 10px;
  color: #ddb561;
}

.larger-subtext {
  font-size: 1.15rem;
  max-width: 500px;
}

.video-highlight-wrapper {
  padding: 40px 0;
  background-color: #0c101f;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}


/* ==============================
   Quiz Section - Proxenia Enhanced Styles
   ============================== */

/* Quiz Button Spacing */
#quiz-section .next-step,
#quiz-section button[type="submit"] {
  display: block;
  margin: 30px auto 0;
}

/* Card-style Quiz Answer Layout */
.quiz-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

/* Hover effect */
.quiz-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Checked state */
input.btn-check:checked + .quiz-card {
  border: 2px solid #ae0031;
  background-color: #fff4f4;
  box-shadow: 0 0 0 0.2rem rgba(174, 0, 49, 0.15);
}

/* Checked state enhancement: title color change */
input.btn-check:checked + .quiz-card h5 {
  color: #ae0031;
}

/* Responsive padding adjustment for smaller screens */
@media (max-width: 576px) {
  .quiz-card {
    padding: 1.25rem;
  }
}

/* Optional: Tighten spacing between radio groups if needed */
.quiz-step .row > div {
  margin-bottom: 1rem;
}
