/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

@font-face {
font-family: "Amoresa";
src: url("/wp-content/uploads/fonts/Amoresa.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Great Vibes";
src: url("/wp-content/uploads/fonts/GreatVibes.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Poppins";
src: url("/wp-content/uploads/fonts/Poppins-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}

.hero-title-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100px;
}
.hero-soul {
  position: absolute;
  display: inline-block;
  font-size: 4em !important;
  transform: rotate(-8deg)  translateX(80px);
  animation: mystic-pulse-subtle 6.5s ease-in-out infinite;
}
.hero-market {
  position: absolute;
  display: inline-block;
  font-size: 4em !important;
  transform: rotate(-8deg) translateX(170px) translateY(70px);
  animation: mystic-pulse-subtle 6.5s ease-in-out infinite;
}
.hero-oracle {
  position:absolute;
  display: inline-block;
  line-height: 1.08em;
  font-size: 2em !important;
  transform: rotate(-8deg) translateX(35px) translateY(65px);
}
.slant {
  transform: rotate(-8deg)
}
@media (max-width: 648px) {
  /* Shrink hero text */
  .hero-soul {
    font-size: 3.2em !important;
  }
  .hero-market {
    font-size: 3.2em !important;
    transform: rotate(-8deg) translateX(140px) translateY(60px);
  }
  .hero-oracle {
    font-size: 1.6em !important;
    transform: rotate(-8deg) translateX(25px) translateY(55px);
  }
}
@media (max-width: 564px) {
  /* Shrink hero text */
  .hero-market {
    font-size: 3.2em !important;
    transform: rotate(-8deg) translateX(120px) translateY(60px);
  }
}
@media (max-width: 450px) {
  /* Shrink hero text */
  .hero-soul {
    font-size: 2.6em !important;
    transform: rotate(-8deg) translateX(15px) translateY(15px);
  }
  .hero-market {
    font-size: 2.6em !important;
    transform: rotate(-8deg) translateX(70px) translateY(50px);
  }
  .hero-oracle {
    font-size: 1.3em !important;
    transform: rotate(-8deg) translateX(-7px) translateY(50px);
  }
}

/* =========================================================
   ORACLE TREE – CF7 FINAL SPACING & TYPOGRAPHY FIX
   ========================================================= */

/* Wrapper */
.oracle-form {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   SECTION CARDS
--------------------------------------------------------- */

.oracle-form .form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* Headings */
.oracle-form h3 {
  margin: 0 0 22px 0;
  padding-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* ---------------------------------------------------------
   LABELS & QUESTION TEXT (CONSISTENT SIZE)
--------------------------------------------------------- */

.oracle-form label,
.oracle-form .field-label,
.oracle-form p > strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--wp--preset--color--accent-2, #d59b2a);
}

.oracle-form .field-label {
   margin-top: 30px !important;
}

/* First field in section */
.oracle-form .form-section label:first-of-type {
  margin-top: 0;
}

/* Marketing intro paragraph – SMALLER */
.oracle-form .form-section > p {
  margin: 0 0 18px 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--wp--preset--color--accent-2, #d59b2a);
}

/* ---------------------------------------------------------
   INPUT FIELDS
--------------------------------------------------------- */

.oracle-form input[type="text"],
.oracle-form input[type="email"],
.oracle-form input[type="tel"],
.oracle-form input[type="url"],
.oracle-form textarea,
.oracle-form select,
div.upload-slot {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.4;

  border-radius: 10px;
  border: 1px solid #ccc;
  background: #ffffff;

  margin-bottom: 4px;
}

.oracle-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------------------------------------------------------
   CHECKBOXES & RADIOS (TIGHTER!)
--------------------------------------------------------- */

.oracle-form .wpcf7-checkbox,
.oracle-form .wpcf7-radio {
  margin-top: 6px;
  margin-bottom: 16px;
}

.oracle-form .wpcf7-list-item {
  margin: 0;
  line-height: 1; /* critical – removes CF7 vertical bloat */
}

.oracle-form .wpcf7-list-item-label {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
}

.oracle-form input[type="checkbox"],
.oracle-form input[type="radio"] {
  margin-right: 8px;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON (CENTERED, NOT BOLD)
--------------------------------------------------------- */

.oracle-form input[type="submit"] {
  display: block;
  margin: 24px auto 0 auto;

  padding: 14px 32px;
  border: none;
  border-radius: 999px;

  background: var(--wp--preset--color--accent-2, #d59b2a);
  color: #000;

  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
}

.oracle-form input[type="submit"]:hover {
  opacity: 0.9;
}

/* ---------------------------------------------------------
   VALIDATION
--------------------------------------------------------- */

.oracle-form .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  margin-top: 4px;
}

.oracle-form .wpcf7-response-output {
  margin-top: 24px;
  font-size: 0.95rem;
}
/* =========================================
   FIX RADIO & CHECKBOX LAYOUT (SEPARATE LINES)
   ========================================= */

/* Ensure vertical stacking */
.oracle-form .wpcf7-checkbox,
.oracle-form .wpcf7-radio {
  display: block;
  margin-top: 6px;
  margin-bottom: 16px;
}

/* Each option on its own line */
.oracle-form .wpcf7-list-item {
  display: block;
  margin: 6px 0;          /* controls vertical spacing */
  line-height: 1.35;      /* restore readable line height */
}

/* Option text */
.oracle-form .wpcf7-list-item-label {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
}

/* Inputs spacing */
.oracle-form input[type="checkbox"],
.oracle-form input[type="radio"] {
  margin-right: 8px;
}
/* =========================================================
   ORACLE TREE – VISUAL STEP INDICATOR (CSS ONLY)
   ========================================================= */

.oracle-steps {
  position: relative;
  padding-left: 56px; /* space for step line */
}

/* Vertical guide line */
.oracle-steps::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(213, 155, 42, 0.25);
}

/* Step dots */
.oracle-steps .form-section {
  position: relative;
}

.oracle-steps .form-section::before {
  content: counter(step);
  counter-increment: step;

  position: absolute;
  left: -56px;
  top: 32px;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.9rem;
  font-weight: 500;

  background: #ffffff;
  color: var(--wp--preset--color--accent-2, #d59b2a);
  border: 2px solid var(--wp--preset--color--accent-2, #d59b2a);

  transition: all 0.25s ease;
}

/* Counter reset */
.oracle-steps {
  counter-reset: step;
}

/* ACTIVE STEP (when interacting) */
.oracle-steps .form-section:focus-within::before {
  background: var(--wp--preset--color--accent-2, #d59b2a);
  color: #000;
  transform: scale(1.05);
}

/* Optional: completed sections feel */
.oracle-steps .form-section:has(:focus-within) ~ .form-section::before {
  opacity: 0.5;
}
/* =========================================================
   ORACLE TREE – MOBILE STEP INDICATOR
   ========================================================= */

@media (max-width: 768px) {

  /* Remove left gutter */
  .oracle-steps {
    padding-left: 0;
  }

  /* Hide vertical line */
  .oracle-steps::before {
    display: none;
  }

  /* Create horizontal step bar */
  .oracle-steps {
    display: flex;
    flex-direction: column;
  }

  /* Step bar container (before first section) */
  .oracle-steps::after {
    content: "";
    display: block;
    height: 0;
  }

  /* Step dots reposition */
  .oracle-steps .form-section::before {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto 16px auto;

    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  /* First section gets top spacing */
  .oracle-steps .form-section:first-of-type {
    margin-top: 12px;
  }

  /* Visually group dots horizontally */
  .oracle-steps {
    counter-reset: step;
  }

  .oracle-steps .form-section {
    padding-top: 12px;
  }

  /* Reduce card padding for mobile */
  .oracle-form .form-section {
    padding: 28px 24px;
  }

}
@media (max-width: 768px) {
  .oracle-steps .form-section::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 12px auto 0 auto;
    background: rgba(213, 155, 42, 0.25);
  }

  .oracle-steps .form-section:last-of-type::after {
    display: none;
  }
}
/* ---------------------------------------------------------
   FILE UPLOAD GROUP (RESTORED PANEL)
--------------------------------------------------------- */

.oracle-form .upload-group {
  margin-top: 12px;
  padding: 18px;
  border-radius: 14px;
  background: #f7f7f7;
}

/*.oracle-form input[type="file"] { */
div.upload-slot {
  padding: 12px;
  margin-bottom: 12px;

  border-radius: 12px;
  border: 2px dashed var(--wp--preset--color--accent-2, #d59b2a);
  background: #ffffff;

  font-size: 0.9rem;
  cursor: pointer;
}

.oracle-form input[type="file"]::file-selector-button {
  padding: 6px 14px;
  margin-right: 14px;
  border: none;
  border-radius: 999px;
  background: var(--wp--preset--color--accent-2, #d59b2a);
  color: #000;
  font-size: 0.9rem;
  cursor: pointer;
}

.oracle-form input[type="file"]::file-selector-button:hover {
  opacity: 0.9;
}

.oracle-form .image-preview {
  position: relative;
  height: 0;
  max-height: 120px;
  overflow: hidden;

  border-radius: 10px;
  background-color: #fff;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0;
  transition:
    height 0.25s ease,
    opacity 0.25s ease;
}
.oracle-form .image-preview.is-visible {
  height: 120px;
  opacity: 1;
}

.oracle-form .remove-preview {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}


/* =========================================
   COUNTDOWN – MINIMAL FIX ONLY
   ========================================= */

/* Fix container width override */
.tecc-wrapper .tecc-event-info {
  width: auto !important;
  max-width: none !important;
}

/* Countdown row */
.tecc-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Countdown boxes – HARD LOCK */
.tecc-countdown .tecc-time {
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important;

  height: 70px;
  background: var(--wp--preset--color--accent-2, #d59b2a);
  border-radius: 12px;

  display: grid;               /* 🔑 grid ignores text width */
  place-items: center;

  box-sizing: border-box;
}

/* Number */
.tecc-countdown .tecc-time * {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-align: center;
}

/* Label (DAYS / HOURS etc) */
.tecc-countdown .tecc-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-date-location {
    font-size: 0.8em;
}
h2.tecc-up-event {
    font-size: 1.83em;
    animation: mystic-pulse-subtle 6.5s ease-in-out infinite;
}
h3.tecc-title {
    font-size: 1.2em;
}
.tecc-date-timer {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.tribe-events .tribe-events-calendar-list__event {
  padding: 20px 0;
}
.tribe-events-l-container {
  padding-top: 0 !important;
}

@keyframes mystic-pulse {
  0% {
    text-shadow:
      0 0 6px rgba(255, 220, 140, 0.5),
      0 0 16px rgba(213, 155, 42, 0.3);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 220, 140, 0.8),
      0 0 26px rgba(213, 155, 42, 0.55);
  }
  100% {
    text-shadow:
      0 0 6px rgba(255, 220, 140, 0.5),
      0 0 16px rgba(213, 155, 42, 0.3);
  }
}

@keyframes mystic-pulse-subtle {
  0% {
    text-shadow:
      0 0 4px rgba(255, 220, 140, 0.4),
      0 0 12px rgba(233, 185, 82, 0.25);
  }
  50% {
    text-shadow:
      0 0 7px rgba(255, 220, 140, 0.6),
      0 0 21px rgba(233, 185, 82, 0.4);
  }
  100% {
    text-shadow:
      0 0 4px rgba(255, 220, 140, 0.4),
      0 0 12px rgba(233, 185, 82, 0.25);
  }
}
.glow {
  color: var(--wp--preset--color--accent-2);
  animation: mystic-pulse 4.5s ease-in-out infinite;
}
/* =========================================
   MAIN NAV – CURRENT PAGE INDICATOR
   ========================================= */

/* Active menu item */
.wp-block-navigation .current-menu-item > a,
.wp-block-navigation .current_page_item > a,
.wp-block-navigation .current-menu-ancestor > a {
  color: var(--wp--preset--color--accent-2);
  text-shadow:
    0 0 4px rgba(213, 155, 42, 0.6),
    0 0 10px rgba(213, 155, 42, 0.35);
}

/* Optional underline marker */
.wp-block-navigation .current-menu-item > a::after,
.wp-block-navigation .current_page_item > a::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: var(--wp--preset--color--accent-2);
  border-radius: 2px;
}

/* =================
   EVENTS CALENDAR – TYPOGRAPHY RESET
   ================= */

/* Main event titles */
.tribe-events-single-section-title { 
  text-transform: none !important; /* kills ALL CAPS */ 
}

/* =========================================
   EVENTS CALENDAR – CARD STYLE
   ========================================= */

.tribe-events-calendar-list__event,
.tribe-events-list-event-row,
.tribe-events-single {
  background: #ffffff;
  color: #222;
  border-radius: 24px;
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
#tribe-events-pg-template {
	background: var(--wp--preset--color--base, #0f1a2a) !important;
}
.tribe-events-back a:hover {
	text-decoration: underline;
}

/* =========================================
   EVENTS ARCHIVE – MINIMAL CONTRAST FIX
   ========================================= */

/* Scope ONLY to events archive */
body.post-type-archive-tribe_events {
	
  /* Buttons (leave layout alone, just readable) */
  button,
  .tribe-events button {
    color: var(--wp--preset--color--accent-1, #f6c24a);
  }
.tribe-events button:hover {
  color: var(--wp--preset--color--accent-2, #e3ae3a);
  text-decoration: underline;
  }

  /* Icons (calendar, arrows, etc) */
  svg,
  .tribe-common svg {
    fill: currentColor;
    color: rgba(255,255,255,0.85);
  }
}