html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
}

.fw-serif {
    font-family: serif;
}

.fw-bold-uppercase {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: #8b7355;
}

.rounded-xl-custom {
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rounded-xl-custom:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem #8b7355;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #f9f7f5;
    color: #8b7355;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-custom {
    background-color: #8b7355;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: #7a654a;
}

.map-placeholder iframe {
    /* filter: grayscale(50%); */
    opacity: 1;
}

.top-m {
    margin-top: 30px !important;
}