:root {
    --primary-color: #9a0101;
    --secondary-color: #c10101;
    --accent-color:#fcb210;
    --alt-accent-color:#fee781;
    --text-color: #1f2937;
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 2rem;
}

.hero img{
    width:300px;
}

.hero-content h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero-content p {
    margin-top: 1rem;
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
}

.timeline-wrapper {
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem;
    /*margin-bottom: 4rem;*/
    overflow: hidden;
}

#timeline-embed {
    width: 100%;
    height: 650px;
    
}

#timeline-embed h1,
#timeline-embed h2,
#timeline-embed h3,
#timeline-embed h4,
#timeline-embed h5,
#timeline-embed h6,
#timeline-embed p,
#timeline-embed .tl-credit,
#timeline-embed .tl-caption
{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif!important;    
}

#timeline-embed h3{
    color:var(--secondary-color)
}

#timeline-embed h2{
    color:var(--primary-color)
}

#timeline-embed .tl-credit,
#timeline-embed .tl-caption{
    text-align:left;
}

#timeline-embed .tl-timeaxis-tick-text{
    color:var(--accent-color);
}

#timeline-embed .tl-slidenav-icon{
    color:var(--accent-color);
}

#timeline-embed .tl-slidenav-title,
#timeline-embed .tl-credit{
    color:var(--primary-color)
}

#timeline-embed .tl-slidenav-title:hover,
#timeline-embed .tl-caption{
    color:var(--secondary-color)
}

footer {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
        clip-path: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .timeline-wrapper {
        padding: 0.5rem;
    }
}
