/* Website: src/app/static/css/pages/pitchdeck/pitchdeck.css v3.2 */

body {
    margin: 0;
}

/* ========================= */
/* SELECTION SCREEN */
/* ========================= */

#audience-selection-screen {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.selection-card {
    width: 720px;
    max-width: 100%;
    padding: 38px;
    background: #111d26;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    text-align: left;
    color: white;
    box-sizing: border-box;
}

.selection-card h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
}

.selection-card p {
    margin: 0 0 26px 0;
    opacity: 0.85;
    line-height: 1.5;
}

.selection-section {
    padding: 18px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.selection-section:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.selection-section h2 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: rgba(255,255,255,0.95);
}

.section-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.selection-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 26px;
}

.selection-options label {
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1.35;
}

.selection-options input {
    margin-right: 10px;
    transform: translateY(1px);
}

#audience-selection-screen input[type="checkbox"] {
    accent-color: var(--brand-color-cta);
}

.selection-actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
}

.selection-card button {
    padding: 10px 28px;
    font-size: 16px;
    background-color: var(--brand-color-cta);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.selection-card button:hover {
    background-color: var(--brand-color-cta-hover);
}

/* ========================= */
/* PITCH DECK */
/* ========================= */

#pitch-deck-container {
    width: 900px;
    background-color: #111d26;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    color: white;
}

#platform-skip-btn,
#fullscreen-toggle-btn {
    position: absolute;
    top: 14px;
    z-index: 20;
    padding: 7px 12px;
    background: rgba(13, 20, 28, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}


#platform-skip-btn {
    left: 14px;
}

#fullscreen-toggle-btn {
    right: 14px;
}

#pitch-deck-container:hover #platform-skip-btn,
#pitch-deck-container:hover #fullscreen-toggle-btn,
#pitch-deck-container:focus-within #platform-skip-btn,
#pitch-deck-container:focus-within #fullscreen-toggle-btn,
#pitch-deck-container:fullscreen #platform-skip-btn,
#pitch-deck-container:fullscreen #fullscreen-toggle-btn {
    opacity: 1;
    pointer-events: auto;
}

#platform-skip-btn:hover,
#platform-skip-btn:focus-visible,
#fullscreen-toggle-btn:hover,
#fullscreen-toggle-btn:focus-visible {
    background: rgba(13, 20, 28, 0.8);
}

.pitch-deck {
    height: 500px;
    width: 100%;
    padding: 30px;
    flex-grow: 1;
    box-sizing: border-box;
}

.slide {
    height: 100%;
    width: 100%;
    display: none;
    padding: 20px;
    box-sizing: border-box;
}

.slide.active {
    display: block;
}

#nav-bar {
    width: 100%;
    background-color: #0d141c;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.slide-info input {
    width: 70px;
    margin: 0 6px;
    padding: 4px 6px;
    border: 1px solid #556677;
    border-radius: 4px;
    background-color: #101820;
    color: #fff;
}

.slide-info input:focus-visible {
    outline: 2px solid var(--brand-color-cta);
    outline-offset: 1px;
}

#nav-bar button {
    margin: 0 10px;
    padding: 6px 14px;
    background-color: var(--brand-color-cta);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#platform-skip-btn,
#fullscreen-toggle-btn {
    margin: 0;
}

#nav-bar button:hover {
    background-color: var(--brand-color-cta-hover);
}

#pitch-deck-container:fullscreen {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
}

#pitch-deck-container:fullscreen .pitch-deck {
    height: calc(100vh - 56px);
}
