/* Custom styles for page ID 35 - Dobrovolnické centrum Prachatice */

/* Prefix: dc */

/* ===== Hero Section ===== */
.dc-hero {
    background: #ffffff;
    padding: 4rem 2rem 3rem;
}

.dc-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.dc-hero__text {
    padding-right: 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dc-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.dc-hero__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.dc-hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dc-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1e293b;
}

.dc-feature i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.dc-hero__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.dc-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-hero__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.dc-hero__image--1 {
    margin-top: 2rem;
}

.dc-hero__image--2 {
    margin-bottom: 2rem;
}

.dc-hero__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ===== Contact Section ===== */
.dc-contact-section {
    width: 100%;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.dc-contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

.dc-contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.08);
}

.dc-card-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dc-card-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.dc-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
}

.dc-contact-info p {
    margin: 0.5rem 0;
    color: #64748b;
    line-height: 1.6;
}

.dc-contact-info strong {
    color: #1e293b;
}

.dc-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dc-info-row i {
    color: #f59e0b;
    font-size: 0.875rem;
}

.dc-info-row a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.2s;
}

.dc-info-row a:hover {
    color: #d97706;
    text-decoration: underline;
}

.dc-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.dc-quick-info {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

.dc-quick-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.dc-quick-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f59e0b;
    border-radius: 2px;
}

.dc-quick-info p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.dc-principles {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.dc-principles h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.dc-principle-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dc-principle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dc-principle:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateX(4px);
}

.dc-principle i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.dc-principle span {
    font-weight: 600;
    color: #1e293b;
}

/* ===== Target Section ===== */
.dc-target-section {
    background: white;
    padding: 5rem 2rem;
}

.dc-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.dc-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}

.dc-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f59e0b;
    border-radius: 2px;
}

.dc-section-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 1.5rem;
}

.dc-target-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dc-target-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dc-target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f59e0b;
    opacity: 0;
    transition: opacity 0.3s;
}

.dc-target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.dc-target-card:hover::before {
    opacity: 1;
}

.dc-target-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.dc-target-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.dc-target-card p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Advisory Section with Tabs ===== */
.dc-advisory-section {
    width: 100%;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.dc-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.dc-tabs__nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
}

.dc-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.dc-tab-btn i {
    font-size: 1.25rem;
}

.dc-tab-btn:hover {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.dc-tab-btn.active {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.dc-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dc-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Topics Grid */
.dc-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dc-topic-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
}

.dc-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.dc-topic-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dc-topic-card:hover .dc-topic-icon {
    border-color: #f59e0b;
}

.dc-topic-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.dc-topic-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.dc-topic-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Levels */
.dc-levels {
    display: grid;
    gap: 1.5rem;
}

.dc-level-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.dc-level-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
}

.dc-level-number {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #f59e0b;
    flex-shrink: 0;
}

.dc-level-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.dc-level-content p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.dc-level-content ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
    color: #64748b;
}

.dc-level-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Methods */
.dc-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dc-method-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dc-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.dc-method-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.dc-method-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.dc-method-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.dc-info-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.dc-info-box i {
    color: #f59e0b;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.dc-info-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.dc-info-box p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA Section ===== */
.dc-cta-section {
    background: white;
    padding: 5rem 2rem;
}

.dc-cta-card {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.dc-cta-content {
    padding: 4rem;
    color: white;
}

.dc-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: white;
}

.dc-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.dc-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.dc-cta-buttons .btn-primary,
.dc-cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dc-cta-buttons .btn-primary {
    background: white;
    color: #f59e0b;
    border: 2px solid white;
}

.dc-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.dc-cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dc-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.dc-cta-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.dc-cta-note i {
    font-size: 1.125rem;
}

.dc-cta-image {
    position: relative;
    overflow: hidden;
}

.dc-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .dc-hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dc-hero__title {
        font-size: 2.5rem;
    }

    .dc-hero__images {
        max-width: 500px;
        margin: 0 auto;
    }

    .dc-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dc-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-topics-grid {
        grid-template-columns: 1fr;
    }

    .dc-cta-card {
        grid-template-columns: 1fr;
    }

    .dc-cta-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .dc-hero {
        padding: 3rem 1.5rem;
    }

    .dc-hero__title {
        font-size: 2rem;
    }

    .dc-hero__subtitle {
        font-size: 1.125rem;
    }

    .dc-hero__images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dc-hero__image--1,
    .dc-hero__image--2 {
        margin: 0;
    }

    .dc-section-header h2 {
        font-size: 2rem;
    }

    .dc-target-grid {
        grid-template-columns: 1fr;
    }

    .dc-tabs__nav {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }

    .dc-tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        justify-content: flex-start;
    }

    .dc-tab-btn.active {
        border-left-color: #f59e0b;
        border-bottom-color: transparent;
    }

    .dc-methods {
        grid-template-columns: 1fr;
    }

    .dc-level-card {
        flex-direction: column;
        gap: 1rem;
    }

    .dc-cta-content {
        padding: 2.5rem 1.5rem;
    }

    .dc-cta-content h2 {
        font-size: 2rem;
    }

    .dc-cta-buttons {
        flex-direction: column;
    }

    .dc-cta-buttons .btn-primary,
    .dc-cta-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .dc-principle-items {
        grid-template-columns: 1fr;
    }
}
