@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    margin: 0;
}

:root {
    --Txt-marron: #412520;
    --Txt-blanc: #F4EBE6;
    --Lora: "Lora", serif;
    --Great_Vibes: "Great Vibes", cursive;
    --Poppins: "Poppins", sans-serif;
    --Inter: "Inter", sans-serif;
    --semi-bold: 600;
    --medium: 500;
    --bold: 700;
    --regular: 400;
}

body {
    background-color: #FCFDFD;
}

.command-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 70px;
    margin-bottom: 80px;
}

.command-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}


.command-content span {
    color: #6A3924;
    font-weight: var(--regular);
    font-size: 3rem;
    text-align: left;
    line-height: 1;
    font-family: var(--Lora);
    font-style: italic;
}

.command-content p {
    color: #6A3924;
    font-weight: var(--regular);
    font-size: 20px;
    text-align: left;
    line-height: 1;
    font-family: var(--Inter);
    font-style: italic;
    letter-spacing: 4%;
    line-height: 35px;
    max-width: 530px;
}

.command-content button {
    width: 250px;
    height: 50px;
    background-color: var(--Txt-marron);
    border-radius: 12px;
    border: none;
    color: var(--Txt-blanc);
    font-family: var(--Inter);
    font-weight: var(--medium);
    letter-spacing: 4%;
    text-transform: uppercase;

}

.command-content button:hover {
    cursor: pointer;
    color: var(--Txt-marron);
    background-color: var(--Txt-blanc);
}

.command-img-wrapper {
    max-width: 750px;
    height: auto;
    width: 100%;
}

@media (max-width: 920px) {
    .command-content span {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    .command-content,
    .command-wrapper {
        gap: 20px;
    }

    .command-wrapper {
        padding: 0px 10px;
    }

    .command-content p {
        letter-spacing: 4%;
        line-height: 28px;
    }
}

.reviews-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.reviews-container {
    width: min(1400px, calc(100% - 80px));
}

.reviews-title {
    font-family: var(--Poppins);
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.05;
    color: #6a3924;
    font-weight: 600;
    margin-bottom: 40px;
}

.reviews-title span {
    color: #d0a173;
    font-weight: 500;
}

.reviews-slider-wrapper {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    padding: 28px;
}

.reviews-slider-wrapper:active {
    cursor: grabbing;

}

.reviews-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 235px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    z-index: 1;

}

#reviewsSlider .active {
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.25);
}


.review-quote {
    position: absolute;
    top: -35px;
    left: 0px;
    font-size: 4rem;
    line-height: 1;
    color: #d0a173;
    font-family: var(--Lora);
    z-index: 90;
    overflow: visible;
    rotate: calc(180deg);
}

.review-text {
    font-family: var(--Poppins);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2f2f2f;
    margin: 0 0 22px;
    height: 150px;
}

.review-stars {
    color: #f3c400;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-author {
    font-family: var(--Poppins);
    font-size: 0.98rem;
    font-weight: 600;
    color: #2f2f2f;
}

.reviews-nav {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.reviews-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #7b4a35;
    font-size: 1.9rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-btn:hover {
    transform: translateY(-2px);
    background: #7b4a35;
    color: #ffffff;
}

@media (max-width: 1100px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 700px) {
    .reviews-container {
        width: min(100%, calc(100% - 32px));
    }

    .review-card {
        flex: 0 0 85%;
        min-height: 220px;
        padding: 24px 22px 22px;
    }

    .reviews-title {
        margin-bottom: 28px;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .reviews-nav {
        margin-top: 22px;
    }

    .reviews-section {
        padding: 40px 0px;
    }
}

@media (max-width: 420px) {
    .reviews-container {
        width: 100%;
        padding: 0px 5px;
    }

    .review-card {
        flex: 0 0 85%;
        min-height: 220px;
        padding: 24px 22px 22px;
    }

    .reviews-title {
        margin-bottom: 28px;
        text-align: center;
    }

    .review-text {
        height: 200px;
    }

    .reviews-section {
        padding: 40px 0px;
    }

    .reviews-slider-wrapper {
        padding: 28px 10px;
    }

}