/* Subpage Styles - Universal Design for Renovatie & Restauratie Subpages */

/* Page Hero Section */
.subpage-hero {
    background: linear-gradient(135deg, #2a2a4e 0%, #3d3d6b 100%);
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #F15A24;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.breadcrumb .current {
    color: #F15A24;
    font-weight: 500;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
}

/* Main Content Layout */
.subpage-content {
    padding: 0 0 4rem;
    padding-top: 7rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Main Content Column */
.main-content {
    min-width: 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    color: #2a2a4e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.5rem;
    color: #2a2a4e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block h4 {
    font-size: 1.2rem;
    color: #2a2a4e;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

/* Services List */
.services-list {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left-color: #F15A24;
    transform: translateX(5px);
}

.service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F15A24 0%, #ff7a4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.service-info h4 {
    margin-bottom: 0.5rem;
}

.service-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: linear-gradient(180deg, #F15A24 0%, transparent 100%);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2a2a4e 0%, #3d3d6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content h4 {
    color: #2a2a4e;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Example Photos */
.example-photos {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.example-photos h3 {
    font-size: 1.3rem;
    color: #2a2a4e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.photo-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-item {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Sidebar Content */
.sidebar-content {
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: #2a2a4e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    color: #F15A24;
    font-size: 1rem;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #2a2a4e 0%, #3d3d6b 100%);
    color: white;
}

.sidebar-cta h3 {
    color: white;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #F15A24;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: #d94d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 3rem 0 2rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.05rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }

    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        flex-direction: row;
    }

    .step:not(:last-child)::after {
        left: 24px;
    }

    .sidebar {
        position: static;
    }

    .sidebar-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
