/*
Theme Name: Flux It
Theme URI: https://flux.icdn.video
Author: MB
Description: A modern, high-performance landing page.
Version: 1.0
*/

body {
  background-color: #0B0B0B;
  color: #ffffff;
  overflow-x: hidden;
}

/* Custom Text Stroke for Hero */
.text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
  transition: all 0.5s ease;
}
.group:hover .text-outline {
  color: #FF5E14;
  -webkit-text-stroke: 0px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0B0B0B; 
}
::-webkit-scrollbar-thumb {
  background: #333; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF5E14; 
}

/* Animation Utility Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Tab Content handling */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Speaker Card Hover */
.speaker-socials {
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .speaker-socials {
  transform: translateY(0);
}

/* =========================================
   WordPress Content Typography
   ========================================= */

.entry-content {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #d1d5db; /* gray-300 */
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

.entry-content h1 { font-size: 3rem; }
.entry-content h2 { font-size: 2.25rem; }
.entry-content h3 { font-size: 1.75rem; }
.entry-content h4 { font-size: 1.5rem; }

.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content a {
  color: #FF5E14;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 94, 20, 0.3);
  transition: all 0.3s ease;
}

.entry-content a:hover {
  color: #ffffff;
  border-color: #FF5E14;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.entry-content ul { list-style-type: disc; }
.entry-content ol { list-style-type: decimal; }

.entry-content li {
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}

.entry-content blockquote {
  border-left: 4px solid #FF5E14;
  padding-left: 1.5em;
  margin: 2em 0;
  font-style: italic;
  font-size: 1.25em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 0 1rem 1rem 0;
}

.entry-content img {
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

/* Pagination */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #151515;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-weight: bold;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #FF5E14;
    border-color: #FF5E14;
    color: white;
}