/* About Us Page Styles */

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Founding Section */
.founding-section {
    background: #fff;
}

.section-badge {
    color: #0047AB;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founding-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.founding-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* History Section */
.history-section {
    background: #f8f9fa;
    position: relative;
}

.history-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
    z-index: 1;
}

.history-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* Timeline */
.timeline-container {
    position: relative;
    /* max-width: 800px; */
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0047AB;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-left {
    left: 0;
    padding-right: 2rem;
}

.timeline-right {
    left: 50%;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    top: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    background: #0047AB;
    border-radius: 50%;
    border: 4px solid #fff;
    z-index: 2;
}

.timeline-left .timeline-marker {
    right: -0.6rem;
}

.timeline-right .timeline-marker {
    left: -0.6rem;
}

.timeline-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease, background-color 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    will-change: transform;
    background-color: #D4DCED;
}

.timeline-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
}

.timeline-card p::after {
    content: '...';
    color: #0047AB;
    font-weight: bold;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.timeline-card:hover p::after {
    opacity: 0;
}

.timeline-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.timeline-card:hover .timeline-content {
    max-height: 1000px;
    margin-top: 1rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* Tokenization Section */
.tokenization-section {
    background: #fff;
}

.tokenization-header {
    text-align: left;
}

.tokenization-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.tokenization-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0;
}

.tokenization-content {
    
    margin: 0 auto;
    text-align: left;
}

.tokenization-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.tokenization-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.tokenization-conclusion {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    position: relative;
}

.cta-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(3px);
    opacity: 0.3;
    z-index: 1;
}

.cta-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0047AB;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
}

.cta-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .history-title,
    .tokenization-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .tokenization-subtitle {
        font-size: 0.9rem;
    }
    
    .tokenization-title {
        font-size: 1.75rem;
    }
    
    .tokenization-intro,
    .tokenization-text,
    .tokenization-conclusion {
        font-size: 1rem;
    }
    
    .founding-text,
    .tokenization-text {
        font-size: 1rem;
    }
    
    .timeline-container::before {
        left: 1rem;
        transform: none;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: -1.25rem !important;
        right: auto !important;
    }
    
    .timeline-card {
        padding: 1rem;
    }
    
    .timeline-card h4 {
        font-size: 1.1rem;
    }
    
    .timeline-card p {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* Fix background attachment on mobile */
    .hero-bg,
    .history-bg,
    .cta-bg {
        background-attachment: scroll;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .history-title,
    .tokenization-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .tokenization-subtitle {
        font-size: 0.8rem;
    }
    
    .tokenization-title {
        font-size: 1.5rem;
    }
    
    .tokenization-intro,
    .tokenization-text,
    .tokenization-conclusion {
        font-size: 0.95rem;
    }
    
    .founding-text,
    .tokenization-text {
        font-size: 0.95rem;
    }
    
    .timeline-card {
        padding: 1rem;
    }
    
    .timeline-card h4 {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
}
