/* ── Global ── */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 56px; /* offset for fixed navbar */
}

/* ── Hero ── */
.hero {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('../images/remodel.jpg') center/cover no-repeat;
}

/* ── Cards ── */
.card-img-fixed {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.panel-title {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ── Contact links ── */
.contact-list a {
    text-decoration: none;
    color: inherit;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* ── Stat box ── */
.stat-item {
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}
