/* Specifické styly pro bitcoin-a-bankovni-prikazy.php */

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

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

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

.page-icon {
    position: absolute;
    right: -20px;
    top: -10px;
    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) rotate(5deg);
    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) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

.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;
}

/* Content subsections */
.content-subsection {
    margin-top: 3rem;
    scroll-margin-top: 120px; /* Pro správné zarovnání při skoku na kotvu */
}

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

/* Subsections */
.subsection {
    margin-bottom: 3rem;
}

.subsection h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* Přidání firmy - odstraněno */

/* Service cards */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.3);
}

.service-card h3 {
    color: #e11d48;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-logo {
    height: 40px;
    width: auto;
}

/* Highlight box */
.highlight-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;
    font-weight: 500;
}

/* Tip box */
.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;
}

.tip-box a {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}

.tip-box a:hover {
    text-decoration: underline;
}

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

.warning-box h4 {
    color: #f97316;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Payment options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-option {
    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: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.3);
}

.payment-option h4 {
    color: #e11d48;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-option p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .page-icon {
        position: static;
        transform: scale(0.8);
        right: auto;
        top: auto;
    }
    
    .page-outline {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .subsection h3 {
        font-size: 1.3rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .page-intro {
        font-size: 1rem;
    }
}
