/* Flyer-specific styles */

/* Flyer Hero Section */
.flyer-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.flyer-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.flyer-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.flyer-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.flyer-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Flyer Content Section */
.flyer-content {
    padding: 80px 0;
    background: #f9fafb;
}

.content-section {
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #374151;
}

.section-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Flyer Grid and Cards */
.flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.flyer-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2563eb;
}

.flyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-list {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.card-list li {
    padding: 0.3rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.kpi {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Highlight Lists */
.highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Architecture Diagrams */
.architecture-diagram {
    margin: 3rem 0;
}

.diagram-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 2rem 0;
}

.architecture-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.diagram-caption {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

.flyer-table {
    width: 100%;
    border-collapse: collapse;
}

.flyer-table th {
    background: #f3f4f6;
    color: #374151;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.flyer-table td {
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    vertical-align: top;
}

.flyer-table tr:nth-child(even) td {
    background: #fafbfc;
}

/* Pills */
.pill {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    border-radius: 9999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    margin: 0.25rem 0;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flyer-hero-title {
        font-size: 2.5rem;
    }
    
    .flyer-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .flyer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .flyer-card {
        padding: 1.2rem;
    }
    
    .flyer-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .flyer-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .flyer-hero {
        padding: 100px 0 60px;
    }
    
    .flyer-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .flyer-content {
        padding: 60px 0;
    }
    
    .content-section {
        margin-bottom: 3rem;
    }
} 