/* Home page specific styles */

/* Hero Section */
#home {
    position: relative;
    height: 100vh;
}

#home h1 {
    font-size: 6rem;
    line-height: 1.1;
    color: #ea580c !important; /* Orange-600 color for the title */
}

@media (min-width: 768px) {
    #home h1 {
        font-size: 9rem;
    }
}

/* Timeline specific styles */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(to bottom, #dbeafe, #93c5fd);
    height: 100%;
}

.timeline-item {
    margin-bottom: 4rem;
}

.timeline-content {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 41.666667%;
    margin-left: auto;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.timeline-content:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
    border-left: none;
    border-right: 4px solid #10b981;
}

.timeline-content:nth-child(3) {
    border-left-color: #8b5cf6;
}

.timeline-content:nth-child(4) {
    border-right-color: #ef4444;
}

.timeline-content:nth-child(5) {
    border-left-color: #f97316;
}

.timeline-date {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-content:nth-child(even) .timeline-date {
    color: #059669;
}

.timeline-content:nth-child(3) .timeline-date {
    color: #7c3aed;
}

.timeline-content:nth-child(4) .timeline-date {
    color: #dc2626;
}

.timeline-content:nth-child(5) .timeline-date {
    color: #ea580c;
}

.timeline-location {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    background: #3b82f6;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-dot:nth-child(2) {
    background: #10b981;
}

.timeline-dot:nth-child(3) {
    background: #8b5cf6;
}

.timeline-dot:nth-child(4) {
    background: #ef4444;
}

.timeline-dot:nth-child(5) {
    background: #f97316;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        margin-left: 40px;
    }

    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 0;
        margin-right: 0;
        border-left: 4px solid;
        border-right: none;
    }

    .timeline-content:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        border-left: 4px solid;
        border-right: none;
    }

    .timeline-dot {
        left: 20px;
        transform: none;
    }
}

/* Footer specific styles */
footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #60a5fa;
}

footer .border-t {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
} 