.bg-black {
    background-color: black;
}

.bg-gray {
    /* background-color: rgba(20, 19, 19, 0.3); */
    background-color: black;
    color: white;
}

.bg-white {
    background-color: white;
}

.bg-card-gray {
    background-color: rgba(20, 19, 19, 0.8);
    color: white;
}

.color-red {
    color: #901010;
}

.color-white {
    color: white;
}

.border-radius {
    border-radius: 10px;
}

.image-shadow {
    mask-image: radial-gradient(circle, black 10%, rgba(0, 0, 0, 0.5) 90%)
}

.nav-item {
    font-size: 18px;
    text-transform: uppercase;
}

/* Main page */

.main-page .container {
    background-image: url(../images/main-image-pure.png);
    background-position: top;
    background-size: cover;
    min-height: 50vh;
    box-shadow: inset 0 0 50px 10px rgba(0, 0, 0, 0.4);
}

.main-page-card {
    /* max-width: fit-content !important; */
    color: white;
}

.title-text {
    width: fit-content;
}

.btn-custom {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.btn-custom-primary {
    color: #fff;
    background-color: #901010;
    border-color: #901010;
}

.btn-custom-primary:hover {
    background-color: #a42020;
    border-color: #901010;
    color: #fff;
    text-decoration: none;
}

.service-image {
    background-image: url(../images/service-image.png);
    min-height: 100%;
    background-size: cover;
    box-shadow: inset 0 0 50px 10px rgba(0, 0, 0, 0.4);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.9;
}