:root {
    --active-indicator-bg: #333;
    --inactive-indicator-bg: #bbb;
    --project-bg: #E4DBDBC9;
    --cafe-bg: #0000009C;
    --cafe-footer-bg: #F6C900;
}

/* first box */
.lifestyle-carousel img {
    height: 100vh;
    object-fit: cover;
}

.lifestyle-carousel .carousel-indicators {
    right: unset;
    margin-right: unset;
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 7px 10px;
}

.lifestyle-carousel .carousel-indicators button {
    background-color: var(--inactive-indicator-bg);
    width: 10px;
    height: 10px;
}

.lifestyle-carousel .carousel-indicators button.active {
    background-color: var(--active-indicator-bg);
}

.lifestyle-carousel-title {
    max-width: 54%;
    padding-top: 120px;
    padding-right: 54px;
    padding-left: 54px;
    animation: slideIn 1s ease-out;
    transform: translateX(0);
}

.lifestyle-carousel-title .title-content {
    font-size: 14px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.lifestyle-carousel-title .title-header {
    font-size: 59px;
}

.view-more-btn {
    height: 38px;
    max-width: fit-content;
    background-color: black;
    border-radius: 4px;
}

.lifestyle-carousel .carousel-control-next {
    justify-content: start;
}
.lifestyle-carousel .carousel-control-prev {
    justify-content: end;
}

.link-box {
    margin-top: 10px;
}
/* second box */
.lifestyle-items-links {
    gap: 10px;
    min-height: fit-content;
}

.lifestyle-link-title .link-header {
    font-size: 22px;
}

/* third box */
.lifestyle-experience-link {
    background-image: url('/assets/img/pages/lifestyle/Dorsa-Experience-Design.webp');
    background-position: center center;
    background-size: cover;
}

.lifestyle-experience-title .experience-header {
    font-size: 38px;
}

.lifestyle-experience-title .divider-line {
    height: 1.2px;
    width: 45px;
}

/* projects slider */
.project-box {
    background-color: var(--project-bg);
    width: 22%;
    margin-inline-start: 80px;
}

.project-box .project-title {
    font-size: 20px;
}

.project-box .project-detail, .cafe-title .cafe-text {
    font-size: 14px;
}

.more-btn, .cafe-box .menu-link {
    height: 42px;
    cursor: pointer;
}

.more-btn {
    border: 1px solid black;
}

.more-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* cafe section */
.cafe-box {
    background-image: url('/assets/img/pages/lifestyle/Dorsa-Cafe.webp');
    background-position: center center;
    background-size: cover;
}

.cafe-box .menu-link {
    border: 1px solid white;
}

.cafe-box .cafe-title {
    width: 30%;
    background-color: var(--cafe-bg);
    padding: 32px 10px 10px;
}

.cafe-box .menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cafe-footer {
    background-color: var(--cafe-footer-bg);
    padding: 30px 0;
}

.cafe-footer img {
    width: fit-content;
}

.cafe-footer img:last-child {
    padding-inline-end: 550px;
}

.cafe-carousel .carousel-item {
    max-width: fit-content;
}

.cafe-carousel .carousel-item img {
    max-height: 12px;
}

/* home design */
.home-style-box {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .project-box {
        width: 30%;
    }
}

@media (min-width: 768.1px) {
    .cafe-carousel .carousel-item {
        display: block;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .lifestyle-carousel img {
        height: 500px;
        min-height: 500px;
    }
    .lifestyle-carousel-title .title-header {
        font-size: 28px;
    }
    .lifestyle-carousel-title {
        width: 100%;
        max-width: 100%;
        padding-right: 74px;
        padding-left: 74px;
    }
    .lifestyle-carousel .carousel-control-next-icon, .lifestyle-carousel .carousel-control-prev-icon {
        width: 28px;
        height: 28px;
    }

    .lifestyle-items-links .lifestyle-link, .lifestyle-experience-link, .cafe-box {
        height: 540px !important;
        max-height: 540px !important;
        width: 100% !important;
    }
    .lifestyle-experience-title .experience-header {
        font-size: 28px;
    }

    .project-box {
        width: 80%;
        margin-inline-start: 10%;
    }

    .cafe-box .cafe-title {
        width: 80%;
    }

    .cafe-box {
        display: flex;
        justify-content: center;
    }
    .cafe-carousel .carousel-item {
        max-width: unset;
        text-align: center;
    }
    .cafe-footer img:first-child {
        width: 80%;
    }
    .cafe-footer img:last-child {
        padding-inline-end: 300px;
    }
}