/* Specifické styly pro jak-vydelavat-v-bitcoinu.php */

/* Page header s ikonou */
.page-header {
    margin-bottom: 2rem;
}

.page-title-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.page-title-container h1 {
    margin-bottom: 0;
    flex: 1;
    z-index: 1;
}

.page-icon {
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(225, 29, 72, 0.15));
    z-index: 2;
}

.page-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(225, 29, 72, 0.25));
}

.page-icon svg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-3px); }
    50% { transform: translateY(-6px); }
    75% { transform: translateY(-3px); }
}

.page-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Osnova stránky */
.page-outline {
    background: rgba(225, 29, 72, 0.05);
    border-left: 4px solid #e11d48;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.page-outline h3 {
    color: #e11d48;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.outline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.outline-list li {
    margin-bottom: 0.5rem;
}

.outline-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.outline-list a:hover {
    color: #e11d48;
    text-decoration: underline;
}

.outline-sublist {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.outline-sublist li {
    margin-bottom: 0.3rem;
}

.outline-sublist a {
    font-weight: 400;
    color: #666;
}

/* Section numbers */
.section-number,
.subsection-number {
    color: #e11d48;
    font-weight: 700;
}

.subsection-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Content subsections */
.content-subsection {
    margin-top: 3rem;
    scroll-margin-top: 120px;
}

.content-subsection:first-child {
    margin-top: 2rem;
}

/* Section header with icon */
.section-header-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-content {
    flex: 1;
}

.section-graphic {
    flex-shrink: 0;
    opacity: 0.8;
}

.section-graphic svg {
    animation: float 8s ease-in-out infinite;
}

/* Subsection header with icon */
.subsection-header-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.subsection-content {
    flex: 1;
}

.subsection-graphic {
    flex-shrink: 0;
    opacity: 0.8;
}

.subsection-graphic svg {
    animation: float 10s ease-in-out infinite;
}

/* Insight box - nový styl místo červeného highlight boxu */
.insight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insight-content {
    flex: 1;
}

.insight-content p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Tip box - jako u vzorové stránky */
.tip-box {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

/* Provider cards */
.provider-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.provider-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.provider-card.featured {
    border-color: #e11d48;
    background: rgba(225, 29, 72, 0.02);
}

.provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.provider-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.provider-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.provider-tag {
    font-size: 0.8rem;
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.provider-content {
    flex: 1;
    margin-bottom: 1rem;
}

.provider-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

.provider-card > p {
    flex: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.provider-links {
    margin-top: auto;
    margin-bottom: 1rem;
}

.provider-btn {
    width: 100%;
    justify-content: center;
}

/* Provider guide section - pro Anycoin */
.provider-guide-section {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-guide {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.provider-guide:hover {
    color: #e11d48;
    text-decoration: underline;
}

.provider-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Warning box */
.warning-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

/* Resource documents */
.resource-documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.resource-doc {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.resource-doc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.15);
}

.doc-icon {
    flex-shrink: 0;
}

.doc-content {
    flex: 1;
}

.doc-content h5 {
    color: #e11d48;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doc-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.doc-content .btn {
    width: 100%;
    justify-content: center;
}

/* Legal section - nový styl */
.legal-section {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.legal-section h4 {
    color: #a855f7;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.legal-section strong {
    color: #a855f7;
}

/* Coming soon sekce */
.coming-soon {
    background: rgba(156, 163, 175, 0.1);
    border: 2px dashed #9ca3af;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.coming-soon-icon {
    margin-bottom: 1rem;
    display: inline-block;
}

.coming-soon h3 {
    color: #6b7280;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .section-header-with-icon,
    .subsection-header-with-icon {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .provider-cards {
        grid-template-columns: 1fr;
    }
    
    .resource-documents {
        grid-template-columns: 1fr;
    }
    
    .resource-doc {
        flex-direction: column;
        text-align: center;
    }
    
    .page-outline {
        padding: 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .page-intro {
        font-size: 1rem;
    }
    
    .coming-soon {
        padding: 1.5rem;
    }
    
    .provider-card,
    .resource-doc,
    .legal-section {
        padding: 1rem;
    }
}
