/* PeePressure - Shark Tank Presentation Styles */

/* ============================================
   Base Theme Overrides
   ============================================ */
:root {
  --pp-charcoal: #111111;
  --pp-orange: #FF4500;
  --pp-orange-dark: #E03E00;
  --pp-orange-light: #FF6B35;
  --pp-orange-glow: #FF8C42;
  --pp-crimson: #CC2200;
  --pp-white: #FFFFFF;
}

.reveal {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.reveal .slides {
  text-align: left;
}

.reveal .slides section {
  background-color: var(--pp-charcoal);
  color: var(--pp-white);
}

/* ============================================
   Typography
   ============================================ */
.reveal h1, 
.reveal h2, 
.reveal h3, 
.reveal h4 {
  color: var(--pp-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.reveal h1 {
  font-size: 2.8em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reveal h2 {
  font-size: 2.0em;
}

.reveal h3 {
  font-size: 1.4em;
  color: var(--pp-orange-light);
}

.reveal p, 
.reveal li {
  font-size: 1.1em;
  line-height: 1.6;
}

.reveal strong {
  color: var(--pp-orange);
}

.reveal em {
  color: var(--pp-orange-light);
  font-style: italic;
}

/* ============================================
   Custom Classes
   ============================================ */
.yellow {
  color: var(--pp-orange) !important;
}

.crimson {
  color: var(--pp-crimson) !important;
}

.white {
  color: var(--pp-white) !important;
}

.center {
  text-align: center;
}

/* ============================================
   Callout Styling
   ============================================ */
.reveal .callout {
  background-color: rgba(255, 69, 0, 0.1);
  border-left: 5px solid var(--pp-orange);
  border-radius: 8px;
  padding: 1em 1.5em;
  margin: 1em 0;
}

.reveal .callout-important {
  background-color: rgba(204, 34, 0, 0.15);
  border-left: 5px solid var(--pp-crimson);
}

.reveal .callout-important .callout-title {
  color: var(--pp-crimson);
}

.reveal .callout-note {
  background-color: rgba(255, 69, 0, 0.1);
  border-left: 5px solid var(--pp-orange);
}

.reveal .callout-warning {
  background-color: rgba(255, 69, 0, 0.2);
  border-left: 5px solid var(--pp-orange);
}

/* ============================================
   Blockquotes & Testimonials
   ============================================ */
.reveal blockquote {
  background: rgba(255, 69, 0, 0.08);
  border-left: 4px solid var(--pp-orange);
  border-radius: 6px;
  padding: 1em 1.5em;
  font-style: italic;
  margin: 1.5em 0;
  width: 90%;
}

.reveal blockquote p {
  color: var(--pp-orange-light);
  font-size: 1.2em;
}

/* ============================================
   Tables
   ============================================ */
.reveal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.reveal table th {
  background-color: var(--pp-orange);
  color: var(--pp-charcoal);
  padding: 0.6em 1em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
}

.reveal table td {
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.reveal table tr:nth-child(even) {
  background-color: rgba(255, 69, 0, 0.05);
}

/* ============================================
   Lists
   ============================================ */
.reveal ul {
  list-style: none;
  padding-left: 0;
}

.reveal ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.reveal ul li::before {
  content: "💧";
  position: absolute;
  left: 0;
  font-size: 0.9em;
}

.reveal ol li::before {
  content: none;
}

.reveal ol li {
  padding-left: 0;
}

/* ============================================
   Fragments & Animations
   ============================================ */
.reveal .fragment.highlight-yellow {
  opacity: 0;
  transition: all 0.4s ease;
}

.reveal .fragment.highlight-yellow.visible {
  opacity: 1;
  color: var(--pp-orange);
}

/* Pulsing urgency animation for key elements */
@keyframes pulse-urgency {
  0%, 100% { 
    text-shadow: 0 0 5px var(--pp-orange);
  }
  50% { 
    text-shadow: 0 0 20px var(--pp-crimson), 0 0 30px var(--pp-crimson);
  }
}

.urgency-pulse {
  animation: pulse-urgency 2s ease-in-out infinite;
}

/* ============================================
   Slide Progress Bar
   ============================================ */
.reveal .progress {
  height: 5px;
  background: var(--pp-orange);
  color: var(--pp-orange);
}

/* ============================================
   Controls Styling
   ============================================ */
.reveal .controls {
  color: var(--pp-orange);
}

/* ============================================
   Images
   ============================================ */
.reveal section img {
  border: 3px solid var(--pp-orange);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
}

/* ============================================
   Code blocks
   ============================================ */
.reveal pre code {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--pp-orange);
  border-radius: 6px;
  padding: 1em;
}

/* ============================================
   Footer
   ============================================ */
.reveal .slide-number {
  color: var(--pp-orange);
  font-weight: 700;
  font-size: 0.8em;
  background: rgba(17, 17, 17, 0.8);
  padding: 0.3em 0.6em;
  border-radius: 4px;
}

/* ============================================
   Title Slide Special Styling
   ============================================ */
.reveal .slides > section:first-child h1 {
  font-size: 4em;
  background: linear-gradient(135deg, var(--pp-orange), var(--pp-crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal .slides > section:first-child h2 {
  color: var(--pp-white);
  font-weight: 300;
}

/* ============================================
   Columns adjustment
   ============================================ */
.reveal .columns {
  align-items: center;
}

.reveal .column {
  padding: 0 0.5em;
}

/* ============================================
   Responsive adjustments
   ============================================ */
@media (max-width: 1024px) {
  .reveal h1 { font-size: 2.2em; }
  .reveal h2 { font-size: 1.6em; }
  .reveal p, .reveal li { font-size: 1em; }
}
