﻿

/* ===============================
   INVESTORS
   =============================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.investors-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    animation: fadeInUp 1s ease-out;
}

    .investors-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.investors-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.investors-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .investors-section h3:hover {
        color: #f39c12;
    }

/* Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-accent:hover,
    .btn-accent:focus {
        background-color: #f39c12;
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

.btn-secondary {
    background-color: #444;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        background-color: #666;
        color: #fff;
    }

/* Micro-line Styling */
.text-soft {
    color: #ccc; /* Light gray for text */
}

small {
    font-size: 0.875rem;
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .investors-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .investors-section h3 {
            font-size: 1.8rem;
        }

    .btn-accent {
        padding: 15px 20px;
    }

    .btn-secondary {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .btn-accent, .btn-secondary {
        width: 100%;
        margin-top: 10px;
    }

    .investors-section h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

/* ===============================
   LAUNCH TIMELINE
   =============================== */

/* Timeline Section Styling */
.launch-timeline-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #2d2d2d;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

/* Title Styling */
.launch-timeline-eyebrow {
    font-size: 1rem;
    color: #f1c40f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launch-timeline-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 30px;
}

/* Timeline Item Styling */
.timeline-item {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

    .timeline-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    }

/* Timeline Icon Styling */
.timeline-icon {
    font-size: 3rem;
    color: #f1c40f;
    margin-bottom: 15px;
}

/* Text Styling */
h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.text-soft {
    color: #ccc;
}

small {
    font-size: 0.875rem;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .launch-timeline-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .timeline-item {
        padding: 30px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        width: 100%;
    }
}
