/* /css/styles.css - Shared styles for all pages */

/* Custom Tailwind Config Colors */
:root {
    --primary: #d4881a;
    --primary-dark: #b06516;
    --navy: #1e293b;
    --navy-light: #334155;
}

/* Reusable component styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #eda825);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 136, 26, 0.3);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.timeline-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.timeline-date {
    min-width: 120px;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    color: white;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.nav-breadcrumb {
    margin-bottom: 2rem;
}

.nav-breadcrumb a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.nav-breadcrumb a:hover {
    color: var(--primary-dark);
}

/* Table styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-table th {
    background: var(--navy);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.data-table tr:hover {
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1rem;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
    }
}
