/* LuxUp Training — Custom Styles (Light Mode v2.1) */

/* === GLOBAL === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #FFFFFF;
  color: #111827;
  font-weight: 400;
  line-height: 1.7;
}

/* === TYPOGRAPHY — BOLDER === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #063152;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }

p {
  font-weight: 400;
  line-height: 1.75;
  color: #374151;
}

strong, b {
  font-weight: 700;
}

/* === HEADER === */
.site-header {
  z-index: 100;
  position: sticky;
  top: 0;
}

/* Top bar */
.top-bar {
  background: #063152;
}

.top-bar p {
  color: #D1D5DB !important;
  margin: 0;
}

.top-bar a {
  color: #C49548 !important;
  text-decoration: none !important;
  font-weight: 600;
}

.top-bar a:hover {
  color: #E8A838 !important;
}

/* Main header bar */
.main-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1200px;
}

.header-row {
  gap: 0.5rem;
}

/* Logo */
.site-brand {
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-brand .wp-block-custom-logo {
  display: flex;
  align-items: center;
}

.site-brand .custom-logo,
.site-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.site-logo-text a {
  transition: opacity 0.2s ease;
  color: #063152 !important;
}

.site-logo-text a:hover {
  opacity: 0.85;
}

/* Navigation */
.main-nav .wp-block-navigation-item__content,
.main-nav .wp-block-navigation-item__content a {
  color: #374151 !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  text-decoration: none !important;
}

.main-nav .wp-block-navigation-item__content:hover,
.main-nav .wp-block-navigation-item__content a:hover {
  color: #063152 !important;
}

.main-nav .wp-block-navigation-item.is-active .wp-block-navigation-item__content {
  color: #063152 !important;
  font-weight: 700;
}

/* Nav CTA button */
.cta-nav-button .wp-block-button__link {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-nav-button .wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 49, 82, 0.25);
}

/* Conference nav link */
.nav-conference .wp-block-navigation-item__content,
.nav-conference .wp-block-navigation-item__content a {
  color: #C49548 !important;
  font-weight: 700 !important;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Cover block text contrast fix */
.wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.wp-block-cover .wp-block-cover__background {
  background: rgba(6, 49, 82, 0.82) !important;
}

/* Non-cover hero fallback */
.hero-section:not(.wp-block-cover) {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero-section:not(.wp-block-cover)::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(6,49,82,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-section:not(.wp-block-cover) > * {
  position: relative;
  z-index: 1;
}

/* Hero text styling */
.wp-block-cover h1,
.wp-block-cover h2 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wp-block-cover p {
  color: #D1D5DB !important;
}

.wp-block-cover .has-accent-color {
  color: #C49548 !important;
}

/* === SECTION BACKGROUNDS — POLISHED === */
.has-off-white-background-color {
  background: #F8FAFC !important;
}

/* Alternate sections with subtle tint */
.wp-group.has-background:not(.has-off-white-background-color):not(.has-primary-background-color):not(.wp-block-cover) {
  background: #FAFBFC;
}

/* === GLASS CARD === */
.glass-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: #C49548;
}

/* === PRODUCT CARD === */
.product-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C49548 0%, #E8A838 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: #C49548;
}

.product-card:hover::before {
  opacity: 1;
}

/* === PIPELINE STEP === */
.pipeline-step {
  position: relative;
  padding-left: 3rem;
}

.pipeline-step::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 2rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #C49548, #E5E7EB);
}

.pipeline-step:last-child::before {
  display: none;
}

.pipeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #C49548 0%, #E8A838 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

/* === FEATURE TABLE === */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.feature-table th,
.feature-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #F3F4F6;
}

.feature-table thead th {
  background: #063152;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.feature-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-table tbody tr:hover {
  background: #F9FAFB;
}

.feature-table .check {
  color: #C49548;
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-table .dash {
  color: #9CA3AF;
}

/* === PRICING TABLE === */
.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #C49548;
  box-shadow: 0 0 0 1px #C49548, 0 8px 32px rgba(196,149,72,0.1);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Founding Cohort';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C49548 0%, #E8A838 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}

/* === CTA BUTTONS === */
.wp-block-button__link {
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.cta-primary .wp-block-button__link {
  background: linear-gradient(135deg, #C49548 0%, #E8A838 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-primary .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,149,72,0.3);
}

.cta-secondary .wp-block-button__link {
  background: transparent !important;
  color: #063152 !important;
  border: 2px solid #063152 !important;
  transition: all 0.15s ease;
}

.cta-secondary .wp-block-button__link:hover {
  background: #063152 !important;
  color: #FFFFFF !important;
}

/* === FEATURE BULLET === */
.feature-bullet {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.feature-bullet .bullet-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #C49548 0%, #E8A838 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* === STAT COUNTER === */
.stat-counter {
  text-align: center;
  padding: 1.5rem;
}

.stat-counter .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #063152;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-counter .stat-label {
  font-size: 0.85rem;
  color: #6B7280;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* === SCROLL REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === SOCIAL PROOF LOGOS === */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-wall:hover {
  opacity: 0.8;
}

/* === CONFERENCE SECTION === */
.conference-hero {
  background: linear-gradient(135deg, #063152 0%, #294F6D 100%);
  color: #FFFFFF;
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.conference-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196,149,72,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.download-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #C49548;
}

.download-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #063152 0%, #294F6D 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* === TRUST STRIP === */
.trust-strip {
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F2937;
}

.trust-item .trust-icon {
  color: #C49548;
  font-weight: 700;
}

/* === IMAGE SECTIONS === */
.image-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.image-card-caption {
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.5;
}

/* === CF7 / CHATBOT PLACEHOLDERS === */
.cf7-placeholder,
.chatbot-placeholder {
  border: 2px dashed #D1D5DB;
  background: #F9FAFB;
  border-radius: 0.75rem;
}

/* === BLOCK-LEVEL FONT WEIGHT OVERRIDES === */
.wp-block-heading {
  font-weight: 800;
}

.wp-block-paragraph {
  font-weight: 400;
}

/* List items */
.wp-block-list li {
  font-weight: 500;
  line-height: 1.7;
}

.wp-block-list li strong {
  font-weight: 700;
}

/* === LINKS === */
.entry-content a {
  color: #063152;
  text-decoration: underline;
  text-decoration-color: rgba(6,49,82,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.entry-content a:hover {
  text-decoration-color: #C49548;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .cta-nav-button {
    display: none;
  }

  .site-brand .custom-logo,
  .site-brand img {
    height: 36px;
  }

  .main-nav .wp-block-navigation-item__content,
  .main-nav .wp-block-navigation-item__content a {
    font-size: 0.85rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-3px);
  }

  .stat-counter .stat-number {
    font-size: 2rem;
  }

  .feature-table {
    font-size: 0.85rem;
  }

  .feature-table th,
  .feature-table td {
    padding: 0.75rem;
  }

  .conference-hero {
    padding: 2rem;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .wp-block-cover {
    min-height: 400px !important;
  }
}

@media (max-width: 480px) {
  .hero-section h1,
  .wp-block-cover h1 {
    font-size: 1.75rem !important;
  }
}
