@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #444;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.text-justify {
    text-align: justify;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

img {
    border-radius: 0;
}

.paint-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.paint-img {
    width: 6%;
    height: 100%;
    object-fit: cover;
    margin-right: 2.25rem !important;
    padding-left: 2px;
}

.font-lawyer {
    font-family: 'Bodoni Moda', serif;
    font-optical-sizing: none;
    font-weight: 500;
}

.hero-logo {
    width: 10%;
}

.team-img {
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.text-block p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #555;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-light);
    border-color: var(--primary-color);
}

.icon-link-animated {
    transition: opacity 0.2s ease;
}

.icon-link-animated:hover {
    opacity: 0.85;
}

.btn-contact-animated {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-contact-animated .icon-mail {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.btn-contact-animated:hover .icon-mail {
    max-width: 20px;
    opacity: 1;
    margin-left: 8px;
    transform: translateX(0);
}

footer {
    color: var(--bg-light);
    background-color: #202020;
}

footer a {
    transition: opacity 0.3s ease;
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.75;
    text-decoration: underline !important;
    color: inherit !important;
}

.copyright {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .paint-img {
        display: none;
    }

    .hero-logo {
        width: 45%;
    }

    .display-5 {
        font-size: 2rem;
    }

    .row {
        padding: 0 30px;
    }
}
