/* Curious Endeavor - Custom Deck Styles */

/* Brand Colors */
:root {
    --bg-color: #ffffff;
    --text-color: #0a0a0a;
    --accent-color: #2563eb;
    --muted-color: #525252;
    --border-color: #e5e5e5;
}

/* Custom Font - Add your fonts to /static/fonts/ */
/* Example: Miller Text, Untitled Sans, or your preferred typeface */

/* Cover Slide */
.slide-cover {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.slide-cover .headline {
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 900px;
}

/* Divider Slides */
.slide-divider {
    background: #0a0a0a;
}

.slide-divider .headline {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Insight Slides */
.slide-insight .headline {
    font-size: 48px;
    font-weight: 600;
    max-width: 800px;
}

.slide-insight .body {
    font-size: 20px;
    color: var(--muted-color);
}

/* Competitor Cards */
.slide-competitor .headline {
    font-size: 36px;
    margin-bottom: 40px;
}

.slide-competitor .body {
    font-size: 18px;
    line-height: 1.8;
}

/* Quote Slides */
.slide-quote {
    background: #fafafa;
}

.slide-quote .body {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-color);
}

.slide-quote .subhead {
    font-size: 18px;
    margin-top: 24px;
}

/* Pillar Cards */
.slide-pillar .headline {
    font-size: 40px;
    color: var(--accent-color);
}

.slide-pillar .subhead {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Two-column layout */
.slide-twocol .slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Manifesto */
.slide-manifesto {
    background: #0a0a0a;
    color: white;
}

.slide-manifesto .headline {
    font-size: 48px;
    color: white;
    max-width: 900px;
}

.slide-manifesto .body {
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    line-height: 1.8;
}

/* Visual Direction */
.slide-visual .headline {
    font-size: 32px;
    margin-bottom: 16px;
}

.slide-visual .image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Footer/Attribution */
.slide-footer {
    position: absolute;
    bottom: 40px;
    left: 80px;
    right: 80px;
    font-size: 14px;
    color: var(--muted-color);
    display: flex;
    justify-content: space-between;
}

/* Animations */
.slide.active .headline {
    animation: fadeInUp 0.6s ease-out;
}

.slide.active .subhead {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.slide.active .body {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
