rooting-future / static /css /pitch.css
mtornani's picture
Initial HF Spaces deployment (clean branch without large binaries)
38f9c15
/* Rooting Future - Pitch Mode Styles */
:root {
--bg-color: #0f172a;
--text-color: #f8fafc;
--accent-color: #3b82f6;
--secondary-color: #64748b;
--success-color: #10b981;
--slide-padding: 4rem;
--font-heading: 'Helvetica Neue', sans-serif;
--font-body: 'Georgia', serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: var(--font-heading);
overflow: hidden; /* No scrollbars in presentation mode */
height: 100vh;
width: 100vw;
}
/* Controls */
.pitch-controls {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
opacity: 0.3;
transition: opacity 0.3s;
display: flex;
gap: 10px;
}
.pitch-controls:hover {
opacity: 1;
}
.control-btn {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
color: white;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.control-btn:hover {
background: rgba(255,255,255,0.2);
}
/* Slides Container */
.deck-container {
position: relative;
height: 100vh;
width: 100vw;
}
/* Individual Slide */
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: var(--slide-padding);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transform: translateX(100px); /* Start slightly off-screen */
transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
visibility: hidden;
background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}
.slide.active {
opacity: 1;
transform: translateX(0);
visibility: visible;
z-index: 10;
}
.slide.prev {
transform: translateX(-100px);
opacity: 0;
z-index: 1;
}
/* Slide Content Layouts */
/* Cover Slide */
.slide-cover {
text-align: center;
}
.club-logo {
max-width: 200px;
margin-bottom: 2rem;
filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}
.slide-cover h1 {
font-size: 5rem;
line-height: 1.1;
margin-bottom: 1rem;
background: linear-gradient(to right, #fff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.slide-cover h2 {
font-size: 2rem;
color: var(--accent-color);
font-weight: 300;
margin-bottom: 3rem;
}
.meta-info {
font-size: 1.2rem;
color: var(--secondary-color);
}
/* Standard Content Slide */
.slide-content {
align-items: flex-start;
text-align: left;
}
.slide-header {
width: 100%;
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 1rem;
margin-bottom: 2rem;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.slide-header h2 {
font-size: 3rem;
color: var(--accent-color);
}
.slide-header .slide-number {
font-size: 1.5rem;
color: var(--secondary-color);
font-family: monospace;
}
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
width: 100%;
height: 100%;
align-items: center;
}
.big-text {
font-size: 2rem;
line-height: 1.4;
font-family: var(--font-body);
}
.highlight-box {
background: rgba(255,255,255,0.05);
border-left: 4px solid var(--accent-color);
padding: 2rem;
border-radius: 0 8px 8px 0;
}
/* SWOT Grid */
.swot-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 20px;
width: 100%;
height: 60vh;
}
.swot-card {
background: rgba(255,255,255,0.03);
padding: 1.5rem;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.05);
}
.swot-card h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
display: flex;
align-items: center;
gap: 10px;
}
.swot-s h3 { color: #10b981; }
.swot-w h3 { color: #f59e0b; }
.swot-o h3 { color: #3b82f6; }
.swot-t h3 { color: #ef4444; }
.swot-card ul {
list-style: none;
margin-left: 0.5rem;
}
.swot-card li {
margin-bottom: 0.8rem;
font-size: 1.1rem;
color: #cbd5e1;
position: relative;
padding-left: 1.5rem;
}
.swot-card li::before {
content: "•";
position: absolute;
left: 0;
color: var(--secondary-color);
}
/* Roadmap */
.timeline {
width: 100%;
display: flex;
justify-content: space-between;
position: relative;
margin-top: 4rem;
}
.timeline::before {
content: '';
position: absolute;
top: 50px;
left: 0;
right: 0;
height: 2px;
background: var(--secondary-color);
z-index: 0;
}
.milestone {
position: relative;
z-index: 1;
text-align: center;
flex: 1;
padding: 0 1rem;
}
.milestone-year {
background: var(--bg-color);
border: 2px solid var(--accent-color);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
font-size: 1.5rem;
font-weight: bold;
color: var(--accent-color);
}
.milestone-content h4 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: white;
}
.milestone-content p {
font-size: 1rem;
color: var(--secondary-color);
}
/* Financials */
.chart-container {
width: 80%;
height: 60vh;
margin: 0 auto;
background: rgba(255,255,255,0.02);
border-radius: 16px;
padding: 2rem;
display: flex;
align-items: flex-end;
justify-content: space-around;
gap: 20px;
}
.bar-group {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
justify-content: flex-end;
flex: 1;
}
.bar {
width: 60px;
background: var(--accent-color);
border-radius: 8px 8px 0 0;
transition: height 1s ease-out;
position: relative;
min-height: 5px;
}
.bar-value {
position: absolute;
top: -30px;
width: 100%;
text-align: center;
font-weight: bold;
}
.bar-label {
margin-top: 1rem;
font-size: 1.2rem;
color: var(--secondary-color);
}
/* Progress Bar */
.progress-container {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: rgba(255,255,255,0.1);
z-index: 100;
}
.progress-bar {
height: 100%;
background: var(--accent-color);
width: 0%;
transition: width 0.3s ease;
}