/* assets/styles/restoration.css */

:root {
    --restoration-border: #e0e0e0;
    --accent-gold: #c5a059;
}

.container-restoration {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Comparison Wrapper */
.restoration-item {
    border-bottom: 1px solid var(--restoration-border);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}

.restoration-item:last-child {
    border-bottom: none;
}

.restoration-title {
    font-family: serif; /* Gives a more classic 'art gallery' feel */
    font-weight: 400;
    font-size: 1.75rem;
    color: #333;
}

/* The Before/After Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.comparison-box {
    text-align: center;
}

.comparison-box span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--text-muted-color);
}

.comparison-box img {
    width: 100%;
    height: 450px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: opacity 0.3s ease;
}

.comparison-box img:hover {
    opacity: 0.95;
}

.restoration-meta {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .comparison-box img {
        height: auto;
    }
}