/* Custom CSS for client */
:root {
    --theme-font: "Instrument Sans", Sans-serif;
    --theme-color-primary: #2b1915;
    --theme-color-secondary: #9f6f65;
    --theme-color-disabled: #b3b3b3;
    --break-point-xs: 0px; /* Extra-small: Mobile phones */
    --break-point-sm: 576px; /* Small: Larger phones */
    --break-point-md: 768px; /* Medium: Tablets */
    --break-point-lg: 992px; /* Large: Small desktops */
    --break-point-xl: 1200px; /* Extra-large: Desktops */
}
.menu-btn:hover {
    cursor: pointer;
}

a {
    color: inherit;
}

/* UI Component */
/* CHIP */
.chip {
    text-transform: uppercase;
    margin: 4px;
    border-radius: 2px;
    border: 1px solid #eadcd3;
    color: #5a4d4a;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 8px 16px;
    display: inline-flex;
}

.chip:hover {
    cursor: pointer;
}

.chip-active {
    background-color: #5f3c39;
    border-color: #5f3c39;
    color: #d9d4ce;
}

/* button */
.my-btn {
    padding: 12px 24px;
    background: var(--theme-color-primary);
    color: white;
    border: none;
    border-radius: 0px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
}

.my-btn:hover {
    background: var(--theme-color-secondary);
}

.my-btn:focus {
    background: var(--theme-color-primary);
}

/* post */
.post .post-image {
    position: relative;
    overflow: hidden;
    height: 80svh;
}
@media only screen and (max-width: 992px) {
    .post .post-image {
        height: 50svh;
    }
}

.post .post-image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 992px) {
    .post .post-image img {
        height: 100%;
    }
}

.post .post-image .post-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    z-index: 999;
}

.post .post-image-overlay:hover {
    background-color: #2b191533;
}

.post .post-title {
    font-size: 18px;
}

.post .post-subtitle {
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--theme-color-secondary);
    letter-spacing: 1px;
    font-weight: 500;
}

/* Carousel */

.slide-overlay {
    position: absolute;
    height: 100svh;
    width: 100svw;
    background-color: #0000004a;
    z-index: 99;
}

.slide {
    position: absolute;
    height: 100svh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
}
